* {
  box-sizing: border-box;
  color: #FBEADB;
  font-family: 'Jost';
  line-height: normal;
}

*[hidden] {
  display: none !important;
}


body {
  margin: 0;
  background-color: #1E1C1A;
  overflow-x: hidden;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}


button {
  cursor: pointer;
  padding: 10px 20px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #3E3B37;
  color: #fff;
  border: none;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  border-radius: 64px; /*училка: 32+32 я: стак все: ШТООО*/
}

button.primary {
  background-color: #ed6a2d;
}
button.primary:hover {
  background-color: #c94d14;
}

button:hover {
  background-color: #ec5e1c;
}

button:active {
  background-color: #bc4d19;
}

button:disabled {
  background-color: #666; /* 666 типа деман (спермы) ну вы поняли */
  cursor: default;
}


h2 {
  color: #FF854D;
  line-height: 37px;
  font-size: 29px;
  text-align: center;
  font-weight: 200;
}

h3 {
  color: #FF854D;
  line-height: 27px;
  font-size: 23px;
  font-weight: 200;
  margin: 0;
}

h4 {
  color: #FF854D;
  line-height: 17px;
  font-size: 17px;
  font-weight: 200;
}


a, a * {
  color: #FF854D;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover, a:hover * {
  color: #EB5E1B !important;
}

a:active, a:active * {
  color: #bc4d19 !important;
}

blockquote {
  color: #ddd;
  padding: 16px;
  margin: 16px;
  border-left: solid 3px #FF854D;
}


hr {
  width: 95%;
  border: #666 solid 1px;
  margin: 15px auto;
}


textarea {
  resize: none;
}


td:not(:last-child) {
  padding-right: 8px;
  border-right: #aaa solid 1px;
}
td:not(:first-child) {
  padding-left: 8px;
}


input[type="checkbox"] {
  flex-shrink: 0;
  box-sizing: content-box;
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #141414;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

input[type="checkbox"]:focus-visible {
  outline: none;
}

input[type="checkbox"]:checked {
  background-color: #EB5E1B;
  border-color: transparent;
}

/* optional checkmark */
input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 7px;

  border-right: 2px solid #141414;
  border-bottom: 2px solid #141414;
  transform: translate(-50%, -60%) rotate(45deg);
}


input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease;
}
input[type="radio"]:disabled {
  border-color: #999 !important;
}
input[type="radio"]:disabled:checked::before {
  background-color: #999 !important;
}


input[type="radio"]:focus-visible {
  outline: none;
}

input[type="radio"]::before {
  content: "";
  display: block;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;

  border-radius: 50%;
  background: transparent;
  transition: background 0.2s ease;
}

input[type="radio"]:checked {
  border: 1px solid #ec5e1c;
  background: #fff;
}

input[type="radio"]:checked::before {
  background: #ec5e1c !important;
}


img {
  user-select: none;
}


.success {
  color: #88B369;
}
.warning {
  color: #E3B341;
}
.error {
  color: #E05340;
}

.center-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}



#header {
  height: 86px;
  width: 100vw;
  padding: 0 5%;

  display: flex;
  align-items: center;
  flex-wrap: nowrap;

  background-color: #171616;

  position: absolute;
  z-index: 3;
}



#header-logo, #footer-logo {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}
#header-logo {
  height: 50px;
}
#footer-logo {
  height: 100px;
}


#header-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.header-tab {
  color: #fff;
  font-size: 16.9px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 27px;
  text-decoration: none !important;
}



#footer {
  padding: 5% 30px;
  border-top: solid 1px #292929;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: nowrap;
}


#footer-logo {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  padding-right: 5%;
  gap: 12px;
  cursor: pointer;
}


#footer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 10%;
}

#footer-section-title {
  font-size: 15.2px;
}

#footer-section-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section-value {
  color: #888888;
  font-size: 14.3px;
}


#footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 15%;
}

#footer-contact-title {
  font-size: 15.2px;
}

#footer-contact-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-value {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}


#content {
  padding: 0 20px;
}