/*
 * style
 */
/*
 * global
 */
/*
 * variables
 */
:root {
  --bg-color: #fff;
  --text-color: #000;
}
a {
  color: inherit;
}
a:hover {
  color: inherit;
}
p {
  line-height: 1.2;
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}
img {
  max-width: 100%;
  height: auto;
}
section {
  position: relative;
}
.container {
  min-width: 320px;
}
@media (min-width: 992px) {
  .container {
    max-width: 1124px;
  }
}
#wrapper {
  position: relative;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
/*
 * header
 */
.header {
  padding: 16px 0;
}
@media (min-width: 992px) {
  .header {
    padding: 34px 0;
  }
}
.header .container {
  min-width: 320px;
}
@media (min-width: 992px) {
  .header .container {
    max-width: 1228px;
  }
}
.header__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;
}
.header__logo {
  max-width: 167px;
}
.header__btn {
  background: transparent;
  border: 2px solid #53ee62;
  border-radius: 10px;
  padding: 7px 15px;
  font-size: 14px;
  line-height: 1.15;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (min-width: 992px) {
  .header__btn {
    padding: 9px 17px;
    font-size: 17px;
  }
}
.header__btn:hover {
  background: #53ee62;
  color: #fff;
}
/*
 * modals
 */
.modal__dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  min-height: 100vh;
  padding: 15px;
  margin: 0;
}
