.header__container {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  width: 100%;
  justify-content: flex-end;
  z-index: 2;
}
.header__wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.header__logo {
  display: block;
  width: 100%;
}
.header__logo-container {
  transition: 0.3s;
  width: 340px;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__data {
  transition: 0.3s;
  padding: 10px 50px;
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
.header__data-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.header__data-item i {
  font-size: 20px;
  color: #25D366;
}
.header__data-item span {
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.header__data-item a {
  text-decoration: none;
  color: #323232;
}
.header__nav {
  padding: 0 50px;
}
.header__toggle-container {
  display: none;
}
.header__links {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  justify-content: space-between;
  list-style: none;
}
.header__links-container {
  width: 50%;
}
.header__link {
  padding: 0 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.header__link a {
  color: #323232;
  text-decoration: none;
}
.header__link a:focus, .header__link a:hover {
  text-decoration: none;
  color: #195c75;
}

@media (max-width: 768px) {
  .header__container {
    justify-content: space-between;
    background-color: #f5f5f5;
    flex-wrap: wrap;
  }
  .header__container.active .header__logo-container {
    height: auto;
  }
  .header__logo-container {
    height: auto;
    max-width: 200px;
    position: relative;
    left: initial;
    top: initial;
    transform: none;
    padding: 10px 15px;
    background: transparent;
  }
  .header__data {
    padding: 5px 0;
    background-color: #d6d5d5;
  }
  .header__data-item {
    justify-content: center;
    width: 100%;
  }
  .header__wrapper {
    width: 100%;
    padding: 0;
  }
  .header__nav {
    position: absolute;
    width: 90%;
    left: -90%;
    background-color: #f5f5f5;
    top: 0;
    height: 100vh;
    padding: 0;
    transition: 0.3s;
  }
  .header__nav ul {
    flex-direction: column;
  }
  .header__nav.active {
    left: 0;
  }
  .header__link {
    margin-bottom: 15px;
  }
  .header__link a {
    display: block;
    width: 100%;
    outline: none;
  }
  .header__toggle-container {
    display: block;
    padding: 10px 15px;
  }
  .header__toggle-button {
    border: none;
    background-color: transparent;
    font-size: 20px;
    color: #323232;
    outline: none;
    padding: 0;
  }
}.footer__container {
  display: flex;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 50px 50px;
}
.footer__list {
  list-style-type: none;
  padding: 0;
  width: 100%;
  max-width: 190px;
  padding: 0 20px;
  border-left: 1px solid #999;
}
.footer__list:first-child {
  border: none;
}
.footer__list-element {
  display: flex;
  justify-content: flex-end;
  text-align: center;
  margin-bottom: 5px;
}
.footer__list-element--phone img {
  width: 150px;
}
.footer__list-element--icons {
  justify-content: center;
}
.footer__list-element--icons a {
  margin: 0 10px;
}
.footer__list-element-link {
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  color: #323232;
  margin: 3px 0;
  text-decoration: none;
}
.footer__list-element-link:hover, .footer__list-element-link:focus {
  text-decoration: none;
  color: #323232;
}
.footer__data-fiscal {
  display: block;
  width: 40px;
}
.footer__data-fiscal img {
  width: 100%;
}
.footer__social-icon {
  font-size: 35px;
  color: #999;
  transition: 0.3s;
  margin: 0 5px;
}
.footer__social-icon.facebook:hover {
  color: #0e68ce;
}
.footer__social-icon.instagram:hover {
  color: #dd2a7b;
}
.footer__social-icon.twitter:hover {
  color: #1DA1F2;
}
.footer__leader-icon {
  width: 35px;
}
.footer__leader-icon img {
  width: 100%;
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
  }
  .footer__container > ul:first-child,
  .footer__container > ul {
    border: none;
    border-bottom: solid;
    border-bottom: 1px solid #999;
  }
  .footer__container > ul:last-child {
    border: none;
  }
  .footer__list {
    margin-bottom: 20px;
  }
  .footer__list-element {
    justify-content: center;
  }
  .footer__social-icon.facebook {
    color: #0e68ce;
  }
  .footer__social-icon.instagram {
    color: #dd2a7b;
  }
  .footer__social-icon.twitter {
    color: #1DA1F2;
  }
}.slider__img {
  width: 100%;
  display: block;
}
.slider__description {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  opacity: 1;
  font-size: 50px;
  color: #fff;
  font-weight: 400;
  text-shadow: #195c75 0px 0px 5px;
}

@media (max-width: 768px) {
  .slider__description {
    font-size: 25px;
  }
}.button__container {
  display: flex;
  width: 100%;
  max-width: 150px;
  border: none;
  font-size: 11px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 5px;
  background-color: #f5f5f5;
  text-decoration: none;
  color: #323232;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
  transition: 0.3s;
}
.button__container:hover {
  background: #195c75;
  color: #fff;
  text-decoration: none;
}.banner__container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 0 auto;
}
.banner__img {
  width: 100%;
}
.banner__wrapper {
  position: absolute;
  background-color: rgba(25, 92, 117, 0.6);
  top: 50%;
  left: 50%;
  width: 70%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  transform: translate(-50%, -50%);
}
.banner__title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1;
  color: #fff;
}
.banner__text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
  color: #fff;
}

@media (max-width: 768px) {
  .banner__wrapper {
    padding: 15px;
    width: 90%;
  }
  .banner__title {
    font-size: 23px;
  }
  .banner__text {
    font-size: 13px;
  }
}.home__bar-text {
  display: flex;
  width: 100%;
  background: #195c75;
  padding: 50px 15px;
  justify-content: center;
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 768px) {
  .home__bar-text {
    padding: 25px 15px;
    font-size: 18px;
  }
}.heroTitle__container {
  width: 100%;
  position: relative;
  height: 200px;
  background-color: #195c75;
}
.heroTitle__title {
  position: absolute;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 300;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .heroTitle__container {
    height: 120px;
    position: relative;
  }
  .heroTitle__title {
    font-size: 23px;
  }
}.map__container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.map__iframe {
  width: 100%;
  max-width: 450px;
}

@media (max-width: 768px) {
  .map__iframe {
    max-width: 350px;
  }
}.contact__container {
  width: 100%;
}
.contact__wrapper {
  display: flex;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 35px 15px;
}
.contact__info {
  width: 100%;
  max-width: 350px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.contact__info img {
  display: block;
  max-width: 55px;
}
.contact__info p {
  font-size: 18px;
  margin: 0;
  padding-left: 10px;
  font-weight: 400;
  max-width: 250px;
  color: #333;
  text-align: left;
}
.contact__map {
  width: 50%;
  padding: 0 10px;
}
.contact__form {
  width: 50%;
  display: flex;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form__container {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form__input-container {
  width: 100%;
}
.form__input-container--medium {
  width: calc(50% - 10px);
}
.form__input-container span {
  font-size: 12px;
  margin: 3px 0;
  display: block;
  width: 100%;
  letter-spacing: 0.5px;
  color: red;
}
.form__input-wrapper {
  width: 100%;
  margin-bottom: 15px;
}
.form__input-radio-wrapper {
  display: flex;
  padding-top: 5px;
  position: relative;
}
.form__input-radio-wrapper > label {
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.form__input-radio-wrapper > label:before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 13px;
  height: 13px;
  border: 1px solid #195c75;
  border-radius: 50%;
}
.form__input-radio-wrapper > input {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.form__input-radio-wrapper > input:checked + label:before {
  background-color: #195c75;
}
.form__input-label {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 11px;
  color: #323232;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.form__input-element {
  background-color: #fff;
  border: 1px solid #999;
  padding: 5px 10px;
  display: block;
  width: 100%;
}
.form__input-element:focus {
  outline: none;
  border-color: #333;
}
.form__input-element.text-area {
  resize: none;
  height: 100px;
}
.form__submit {
  width: 100%;
  max-width: 200px;
  border: none;
  color: #fff;
  background-color: #323232;
  padding: 10px 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}
.form__submit:disabled {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .contact__wrapper {
    flex-direction: column-reverse;
  }
  .contact__form {
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .contact__map {
    width: 100%;
  }
  .contact__info {
    margin-bottom: 20px;
  }
  .contact__info p {
    margin: 10px 0;
    font-size: 17px;
  }
  .form__input-container--medium {
    width: 100%;
  }
  .form__submit {
    max-width: 100%;
  }
}.clients__container {
  width: 100%;
}
.clients__container .swiper-wrapper {
  align-items: center;
}
.clients__description {
  padding: 35px 15px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.clients__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
  width: 100%;
  padding: 100px 15px;
  margin: 0 auto;
}
.clients__slider-container {
  background-image: url("/images/hero-clients.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.clients__item {
  width: 33.33333%;
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients__item.isRounded img {
  max-width: 130px;
}
.clients__item img {
  max-width: 250px;
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .clients__wrapper {
    padding: 25px 10px;
  }
  .clients__description {
    font-size: 13px;
  }
  .clients__item {
    width: 50%;
  }
  .clients__item.isRounded img {
    max-width: 100px;
  }
  .clients__item img {
    max-width: 150px;
  }
}.works__container {
  width: 100%;
}
.works__description {
  padding: 0 15px;
  padding-top: 35px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.works__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
  width: 100%;
  padding: 35px 15px;
  margin: 0 auto;
}
.works__item {
  width: calc(25% - 20px);
  height: 350px;
  margin: 10px;
  padding: 0px;
  display: flex;
  justify-content: center;
  position: relative;
}
.works__item-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(25, 92, 117, 0.7);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  transition: 0.5s;
}
.works__item-title {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
}
.works__item-subtitle {
  color: #fff;
  font-weight: 300;
  text-align: center;
  font-size: 13px;
  margin-bottom: 15px;
}
.works__item-builder-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
}
.works__item-builder {
  color: #fff;
  font-weight: 300;
  font-size: 13px;
}
.works__item-builder-icon-content {
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.3882352941);
  border-radius: 2px;
}
.works__item-builder-icon {
  width: 60px;
}
.works__item:hover .works__item-wrapper {
  opacity: 1;
}
.works__item > img {
  width: 100%;
  height: 100%;
  display: block;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .works__wrapper {
    justify-content: space-around;
  }
  .works__description {
    font-size: 13px;
  }
  .works__item {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    height: 250px;
  }
  .works__item-title {
    font-size: 14px;
    margin-top: 0%;
  }
  .works__item-subtitle {
    font-size: 11px;
  }
  .works__item-wrapper {
    opacity: 1;
    top: initial;
    transform: initial;
    bottom: 0;
    background-color: rgba(25, 92, 117, 0.5);
    left: 0;
  }
}.notFound__container {
  display: flex;
  justify-content: center;
}
.notFound__wrapper {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 75px 15px;
}
.notFound__text {
  font-size: 12px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0px;
  letter-spacing: 1px;
}
.notFound__code {
  font-weight: 700;
  font-size: 100px;
  text-align: center;
  margin: 0;
  color: #323232;
}.equipments__container {
  width: 100%;
}
.equipments__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
  width: 100%;
  padding: 35px 0px;
  margin: 0 auto;
}
.equipments__section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.equipments__section.last .mobile {
  display: none;
}
.equipments__images {
  width: calc(55% - 20px);
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.equipments__images img {
  width: calc(33.333% - 10px);
  margin: 5px;
}
.equipments__text {
  margin: 10px;
  width: calc(45% - 20px);
}
.equipments__text p {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .equipments__section.last .desktop {
    display: none;
  }
  .equipments__section.last .mobile {
    display: block;
  }
  .equipments__images {
    width: 100%;
  }
  .equipments__images img {
    width: calc(50% - 10px);
  }
  .equipments__text {
    width: 100%;
  }
  .equipments__text p {
    font-size: 13px;
  }
}.services__container {
  width: 100%;
}
.services__description {
  padding: 0 15px;
  padding-top: 35px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.services__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
  width: 100%;
  padding: 35px 15px;
  margin: 0 auto;
}
.services__item {
  width: calc(33% - 20px);
  margin: 10px;
}
.services__item img {
  height: 300px;
  display: block;
  width: 100%;
  width: 100%;
  object-fit: cover;
}
.services__item-text-wrapper {
  background-color: #195c75;
  padding: 15px;
  height: 110px;
  color: #fff;
  text-align: center;
}
.services__item-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.services__item-description {
  font-weight: 300;
  font-size: 13px;
}

@media (max-width: 768px) {
  .services__description {
    font-size: 13px;
  }
  .services__item {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
  .services__item img {
    height: 220px;
  }
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 97px;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 768px) {
  body {
    padding-top: 78px;
  }
}.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}

.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}

.Toastify__toast--info {
  background: #3498db;
}

.Toastify__toast--success {
  background: #07bc0c;
}

.Toastify__toast--warning {
  background: #f1c40f;
}

.Toastify__toast--error {
  background: #e74c3c;
}

.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}

.Toastify__progress-bar--dark {
  background: #bb86fc;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

