@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  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;
  font-family: "Roboto";
  font-style: normal;
}

.popup__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1E1E1E;
  z-index: 1;
}

.popup__body {
  z-index: 2;
  background: #161616;
  border-radius: 45px;
  padding: 119px 91px 90px 91px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 41px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 900px;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .popup__body {
    padding: 30px 31px 30px 31px;
  }
}

.body-popup__title {
  font-weight: 500;
  font-size: 64px;
  line-height: 60px;
  text-align: center;
  letter-spacing: 1.33868px;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .body-popup__title {
    line-height: 1;
  }
}

@media screen and (max-width: 500px) {
  .body-popup__title {
    font-size: 34px;
  }
}

.body-popup__action {
  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;
  -webkit-column-gap: 27px;
          column-gap: 27px;
}

@media screen and (max-width: 500px) {
  .body-popup__action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }
}

.body-popup__description {
  font-weight: 500;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  letter-spacing: 1.33868px;
  color: #FFFFFF;
  max-width: 554px;
}

.action-popup__link {
  font-weight: 500;
  font-size: 31px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 1.33868px;
  color: #161616;
  background: #FFFFFF;
  border-radius: 213px;
  padding: 23px 0;
  width: 259px;
}

@media screen and (max-width: 500px) {
  .action-popup__link {
    font-size: 34px;
  }
}
/* Null */
* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

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

:focus,
:active {
    outline: none;
}

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

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter';
    line-height: 1;
    text-rendering: optimizeLegibility;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

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

@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);

/* end Null */