* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FDC42C;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  color: #000000;
  font-weight: bold;
  font-size: 14px;
  line-height: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: #eaaa02;
}

.section-title {
  font-size: 34px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}

.form-input {
  width: 100%;
  height: 45px;
  margin-bottom: 15px;
  padding: 11px;
  background: #ffffff;
  border: 2px solid #FDC42C;
  border-radius: 5px;
  font-size: 15px;
  line-height: 24px;
  color: #656565;
  outline: none;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.btn-primary {
  width: 150px;
  height: 40px;
  outline: none;
}

.select2 {
  width: 100%;
  height: 45px;
  margin-bottom: 15px;
  background: #ffffff;
  border: 2px solid #FDC42C;
  border-radius: 5px;
  outline: none;
}

.select2-selection__rendered,
.select2-container--default {
  display: none;
}

.form-validation {
  display: block;
  color: red;
  margin-bottom: 10px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.8);
}
.header-logo {
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 10px;
}
.header-nav {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav__item {
  margin-right: 40px;
}
.header-nav__item:last-child {
  margin-right: 0;
}
.header-nav__link {
  color: #ffffff;
  font-size: 18px;
  line-height: 21px;
  transition: 0.4s;
  cursor: pointer;
}
.header-nav__link:hover {
  color: #FDC42C;
}
.header-auth {
  width: 200px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-auth__link {
  color: #ffffff;
  font-size: 18px;
  line-height: 21px;
  transition: 0.4s;
}
.header-auth__link:hover {
  color: #FDC42C;
}
.header-auth__line {
  display: block;
  height: 18px;
  width: 1px;
  background-color: #ffffff;
}
.header-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
.header-menu__line {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #FDC42C;
}
.header-menu__line:before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #FDC42C;
}
.header-menu__line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #FDC42C;
}

.hero {
  position: relative;
  width: 100%;
  height: 800px;
  margin-bottom: 45px;
  background: linear-gradient(92.44deg, #000000 28.7%, rgba(0, 0, 0, 0.71) 40.19%, rgba(0, 0, 0, 0) 50.85%), url("../img/hero-bg.png") no-repeat right;
}
.hero-wrapper {
  background-color: #000000;
}
.hero:before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: calc(50% - 25px);
  display: block;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #442210;
}
.hero-title {
  margin-top: 225px;
  margin-bottom: 15px;
  font-size: 48px;
  line-height: 56px;
  color: #ffffff;
}
.hero-description {
  margin: 0;
  margin-bottom: 35px;
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
}
.hero-btn {
  height: 47px;
  width: 230px;
}

.advantages {
  padding-bottom: 50px;
}
.advantages-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
.advantages-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  width: 116px;
  height: 111px;
  background-color: #000000;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}
.advantages-block__icon:hover {
  background-color: #FDC42C;
}
.advantages-block__icon:hover svg path {
  fill: #000000;
}
.advantages-block__icon svg {
  max-width: 100%;
}
.advantages-block__icon svg path {
  transition: 0.3s;
}
.advantages-block__description {
  text-align: center;
  max-width: 205px;
  font-size: 20px;
  line-height: 35px;
}
.advantages-title {
  margin-bottom: 70px;
}

.tool {
  position: relative;
  padding: 40px 0;
  background-color: #EDECE9;
  z-index: 1;
}
.tool-title {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 767px;
  font-size: 30px;
  line-height: 40px;
}
.tool-title span {
  color: #FDC42C;
}
.tool-image {
  display: flex;
  justify-content: center;
  background-image: url("../img/circles.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}
.tool-image img {
  padding-left: 100px;
  max-width: 100%;
}
.tool-subtitle {
  font-size: 34px;
  line-height: 40px;
}
.tool-text {
  font-size: 20px;
  line-height: 35px;
  color: #898181;
  max-width: 420px;
}

.journal {
  position: relative;
  margin-top: -300px;
  padding-top: 257px;
  padding-bottom: 95px;
  background-image: url("../img/tool-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.journal:before {
  content: "";
  position: absolute;
  bottom: -39px;
  left: calc(50% - 25px);
  display: block;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #292929;
}
.journal-subtitle {
  font-size: 34px;
  line-height: 40px;
  color: #ffffff;
}
.journal-text {
  font-size: 20px;
  line-height: 35px;
  color: #827F7A;
}
.journal-image img {
  max-width: 100%;
}

.register {
  position: relative;
  padding-top: 147px;
  padding-bottom: 91px;
  background-image: url("../img/register-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.register:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.43);
}
.register-title {
  margin-top: 0;
  color: #ffffff;
}
.register-description {
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
}
.register-form {
  display: flex;
  justify-content: center;
}
.register-form__input {
  width: 240px;
  height: 45px;
  padding: 11px;
  background: #ffffff;
  border: 1px solid #FDC42C;
  border-radius: 5px 0 0 5px;
  font-size: 15px;
  line-height: 24px;
  color: #656565;
  outline: none;
}
.register-form__button {
  width: 154px;
  height: 45px;
  border: none;
  border-radius: 0 5px 5px 0;
}

.client {
  padding: 52px 0 0 0;
}
.client-block {
  padding: 50px 0;
  background-image: url("../img/client-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.client-block__image {
  max-width: 100%;
}
.client-block__title {
  font-size: 34px;
  line-height: 40px;
  color: #000000;
}
.client-block__text {
  font-size: 20px;
  line-height: 35px;
  color: #656565;
}

.functions {
  position: relative;
  padding: 140px 0 100px 0;
  background-image: url("../img/home_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.functions:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  border-top: 100px solid white;
  border-left: 1920px solid transparent;
}
.functions:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(41, 41, 41, 0.85);
}
.functions-title {
  color: #FDC42C;
  margin-bottom: 90px;
}
.functions-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.functions-block img {
  max-width: 100%;
}
.functions-block__title {
  font-size: 28px;
  line-height: 33px;
  color: #FDC42C;
}
.functions-block__text {
  max-width: 282px;
  font-size: 20px;
  line-height: 35px;
  color: #ADADAD;
}

.price {
  padding: 57px 0 145px 0;
  background-color: #EDECE9;
}
.price-title {
  margin-top: 0;
  margin-bottom: 59px;
}
.price-subtitle {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-bottom: 45px;
  background: rgba(41, 41, 41, 0.7);
  border-radius: 10px;
  font-size: 25px;
  line-height: 29px;
  text-transform: uppercase;
  color: #ffffff;
}
.price-subtitle.primary {
  background-color: #FDC42C;
  color: #000000;
}
.price-text {
  margin-bottom: 40px;
}
.price-text span {
  margin-left: 10px;
  font-size: 20px;
  line-height: 28px;
  color: #656565;
}
.price-value {
  width: 50%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background: #ffffff;
  border-radius: 10px 0px 0px 10px;
}
.price-button {
  width: 50%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #292929;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.41);
  border-radius: 0px 10px 10px 0px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.3s;
}
.price-button:hover {
  box-shadow: none;
}
.price-button.primary {
  background-color: #FDC42C;
  color: #000000;
}

.footer {
  padding: 50px 0 20px 0;
  background-color: #292929;
}
.footer-link {
  display: inline-block;
  padding: 0px 2px 3px 2px;
  font-size: 17px;
  line-height: 21px;
  color: #ADADAD;
  border-bottom: 1px solid #ADADAD;
  transition: 0.4s;
}
.footer-link:hover {
  color: #FDC42C;
  border-bottom: 1px solid #FDC42C;
}
.footer-social__link {
  display: flex;
  align-items: center;
  font-size: 17px;
  line-height: 21px;
  color: #ADADAD;
  transition: 0.4s;
}
.footer-social__link:hover {
  color: #FDC42C;
}
.footer-social__link img {
  margin-right: 8px;
}
.footer-text {
  display: block;
  font-size: 17px;
  line-height: 21px;
  color: #ADADAD;
}
.footer-dev__link {
  font-size: 12px;
  line-height: 14px;
  color: #6A6A6A;
}
.footer-logo img {
  width: 124px;
}

.footer .credit-card-logos img {
  width: 84px;
}

.menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: -100vw;
  top: 0;
  z-index: 10;
  transition: all 0.8s;
}
.menu__active {
  left: 0;
}
.menu-title {
  margin-top: 80px;
  margin-bottom: 36px;
  font-family: "High Tower Text", serif;
  text-align: center;
}
.menu-bg {
  position: relative;
  background-color: #FDC42C;
  height: 100vh;
}
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu-wrapper {
  height: 100vh;
}
.menu-links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.menu-links a {
  margin-bottom: 44px;
  font-size: 22px;
  color: #000000;
  text-align: center;
}
.menu-phone {
  margin-top: 50px;
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.0072px;
  font-weight: bold;
  transition: 0.3s;
}
.menu-phone:hover {
  color: #FDC42C;
}

.window-bg {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
}

.modal-blur {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.69);
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1200px) {
  .header-nav__item {
    margin-right: 20px;
  }

  .hero {
    background: linear-gradient(92.44deg, #000000 18.7%, rgba(0, 0, 0, 0.71) 28.19%, rgba(0, 0, 0, 0) 50.85%), url("../img/hero-bg.png") no-repeat right;
  }
}
@media (max-width: 991px) {
  .hero-title {
    margin-top: 305px;
  }

  .tool-text {
    max-width: unset;
  }

  .journal {
    margin-top: -350px;
    padding-bottom: 35px;
  }

  .client-block {
    background-size: auto;
    padding-top: 0;
  }

  .functions:after {
    border-top: 200px solid #ffffff;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .header-auth {
    display: none;
  }
  .header-menu {
    display: flex;
  }

  #auth-modal .header-nav {
    display: flex;
  }

  .hero {
    height: 760px;
    background: url("../img/hero-bg.png") no-repeat 80%;
  }
  .hero:before {
    left: calc(50% - 40px);
  }
  .hero-title, .hero-description {
    filter: progid:DXImageTransform.Microsoft.DropShadow(offX=1, offY=0, color=#000000, positive=true);
    text-shadow: 1px 0px 5px rgba(0, 0, 0, 0.44);
    -webkit-text-shadow: 1px 0px 5px rgba(0, 0, 0, 0.44);
    -moz-text-shadow: 1px 0px 5px rgba(0, 0, 0, 0.44);
  }
  .hero-title {
    font-size: 36px;
    line-height: 48px;
  }

  .section-title {
    font-size: 24px;
    line-height: 30px;
  }

  .tool-subtitle,
.journal-subtitle {
    font-size: 22px;
    line-height: 25px;
  }
  .tool-text,
.journal-text {
    font-size: 18px;
    line-height: 30px;
  }

  .register-description {
    font-size: 20px;
  }

  .client-block__title {
    font-size: 24px;
    line-height: 30px;
  }

  .client-block__text {
    font-size: 18px;
    line-height: 30px;
  }

  .footer-text {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .journal {
    margin-top: -300px;
  }

  .advantages {
    padding-bottom: 0;
  }

  .price {
    padding: 60px 0;
  }

  .footer {
    padding: 30px 0;
  }

  .footer-text {
    font-size: 15px;
  }

  .btn-primary {
    width: 100%;
  }

  .jquery-modal.blocker {
    padding: 50px 0 15px;
  }
}

/*# sourceMappingURL=style.css.map */
