/*-------------------MAIN STYLES------------------*/
.container-nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 8px;
}

.container {
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
}

@font-face {
  font-family: 'Satoshi';
  src: url("../fonts/satoshi/satoshi-regular.ttf") format("ttf");
  src: url("../fonts/satoshi/satoshi-regular.woff") format("woff");
  src: url("../fonts/satoshi/satoshi-regular.woff2") format("woff2");
}

@font-face {
  font-family: 'Satoshi Bold';
  src: url("../fonts/satoshi/satoshi-bold.ttf") format("ttf");
  src: url("../fonts/satoshi/satoshi-bold.ttf") format("woff");
  src: url("../fonts/satoshi/satoshi-bold.ttf") format("woff2");
  font-weight: bold;
}

@font-face {
  font-family: 'Satoshi Medium';
  src: url("../fonts/satoshi/satoshi-medium.ttf") format("ttf");
  src: url("../fonts/satoshi/satoshi-medium.ttf") format("woff");
  src: url("../fonts/satoshi/satoshi-medium.ttf") format("woff2");
  font-weight: bold;
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

:focus,
:active {
  outline: none;
}

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

/* Links */
a {
  font-display: block;
}

a, a:link, a:visited {
  color: inherit;
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul, ul li {
  list-style: none;
}

/*img {
	vertical-align: top;
}*/
img, svg {
  max-width: 100%;
  height: auto;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button, input[type="submit"] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

.text-middle {
  font-family: "Satoshi Bold", sans-serif;
  font-size: 22px;
  line-height: 130%;
  margin: 48px 0 24px;
}

@media (max-width: 764px) {
  .text-middle {
    text-align: center;
  }
}

/*------------------BLOCKS---------------*/
.nav__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav__logo {
  width: 110px;
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Satoshi Bold", sans-serif;
  font-weight: bold;
}

.nav ul li:nth-child(1) {
  color: #5C70F8;
}

.nav ul li:nth-child(2) {
  color: #A9ABB2;
}

.nav__links > * + * {
  margin-left: 48px;
}

.nav__icons > * + * {
  margin-left: 18.78px;
}

.nav__bell {
  width: 21px;
  padding-top: 2px;
}

.nav__user {
  width: 31px;
}

@media (max-width: 764px) {
  .nav__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__links > * + * {
    margin-left: unset;
  }
  .nav__icons > * + * {
    margin-left: unset;
  }
  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav ul li {
    margin-bottom: 10px;
  }
  .nav ul li:first-child {
    margin-top: 10px;
  }
}

.header {
  background-color: #5C70F8;
  padding: 48px 0 32px;
  color: #fff;
}

.header p:first-child {
  font-family: "Satoshi Bold", sans-serif;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 8px;
}

.header p:nth-child(2) {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 160%;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

@media (max-width: 764px) {
  .header {
    padding: 48px 20px 32px;
  }
  .header p {
    text-align: center;
  }
}

.search-form {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  border: 1px solid #E2E4E9;
  position: relative;
}

.search-form::after {
  position: absolute;
  content: url("../../img/icons/search.svg");
  width: 23px;
  height: 16px;
  top: 7px;
  left: 5px;
  z-index: 99;
}

.search-form input {
  width: 100%;
  height: 40px;
  color: #000;
  padding-left: 73px;
}

.search-form input::-webkit-input-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 170%;
  color: #A9ABB2;
  letter-spacing: -0.01em;
}

.search-form input:-ms-input-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 170%;
  color: #A9ABB2;
  letter-spacing: -0.01em;
}

.search-form input::-ms-input-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 170%;
  color: #A9ABB2;
  letter-spacing: -0.01em;
}

.search-form input::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 170%;
  color: #A9ABB2;
  letter-spacing: -0.01em;
}

@media (max-width: 764px) {
  .search-form input {
    padding-left: 43px;
  }
}

.bell {
  margin: 48px 0;
}

.bell__wrapper {
  background-color: #fff;
  -webkit-box-shadow: 0px -4px 36px rgba(0, 0, 0, 0.05);
          box-shadow: 0px -4px 36px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20.95px 24px;
}

.bell__img {
  width: 32px;
}

.bell__middle-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bell__middle-text p:first-child {
  font-family: "Satoshi Medium", sans-serif;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  color: #5C697A;
  margin-right: 12px;
}

.bell__middle-text p:last-child {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
}

.bell__viewcandidats {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #5C70F8;
}

@media (max-width: 764px) {
  .bell__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bell__img {
    margin-bottom: 20px;
  }
  .bell__viewcandidats {
    margin-top: 10px;
  }
  .bell__middle-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bell__middle-text p:first-child {
    margin-bottom: 10px;
  }
  .bell__middle-text p:last-child {
    text-align: center;
  }
}

.cards__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto;
      grid-template-columns: auto auto auto auto;
  gap: 32px;
}

.cards__card1 {
  width: 276px;
  height: 155px;
  background: #D1DFFF;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cards__card1 img {
  width: 30px;
}

.cards__card2 {
  width: 276px;
  height: 155px;
  background: #fff;
  -webkit-box-shadow: 0px -4px 36px rgba(0, 0, 0, 0.05);
          box-shadow: 0px -4px 36px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 16px;
}

.cards__card2-firstrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cards__card2-firstrow p:first-child {
  font-family: "Satoshi Bold", sans-serif;
  font-size: 14px;
  line-height: 19px;
  color: #222329;
  max-width: 80%;
  margin-bottom: 8px;
}

.cards__card2-firstrow p:nth-child(2) {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 150%;
  color: #5C70F8;
  position: relative;
}

.cards__card2-firstrow p:nth-child(2)::after {
  content: '';
  position: absolute;
  background-color: #D1DFFF;
  opacity: 0.6;
  display: inline-block;
  top: 8px;
  left: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cards__card2-secondrow {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 160%;
  color: #353944;
  margin-bottom: 24px;
}

.cards__card2-thirdrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cards__card2-thirdrow p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 150%;
  color: #5C70F8;
  position: relative;
}

.cards__card2 .avatar > * + * {
  margin-left: -15px;
}

@media (max-width: 915px) {
  .cards__wrapper {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
  }
}

@media (max-width: 764px) {
  .cards {
    padding-bottom: 50px;
  }
  .cards__wrapper {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=style.css.map */