@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

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

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

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

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

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*--------------------*/
:root {
  --headerBgColor: #7d7d7d;
  --headerMenuItemTxtClr: #ffffff;
  --headerIconBgClr: #ffffff;
  --mainTxtClr: #ffffff;
}

body {
  height: 100%;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
body.__lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.conteiner {
  max-width: 1200px;
  margin: 0 auto;
}

.return__btn {
  background-color: #323232;
  border-radius: 50%;
  border: solid 1px #ffffff;
  width: 46px;
  height: 46px;
  position: fixed;
  z-index: 20;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.return__btn img {
  width: 100%;
  height: 30%;
  transform: rotate(-90deg);
  align-self: center;
}

.hidden {
  display: none;
}

.widget.lang .language {
  border-radius: 24px;
  border: 1px solid #000;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  width: 80px;
  background: #fff;
}
.widget.lang .arrow-down {
  transition: all 0.3s ease 0s;
}
.widget.lang .arrow-down__active {
  transform: rotate(180deg);
}
.widget.lang .current-language {
  color: #000;
  font-size: var(--btn-text-font-size, 16px);
  line-height: var(--btn-text-line-height, 28px);
  letter-spacing: var(--btn-text-letter-spacing, 0.02em);
  font-weight: var(--btn-text-font-weight, 600);
}
.widget.lang .language-options {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  color: #000;
  font-size: var(--btn-text-font-size, 16px);
  line-height: var(--btn-text-line-height, 28px);
  letter-spacing: var(--btn-text-letter-spacing, 0.02em);
  font-weight: var(--btn-text-font-weight, 600);
}
.widget.lang .language-options .language-options__item {
  padding: 8px 12px;
  cursor: pointer;
}
.widget.lang .language-options .language-options__item:hover {
  background: #f1f1f1;
  border-radius: 8px;
}
.widget.lang .language-options.visible {
  display: block;
}
.widget.theme {
  position: relative;
  width: 100px;
  height: 32px;
  border-radius: 6px;
  /* Switcher */
  /* Switcher Legend*/
  /* Switcher Radio*/
  /*Switcher Status*/
}
.widget.theme .switcher {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: none;
}
.widget.theme .switcher__legend {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.widget.theme .switcher__radio {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  width: 32px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: filter 0.1s ease-in;
}
.widget.theme .switcher__radio:focus {
  outline: none;
}
.widget.theme .switcher__radio--light {
  background-image: url("../img/icons/sun_icon.svg");
}
.widget.theme .switcher__radio--light:checked ~ .switcher__status {
  background-position: left 0px center;
}
.widget.theme .switcher__radio--auto {
  background-image: url("../img/icons/circle_icon.svg");
}
.widget.theme .switcher__radio--auto:checked ~ .switcher__status {
  background-position: center center;
}
.widget.theme .switcher__radio--dark {
  background-image: url("../img/icons/moon_icon.svg");
}
.widget.theme .switcher__radio--dark:checked ~ .switcher__status {
  background-position: right 0px center;
}
.widget.theme .switcher__status {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.5);
  background-repeat: no-repeat;
  background-image: url("../img/icons/circle_full_icon.svg");
  background-size: 32px;
  background-position: center;
  transition: background-position 0.1s ease-in;
}
.widget.theme .switcher__radio:focus-visible ~ .switcher__status {
  box-shadow: 0 0 0 2px #000000;
}
.widget.burger {
  display: none;
}
@media (max-width: 767px) {
  .widget.burger {
    z-index: 5;
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .widget.burger span, .widget.burger::before, .widget.burger::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #fff;
  }
  .widget.burger::before, .widget.burger::after {
    content: "";
  }
  .widget.burger::before {
    top: 0;
  }
  .widget.burger::after {
    bottom: 0;
  }
  .widget.burger span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .widget.burger.__active span {
    transform: scale(0) translate(0px, -50%);
  }
  .widget.burger.__active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .widget.burger.__active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}

.logo {
  border-radius: 8px;
  background-color: var(--headerIconBgClr);
  position: relative;
  z-index: 5;
  width: 140px;
  height: 40px;
}

.socials, .links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
  gap: 10px;
  margin-right: 20px;
}
.socials__icon-link, .links__icon-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
.socials__icon-link .socials__icon-title, .links__icon-link .socials__icon-title {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .socials, .links {
    margin-right: 0;
    justify-content: center;
  }
}

.block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--headerBgColor);
  padding-block: 20px;
}
.block p {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
}

.header {
  background-color: var(--headerBgColor);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header__body {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
@media (max-width: 767px) {
  .header__menu-body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 90px 30px 30px 30px;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .header__menu-body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 80px;
    z-index: 2;
    background-color: var(--headerBgColor);
  }
  .header__menu-body.__active {
    left: 0;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
}
.header__menu-list > li {
  position: relative;
  margin: 0 0 0 20px;
  display: flex;
  align-items: center;
}
.header__menu-list .header__menu-item {
  color: var(--headerMenuItemTxtClr);
  font-size: 20px;
}
.header__menu-list .header__menu-item:hover {
  text-decoration: underline;
}
.header__menu-list .header__menu-item-arrow {
  width: 0;
  height: 0;
  margin: 0 0 0 5px;
  transition: transform 0.3s ease 0s;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #ffffff;
}
.header__menu-list .header__menu-sub-list {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #000000;
  padding: 15px;
  min-width: 170px;
  transform: translate(0px, 10%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease 0s;
  display: block;
}
.header__menu-list .header__menu-sub-list li {
  margin: 0 0 10px 0;
}
.header__menu-list .header__menu-sub-list li:last-child {
  margin: 0 0 0 0;
}
.header__menu-list .header__menu-sub-list .header__menu-sub-item {
  color: #ffffff;
}
.header__menu-list .header__menu-sub-list .header__menu-sub-item:hover {
  text-decoration: underline;
}
body.__pc .header__menu-list > li:hover .header__menu-sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
}
body.__touch .header__menu-list > li.__active .header__menu-sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
}
body.__touch .header__menu-list > li.__active .header__menu-item-arrow {
  transform: rotate(-180deg);
}
@media (max-width: 767px) {
  .header__menu-list {
    display: block;
  }
  .header__menu-list > li {
    flex-wrap: wrap;
    margin: 0 0 30px 0;
  }
  .header__menu-list > li.__active .header__menu-sub-list {
    max-height: 500px;
    margin: 20px 0 0 0;
    padding: 15px;
  }
  .header__menu-list .header__menu-item {
    font-size: 24px;
    flex: 1 1 auto;
  }
  .header__menu-list .header__menu-sub-list {
    position: relative;
    background-color: #fff;
    flex: 1 1 100%;
    max-height: 0px;
    padding: 0;
  }
  .header__menu-list .header__menu-sub-list .header__menu-sub-item {
    font-size: 20px;
    color: #000000;
  }
}

.main {
  background-color: #d8d8d8;
  flex: 1 1 auto;
  padding: 100px 10px 10px 10px;
}
.page__section {
  padding: 10px;
  margin: 0 auto;
}
.page__section-title {
  font-size: calc(25px + 5 * (100vw - 320px) / 880);
  text-align: center;
  margin-bottom: 10px;
  text-wrap: wrap;
  font-weight: 600;
}
.page__section-text {
  font-size: 16px;
  text-align: center;
}
.page__section-text p {
  padding: 0 0 10px 0;
}

.page__section-1 .page__section-box {
  padding-bottom: 50px;
  color: #000000;
}
.page__section-1 .box-content {
  background-color: rgba(216, 216, 216, 0.353);
}
.page__section-1 .page__section-description {
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.2;
}
.page__section-1 .page__section-form {
  border: 1px solid #000000;
  margin: 10px auto;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .page__section-1 .page__section-form {
    flex-direction: column-reverse;
  }
}
.page__section-1 .page__section-form .form-img {
  max-width: 100%;
}
.page__section-1 .page__section-form .form-img img {
  width: 100%;
}
.page__section-1 .page__section-form .form-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  gap: 10px;
  font-size: 20px;
}
.page__section-1 .page__section-form .form-item .item-label {
  padding-block: 10px;
}
.page__section-1 .page__section-form .form-item .item-input {
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 3px;
  outline: 2px solid transparent;
  font-size: 20px;
}
.page__section-1 .page__section-form .form-item .item-input:focus {
  outline-color: #000000;
  outline-offset: 3px;
}
.page__section-1 .page__section-form .form-item.form__buttons {
  justify-content: space-around;
  flex-direction: row;
}
.page__section-1 .page__section-form .form-item.form__buttons .form__buttons-item {
  border-radius: 24px;
  border: 1px solid #000;
  padding: 8px 12px;
  min-width: 80px;
  font-size: 20px;
}
@media (max-width: 480px) {
  .page__section-1 .page__section-form .form-item {
    flex-direction: column;
  }
}
.page__section-1 .page__section-text {
  font-size: 20px;
}
.page__section-1 .subtitle {
  font-weight: 600;
  text-decoration: underline;
}
.page__section-1 .table-container {
  margin-block: 10px;
  width: 100%;
  overflow-x: auto;
}
.page__section-1 .liquid-table th:nth-child(3),
.page__section-1 .liquid-table td:nth-child(3) {
  border-right: double 6px black; /* Подвійна межа між 3 і 4 стовпцями */
}
.page__section-1 .table {
  margin: 0 auto;
  border-collapse: collapse;
}
.page__section-1 .table th, .page__section-1 .table td {
  padding: 8px;
  border: 1px solid black;
}

.footer {
  background-color: #727272;
  padding-block: 20px;
}
.footer .footer__body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__description {
  font-size: 20px;
}
.footer .socials {
  max-width: 50%;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .footer .socials {
    max-width: 100%;
  }
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.6s ease 0s;
  z-index: 20;
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}
.popup__content {
  background-color: #fff;
  color: #000;
  padding: 30px;
  max-width: 50%;
  position: relative;
  transition: all 0.8s ease 0s;
  opacity: 0;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}
.popup__title {
  font-size: 40px;
  margin: 0 0 1em 0;
  text-align: center;
}
.popup__text {
  font-size: 20px;
  margin: 0 auto 1em;
  text-align: center;
  line-height: 28px;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup.open .popup__content {
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
  opacity: 1;
}
.popup .password__Form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 180px;
  margin: 0 auto;
  text-align: center;
}
.popup .password__Form .item__input {
  padding: 0.5rem;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.popup .password__Form .form__button {
  padding: 0.5rem;
  background-color: var(--headerBgColor);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.popup .password__Form .form__button:hover {
  background-color: #45a049;
}
@media (max-width: 992px) {
  .popup .popup__content {
    max-width: 100%;
  }
  .popup .popup__body {
    padding: 30px 0;
  }
}