.form-send {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #fff;
    background-color: #8bc34a;
    border-color: #8bc34a;
    font-weight: 400;
    box-shadow: 0 0 30px rgb(115 128 157 / 10%);
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
  }

._error input[type="text"]{
    border: 1px solid #ff0000!important;
  }

  .form__body {
    position: relative;
}

.form__body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.9) url("/assets/images/icons/loading.gif") center / 50px no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
}

.form__body._sending::after {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 991px) {
  .type__img img {
    max-width: 140px;
  }
}

@media (max-width: 767px) {
  .mainButton {
    padding: 8px 12px;
  }
}

@media (max-width: 375px) {
  .type__img img {
    max-width: 110px;
  }
}

.item {
  display: none;
}

/* .loadMore:hover {
  background-color: #fff;
  color: #33739E;
} */

/* main */

html,
body {
  height: 100%;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}

.logo__text:hover {
  color: #fff;
  text-decoration: none;
}

.logo__text--footer {
  margin-top: -5px;
}

/* footer */

.footer__offer {
  font-size: 11px;
}

.itemCollapse b {
  font-weight: 300 !important;
}

.header {
  background-color: #ffffff;
}

.subheader {
  background-color: #006465;
}

.cover {
  background-color: #EAEFE5;
}

.btn-warning {
  background-color: #65C6BB;
  border-color: #65C6BB;
}

.official__img {
  min-height: 400px;
}

.navigation__phone--black, .nav-link--black, .logo__text--black {
  color: #000;
}

.nav-link--black, .logo__text--black {
  font-weight: 400;
}

.navigation__phone--black:hover, .nav-link--black:hover, .logo__text--black:hover {
  color: #006465;
}

.navigation__logo-link {
  margin-right: 5px;
}

.navigation__brand {
  position: relative;
  white-space: nowrap;
  border-bottom: 1px solid #000000;
  cursor: pointer;
}

.navigation__text {
  max-width: 220px !important;
}

.navigation__brand::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: -9px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #000;
}

/* submenu */

.submenu-wrapper {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  margin: 0 10px;
  padding: 15px 15px 5px;
  width: 94%;

  border-radius: 8px;
  box-shadow: 0 40px 30px rgba(0, 0, 0, 0.1);

  background-color: #ffffff;

  transform: translate(0px, 0.5%);

  z-index: 9;
}

.submenu__list {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));

  grid-gap: 10px 20px;
}

.submenu__item {
  list-style-type: none;
}

.submenu__link {
  color: #000;
}

.submenu__link:hover {
  text-decoration: none;
  color: #006465;
}



/* end submenu */