*:focus {
  outline: none !important; }

/* START common pages styles */
/* grid from bootstrap */
/* common */
/* header */
/* footer */
/* contactsInfo */
/*  END  common pages styles */
/*  --------------------------- */
/* START common pages styles */
/* grid from bootstrap */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1210px; } }

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

html,
body {
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0 auto; }

html.heightPage,
html.heightPage body {
  height: 100%; }

body {
  overflow-Y: scroll;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text_main);
  background-color: var(--color-fff); }
  @media (max-width: 767px) {
    body {
      font-size: 16px; } }

.wrapper {
  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;
  min-height: 100%; }

.main {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }

.container {
  position: relative;
  padding-left: 15px;
  padding-right: 15px; }

img {
  display: block; }

img,
svg {
  max-width: 100%;
  height: auto; }

svg {
  overflow: hidden;
  vertical-align: middle; }

ol,
ul {
  list-style: none;
  padding-left: 0;
  margin: 0; }

li {
  list-style: none; }

p,
form {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0; }

b,
strong {
  font-family: "Poppins-Bold", "Helvetica", "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 700; }

a,
a:hover {
  color: var(--color-text_main);
  text-decoration: none; }

p a:not(.btn) {
  position: relative;
  display: inline; }

p a:not(.btn):before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease 0s, bottom 0.15s ease 0s, height 0.15s ease 0s;
  transition: background-color 0.3s ease 0s, bottom 0.15s ease 0s, height 0.15s ease 0s; }

p a:not(.btn):hover:before {
  background-color: var(--color-000); }

select {
  -webkit-appearance: none;
  border-radius: 0; }

input {
  margin: 0; }

button {
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  margin: 0;
  cursor: pointer; }

button, input[type="submit"] {
  -webkit-box-shadow: none !important;
          box-shadow: none !important; }

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"] {
  -webkit-appearance: none;
  border-radius: 0; }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

textarea {
  -webkit-appearance: none;
  display: block;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 154px;
  height: 154px;
  max-height: 154px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  resize: none; }

.hidden {
  display: none !important; }

h1, .hl-h1,
h2, .hl-h2,
h3, .hl-h3,
h4, .hl-h4,
h5, .hl-h5,
h6, .hl-h6 {
  font-weight: normal;
  padding: 0;
  margin: 0 auto; }

.btn {
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Poppins-SemiBold", "Helvetica", "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #55a576;
  padding: 4px 26px 5px;
  border: #55a576 solid 2px;
  border-radius: 18px;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s;
  cursor: pointer; }
  @media (max-width: 767px) {
    .btn {
      min-width: inherit; } }

.btn:hover {
  color: #fff;
  border-color: #fff; }

.btn[disabled] {
  color: #fff !important;
  background-color: silver !important;
  border-color: silver !important;
  cursor: default; }

/*  END  common pages styles */
/*  --------------------------- */
