@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

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

* {
  box-sizing: border-box;
}

.container {
  max-width: 1816px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
}

body {
  font-family: 'Jost';
  color: #fff;
  line-height: 1.3;
  background: #1E1E1E;
}

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

.check-btn {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 400;
  padding: 6px 20px;
  border: 1px solid #1089F9;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.check-btn--accept {
  background: #711544;
  border-color: #C81B74;
}

.check-btn--accept:hover{
    background: none;
}

.check-btn--active {
  background: #273D64;
  border-color: #273D64;
}

.check-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.check-input--icon .check-input__input {
  padding: 4px 30px 4px 10px;
}

.check-input__label {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.check-input__input {
  width: 115px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  padding: 4px 10px 4px 10px;
  border: 1px solid #1089F9;
  background-color: transparent;
  outline: none;
  border-radius: 10px;
  text-align: center;
}

.check-input__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 8px;
}

.w100 {
  width: 100%;
}

.header {
  padding: 10px 0;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 30px;
}

.header__logo img {
  display: block;
}

.header-profile {
  min-width: 280px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
}

.header-profile__name {
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
}

.header-profile__note {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 400;
  font-size: 20px;
  color: #E9AA22;
}

.header-profile__avatar {
  position: relative;
}

.header-profile__avatar:before,
.header-profile__avatar:after {
  content: '';
  position: absolute;
  display: none;
  border-radius: 50%;
}

.header-profile__avatar:before {
  width: 20px;
  height: 20px;
  background: #212334;
  right: 2px;
  bottom: -3px;
  z-index: 2;
}

.header-profile__avatar:after {
  width: 10px;
  height: 10px;
  background: #FAB800;
  box-shadow: 0px 0px 8.44434px rgba(250, 184, 0, 0.66);
  right: 7px;
  bottom: 2px;
  z-index: 3;
}

.header-profile__img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.section {
  padding: 20px 0;
}

.section__title {
  margin-bottom: 35px;
}

.section__inner {
  background: #252736;
  box-shadow: 0px 32px 55px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 40px 55px;
}

.selects__item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 80px;
}

.selects__item:not(:last-child) {
  border-bottom: 1px solid #3C3F53;
}

.selects__title {
  font-size: 17px;
  color: #E9AA22;
  font-weight: 600;
  margin-bottom: 10px;
}

.selects__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

