/* Fonts */
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 100;
  src: local("ProximaNovaT-Thin"), local("Proxima NovaT Thin"), url("../fonts/ProximaNovaT-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 300;
  src: local("ProximaNova-Light"), local("Proxima Nova Light"), url("../fonts/ProximaNova-Light.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 400;
  src: local("ProximaNova-Regular"), local("Proxima Nova Regular"), url("../fonts/ProximaNova-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 600;
  src: local("ProximaNova-Semibold"), local("Proxima Nova Semibold"), url("../fonts/ProximaNova-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 700;
  src: local("ProximaNova-Bold"), local("Proxima Nova Bold"), url("../fonts/ProximaNova-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 800;
  src: local("ProximaNova-Extrabld"), local("Proxima Nova Extrabld"), url("../fonts/ProximaNova-Extrabld.woff2") format("woff2");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 900;
  src: local("ProximaNova-Black"), local("Proxima Nova Black"), url("../fonts/ProximaNova-Black.woff2") format("woff2");
}
/*  */
* {
  box-sizing: border-box;
}

html {
  min-width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "ProximaNova";
  width: 100%;
  min-width: 1170px;
  margin: 0;
  padding: 0;
}

main {
  overflow: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

p, input {
  padding: 0;
  margin: 0;
  font-family: inherit;
}

a {
  color: #000;
  text-decoration: none;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.visually-hidden:not(:focus):not(:active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100%;
  width: 1170px;
  padding: 0 10px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.button-basic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 21px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.button-basic--red {
  background-color: #D0021B;
}
.button-basic--red:hover {
  background-color: #f41e38;
}
.button-basic--blue {
  background-color: #237CF9;
}
.button-basic--blue:hover {
  background-color: #3886f4;
}

.header {
  display: flex;
  flex-direction: column;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 27px;
  border-bottom: 1px solid #E9E7E6;
}

.header__logo {
  width: auto;
  height: 14px;
  box-sizing: content-box;
  padding-left: 18px;
}

.header__signin {
  line-height: 0;
}

.navigation {
  display: flex;
  align-items: center;
  padding: 33px 0 17px;
}

.navigation__logo-link {
  display: block;
  line-height: 0;
}

.navigation__logo {
  width: 214px;
  height: auto;
}

.show-mobile-menu {
  position: relative;
  width: 37px;
  height: 37px;
  padding: 11px 7px;
  margin-left: auto;
  background-color: transparent;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  transition: 0.3s;
  outline: none;
  display: none;
}
.show-mobile-menu::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  box-shadow: 0 6.5px 0 #ffffff;
}
.show-mobile-menu::after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background-color: #ffffff;
}
.show-mobile-menu--active::before {
  transition: 0.3s;
  top: 50%;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #ffffff;
}
.show-mobile-menu--active::after {
  transition: 0.3s;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #ffffff;
}

.navigation__list {
  width: 657px;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  line-height: 0;
}

.navigation__item {
  height: 40px;
}

.navigation__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 400;
  color: inherit;
  border: 1px solid #000;
  border-radius: 100px;
  transition: 0.3s;
}
.navigation__link:hover {
  color: #ffffff;
  background-color: #2D2E29;
}

.show-mobile-menu--active + .navigation__list {
  display: grid;
  height: 385px;
  grid-template-columns: repeat(1, 1fr);
  align-self: flex-start;
}

@media (max-width: 0) {
  .show-mobile-menu {
    display: block;
  }
  .header--menu-active {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .header--menu-active .navigation {
    padding: 20px 0 0 0;
  }
  .navigation {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .navigation__logo {
    width: 250px;
  }
  .navigation__list {
    width: 100%;
    flex-direction: column;
    display: none;
  }
  .navigation__item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  .navigation__item:last-of-type {
    margin-left: 0;
    border-bottom: none;
  }
  .navigation__link {
    padding: 0;
  }
  .navigation__link:hover {
    padding-left: 5px;
  }
}
.promo {
  position: relative;
  background-size: contain;
  color: black;
  overflow: hidden;
  background-color: #F6F6F6;
}

.promo__content {
  position: relative;
  padding: 74px 0 141px;
  padding-bottom: 170px;
  z-index: 1;
}

.promo__title {
  position: relative;
  width: 620px;
  margin: 0;
  font-size: 47px;
  font-weight: 700;
  line-height: 105%;
}
.promo__title span {
  font-size: 52px;
  font-weight: 400;
}

.promo__desc {
  position: relative;
  width: 600px;
  margin: 0;
  margin-top: 18px;
  font-size: 25px;
  line-height: 130%;
}

.promo__content-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 564px;
  height: 495px;
}

.promo__content-pic {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.access {
  position: relative;
  top: -50px;
  margin: 0 0 -50px 0;
  color: #ffffff;
}
.access:last-of-type {
  position: static;
  margin: 95px 0 0 0;
}

.access__wrapper {
  position: relative;
  margin: 0 -50px;
  padding: 30px 50px 27px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #E6E6E6;
  color: #2D2E29;
  box-shadow: 0px 4px 30px rgba(44, 48, 59, 0.1);
}
@media (max-width: 1260px) {
  .access__wrapper .access__wrapper {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 8px;
  }
  .access__wrapper .access__wrapper:before, .access__wrapper .access__wrapper:after {
    display: none;
  }
  .access__wrapper .access__wrapper--light {
    padding-bottom: 65px;
    color: #2D2E29;
    background-color: #F9F9F9;
  }
}

.crmresult {
  width: 640px;
  margin: 20px auto 0;
  font-size: 22px;
  text-align: center;
  display: none;
}

.access__form {
  margin-top: 10px;
}

.access__title {
  width: auto;
  font-size: 20px;
  font-weight: 700;
  color: #474D5E;
}

.access__desc {
  width: 500px;
  margin: 30px auto 0;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.access__desc--promo {
  width: auto;
  margin: 0;
  padding: 0;
  font-size: 20px;
  text-align: left;
}

.access__form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  grid-gap: 20px;
  margin-top: 17px;
  margin-left: 0;
}

.get-promo__input {
  width: 21px;
  height: 21px;
  margin-left: 20px;
  border-radius: 15px;
}

.access__form-label {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  color: #474D5E;
}

.access__form-input {
  height: 50px;
  margin-top: 10px;
  padding-left: 20px;
  font-size: 16px;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  transition: 0.2s;
  outline: none;
}
.access__form-input:focus {
  border: 1px solid #000;
}

.access__button {
  width: 100%;
  height: 50px;
  font-size: 18px;
}

.access__button:disabled {
  background-color: #343434;
}
.access__button:disabled:hover {
  cursor: no-drop;
}

.permission {
  position: relative;
  grid-column: 1/5;
  width: 280px;
  margin-left: auto;
  padding-left: 34px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.66);
  user-select: none;
}

.permission__label {
  cursor: pointer;
}

.permission__rules {
  display: inline;
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  color: rgba(0, 0, 0, 0.66);
}

.permission__checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  min-width: 24px;
  min-height: 24px;
  margin-right: 15px;
  background: #FFFFFF;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
}
.permission__checkmark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: none;
}

input[type=checkbox]:checked + .permission__checkmark:before {
  display: block;
  background: url("../img/icons/icon-checked.svg") no-repeat center;
  background-size: 50%;
}

.access__wrapper--order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 55px 58px;
  background-color: #F6F6F6;
  border-radius: 20px;
  border: none;
}
.access__wrapper--order .access__title {
  width: 435px;
  font-size: 25px;
  font-weight: 400;
}
.access__wrapper--order .access__title span {
  font-size: 30px;
  font-weight: 700;
}
.access__wrapper--order .access__form {
  grid-template-columns: repeat(1, 1fr);
  width: 558px;
  padding: 57px 70px;
  background-color: #ffffff;
  border-radius: 10px;
}

.access__wrapper--order .permission {
  width: auto;
  grid-column: 1/1;
}

.versions {
  padding-top: 95px;
}

.versions__title {
  font-size: 37px;
  font-weight: 700;
}

.versions__wrapper {
  margin: 0 -16px;
}

.versions__options {
  margin-top: 30px;
}

.options-table {
  border-spacing: 16px 0;
}
.options-table tr:first-of-type td {
  padding: 10px 0;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
.options-table tr:first-of-type td span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 70px;
  margin: 0 10px;
  padding: 15px 5px;
  background-color: #2D2E29;
  border-radius: 5px;
  color: #ffffff;
}
.options-table tr:first-of-type td span > span {
  display: inline;
  margin: 0;
  height: auto;
  padding: 0;
  font-size: 19px;
}
.options-table tr:first-of-type td:nth-child(3) {
  border-top: 2px solid #D0021B;
}
.options-table tr:first-of-type td:nth-child(3) span {
  background-color: #D0021B;
}
.options-table tr:not(:first-of-type):nth-child(odd) td {
  background-color: rgba(208, 2, 27, 0.03);
}
.options-table tr:last-of-type td {
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 0 0 10px 10px;
}
.options-table tr:last-of-type td::before {
  display: none;
}
.options-table tr:last-of-type td:nth-child(3) {
  border-bottom: 2px solid #D0021B;
  color: #D0021B;
}
.options-table td {
  width: 222px;
  padding: 14px 20px;
  background-color: #f6f6f6;
}
.options-table td:first-of-type {
  width: auto;
}
.options-table td:nth-child(3) {
  border-left: 2px solid #D0021B;
  border-right: 2px solid #D0021B;
}
.options-table td:not(:first-of-type) {
  text-align: center;
}

.options-table__data {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.options-table__data p {
  position: relative;
  padding-left: 15px;
}
.options-table__data p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #000000;
  border-radius: 50%;
}
.options-table__data--vip {
  background-color: #D0021B;
}
.options-table__data--price {
  font-size: 20px;
}
.options-table__data--price span {
  font-size: 30px;
  font-weight: 700;
}

.versions__note {
  margin-top: 75px;
  font-size: 30px;
  line-height: 130%;
}
.versions__note span {
  font-weight: 700;
  color: #D0021B;
}

.versions__link-wrapper {
  display: flex;
  margin-top: 35px;
}

.versions__link {
  width: 445px;
  height: 50px;
  margin: 0 auto;
}

.program {
  padding-top: 95px;
}

.program__content {
  display: flex;
  justify-content: space-between;
  padding: 50px 80px;
  background-color: #F6F6F6;
  border-radius: 20px;
}

.program__content-text {
  width: 600px;
}

.program__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
}

.program__desc {
  margin-top: 33px;
  font-size: 23px;
  line-height: 120%;
}

.program__content-pic {
  width: 364px;
}

.program__pic {
  width: 100%;
  height: auto;
}

.program__duration-wrapper {
  margin-top: 15px;
  display: flex;
}
.program__duration-wrapper span {
  position: relative;
  display: block;
  padding-left: 29px;
  font-size: 18px;
  font-weight: 600;
  color: #959595;
}
.program__duration-wrapper span:first-of-type {
  margin-left: auto;
  margin-right: 20px;
}
.program__duration-wrapper span:first-of-type::before {
  background: url("../img/icons/icon-calendar.svg") no-repeat center;
}
.program__duration-wrapper span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-clock.svg") no-repeat center;
}

.program__bill {
  width: 445px;
  margin: 35px auto 0;
}

.support {
  padding-top: 95px;
}

.support__title {
  font-size: 37px;
  font-weight: 700;
}

.support__desc {
  margin-top: 10px;
  font-size: 30px;
}

.support__content {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}

.support__content-text {
  display: flex;
  flex-direction: column;
  width: 530px;
}

.support__content-desc {
  font-size: 23px;
  line-height: 120%;
}

.support__method {
  margin-top: 25px;
}

.support__method-desc {
  font-size: 25px;
  font-weight: 600;
  line-height: 120%;
}

.support__method-list {
  margin-top: 15px;
  padding-left: 40px;
}

.support__method-item {
  list-style-type: disc;
  font-size: 23px;
  margin-bottom: 10px;
}
.support__method-item:last-of-type {
  margin-bottom: 0;
}

.support__bill {
  width: 100%;
  margin-top: auto;
  margin-bottom: 20px;
}

.support__content-pic {
  width: 554px;
}

.support__pic {
  width: 100%;
  height: auto;
}

.journals {
  margin-top: 95px;
  background-color: #F6F6F6;
}

.journals__content {
  position: relative;
  padding: 50px 0 100px;
}

.journals__title {
  font-size: 37px;
  font-weight: 700;
}

.journals__desc {
  margin-top: 15px;
  font-size: 30px;
}

.journals__logo {
  margin-top: 35px;
  width: 150px;
  height: auto;
}

.journals__benefit {
  width: 500px;
  margin-top: 35px;
  font-size: 25px;
  font-weight: 600;
  line-height: 120%;
}
.journals__benefit:last-of-type {
  margin-top: 25px;
  font-size: 23px;
  font-weight: 400;
}

.journals__pic {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 543px;
  height: auto;
}

.publications {
  padding-top: 35px;
}

.publications__caption {
  font-size: 30px;
  line-height: 130%;
  text-align: center;
}

.publications__list {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.publications__note {
  margin-top: 35px;
  font-size: 35px;
  color: #2D2E29;
  text-align: center;
}

.publications__bill {
  width: 500px;
  margin: 35px auto 0;
}

.footer {
  margin-top: 105px;
  font-family: "ProximaNova", "Arial", sans-serif;
  color: #ffffff;
  background-color: #1F2229;
}

.footer__wrapper {
  display: flex;
  padding: 75px 0;
  line-height: 16px;
}

.footer__copyright {
  margin: 0;
  font-size: 13px;
}

.footer__copyright-link {
  display: flex;
  flex-direction: column;
  display: inline;
  color: #ffffff;
  text-decoration: underline;
}

.footer__policy {
  display: block;
  margin-top: 20px;
  text-decoration: underline;
  color: #ffffff;
}

.footer__callback {
  margin: 0;
  margin-left: 167px;
  font-size: 13px;
}

.footer__phone {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #ffffff;
}

.footer__logo-link {
  display: flex;
  align-self: flex-end;
  margin-left: auto;
}

.footer__logo {
  width: auto;
  height: 19px;
}
