@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
}

:root {
  --black: #161616;
  --black: #000;
  --bg: #efeff1;
  --red: #da4f4f;
  --grey: rgba(172, 172, 172, 0.47);
  --color-btn: #8eccf6;
  --color-btn-white: #ffffff;
  --color-for-link: #e6e6e6;
  --color-icon: #2e3b42;
	
  --color-grey-text: #828182;
  --font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  color: var(--black);
}

.lock,
.lock-scroll {
  overflow: hidden;
}

a,
a:hover {
  text-decoration: none;
}

a {
  color: inherit;
}

*,
*:focus {
  outline: none;
}

a[href^="tel:"],
a[href^="mailto:"] {
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-cover,
.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.hide-mobile {
  display: none;
}

input,
button,
textarea {
  border: none;
  background: none;
  padding: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
}

button,
input[type=submit] {
  cursor: pointer;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
}

input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
}

.btn-close {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M15 9L9 15' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M9 9L15 15' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.icon-envelope {
  width: 26px;
  height: 26px;
  display: block;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3c!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3e%3csvg fill='%23000000' width='800px' height='800px' viewBox='0 -5 32 32' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid'%3e%3cpath d='M29.000,22.000 L3.000,22.000 C1.346,22.000 -0.000,20.654 -0.000,19.000 L-0.000,3.000 C-0.000,1.346 1.346,-0.000 3.000,-0.000 L29.000,-0.000 C30.654,-0.000 32.000,1.346 32.000,3.000 L32.000,19.000 C32.000,20.654 30.654,22.000 29.000,22.000 ZM3.000,20.000 L29.000,20.000 C29.551,20.000 30.000,19.552 30.000,19.000 L30.000,3.317 L16.651,14.759 C16.463,14.920 16.232,15.000 16.000,15.000 C15.768,15.000 15.537,14.920 15.349,14.759 L2.000,3.317 L2.000,19.000 C2.000,19.552 2.449,20.000 3.000,20.000 ZM28.464,2.000 L3.536,2.000 L16.000,12.683 L28.464,2.000 Z'/%3e%3c/svg%3e");
}

/*burger*/

.menu-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  display: none;
  border-radius: 1px;
}

.menu-toggle span {
  position: relative;
  border-radius: 2px;
  width: 28px;
  height: 2px;
  background-color: #000;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 28px;
  height: 2px;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  background-color: #000;
}

.menu-toggle span::before {
  top: -9px;
}

.menu-toggle span::after {
  top: 9px;
}

.menu-toggle.active span {
  background-color: transparent;
}

.menu-toggle.active span::before,
.menu-toggle.active span::after {
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  background-color: #000;
}

.menu-toggle.active span::before {
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  transform: rotate(-45deg);
}

.title-border,.article-part h3, .article-part h2, .article-part h4  {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid currentColor;
}

.inner-page {
  width: 100%;
  min-height: 100dvh;
  position: relative;
}

.inner-page-bg {
  position: absolute;
  z-index: 2;
  inset: 0;
  filter: blur(7px);
}

.container {
  width: 100%;
  max-width: 540px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.51;
  color: var(--color-btn-white);
  border-radius: 12px;
  box-shadow: -4px 4px 7px 0 rgba(215, 112, 112, 0.25);
  background: var(--red);
  transition: 0.3s;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  min-width: 230px;
  padding-left: 56px;
  padding-right: 56px;
  height: 50px;
  letter-spacing: 1px;
}

.button:hover {
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.15);
  background: #9f1c1c;
}

.button:active {
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.07);
  background: #d03737;
}

.w-100 {
  width: 100% !important;
}

.form-open-anchor .button {
  position: absolute;
  top: -37px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  right: 16px;
  width: 330px;
}

h1,
.h1 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.11;
  text-transform: uppercase;
  color: var(--black);
}

.font-18, .article-part h3, .article-part h2, .article-part h4, .article-part h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.47;
  color: var(--black);
}
.article-part h5{
  margin-bottom: 0;
}
.font-16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.64;
}

.header {
  padding-top: 22px;
  padding-bottom: 16px;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 5;
}

.header-row {
  display: flex;
  align-items: center;
  -moz-column-gap: 18px;
  column-gap: 18px;
}

.header-row .h1 {
  flex-grow: 1;
}

.header .h1 {
  text-transform: uppercase;
}

.content-mobile {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.content-desktop-button {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-desktop-group > * + * {
  margin-top: 2px;
}

.content-desktop {
  display: none;
}

.content-desktop-image {
  width: 35%;
  position: absolute;
  position: relative;
  border-radius: 12px;
  min-height: 100%;
  background-position: left top;
  background-size: cover;
  transition: 0.7s;
}

.main-nav {
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  width: 330px;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.07);
  background: var(--color-icon);
}

.menu-item {
  display: flex;
  align-items: center;
}

.menu-link {
  width: 100%;
  font-weight: 500;
  font-size: 17px;
  line-height: 151%;
  padding: 10px 20px;
  color: var(--color-btn-white);
  transition: 0.3s;
  position: relative;
}

.menu-link:after {
  content: "";
  width: 36px;
  height: 24px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='36' height='24' viewBox='0 0 36 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24 19L31 12L24 5' stroke='%23E6E6E6' stroke-width='0.6' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M3 12H31' stroke='%23E6E6E6' stroke-width='0.6' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.menu-item + .menu-item {
  border-top: 1px solid rgba(239, 239, 241, 0.49);
}

.main-group {
  position: relative;
  padding-bottom: 20px;
}

.main-image {
  aspect-ratio: 430/280;
  overflow: hidden;
  width: 100vw;
  margin-left: -16px;
}

.main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.article {
  scroll-margin-top: 90px;
  position: relative;
  padding-bottom: 20px;
}

.article .article-part > * + * {
  margin-top: 16px;
}

.article .article-part > .font-18 + p {
  margin-top: 8px;
}

.article-part + .article-part {
  margin-top: 20px;
}

.popup-wrapper {
  position: fixed;
  inset: 0;
  z-index: 8;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.popup-wrapper .special-link {
  position: absolute;
  inset: 0;
  background: white;
}

.popup-wrapper .font-18 {
  font-weight: 500;
  font-size: 18px;
  line-height: 147%;
  color: var(--black);
}

.popup-wrapper-content {
  border-radius: 10px;
  background-color: #fff;
  padding: 45px 16px;
  width: 100%;
  max-width: 550px;
  position: relative;
  z-index: 3;
}

.popup-wrapper-content .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.popup-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 113%;
  color: var(--black);
  margin-bottom: 16px;
}

.popup-title > * + * {
  margin-top: 20px;
}

.popup-subtitle {
  margin-bottom: 16px;
}

.form-item {
  position: relative;
}

.form-item input,
.form-item textarea {
  display: block;
  width: 100%;
  border-radius: 1px;
  height: 50px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid var(--black);
  font-size: 16px;
  color: var(--black);
}

.form-item textarea {
  height: 80px;
  padding: 16px;
  resize: none;
}

.form-item input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-grey-text);
}

.form-item input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-grey-text);
}

.form-item + .form-item {
  margin-top: 10px;
}

.form-footer {
  margin-top: 16px;
}

.form-footer .font-18 {
  margin-top: 8px;
}

.form-footer-group {
  margin-top: 16px;
}

form .button {
  width: 100%;
}

.nav-menu-wrapper {
  position: fixed;
  top: 75px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
  background-color: rgba(46, 59, 66, 0.95);
  width: 100%;
  width: fit-content;
  max-width: 350px;
  transition: 0.3s;
  transform: translateX(-110%);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-menu-wrapper.active {
  transform: translateX(0);
}

.nav-contacts {
  width: 100%;
}

.nav-contacts > * + * {
  margin-top: 16px;
}

.nav-contacts .fancy-item,
.nav-contacts .contact-item {
  color: white;
}

.nav-contacts .contact-item i {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3c!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3e%3csvg fill='%23ffffff' width='800px' height='800px' viewBox='0 -5 32 32' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid'%3e%3cpath d='M29.000,22.000 L3.000,22.000 C1.346,22.000 -0.000,20.654 -0.000,19.000 L-0.000,3.000 C-0.000,1.346 1.346,-0.000 3.000,-0.000 L29.000,-0.000 C30.654,-0.000 32.000,1.346 32.000,3.000 L32.000,19.000 C32.000,20.654 30.654,22.000 29.000,22.000 ZM3.000,20.000 L29.000,20.000 C29.551,20.000 30.000,19.552 30.000,19.000 L30.000,3.317 L16.651,14.759 C16.463,14.920 16.232,15.000 16.000,15.000 C15.768,15.000 15.537,14.920 15.349,14.759 L2.000,3.317 L2.000,19.000 C2.000,19.552 2.449,20.000 3.000,20.000 ZM28.464,2.000 L3.536,2.000 L16.000,12.683 L28.464,2.000 Z'/%3e%3c/svg%3e");
}

.footer-content {
  display: none;
}

.fancy-item {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 3px;
  padding-bottom: 3px;
}

.contact-item {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.contact-item i {
  flex-shrink: 0;
}

.nav-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.nav-menu a {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  padding-top: 3px;
  padding-bottom: 3px;
  color: white;
}

.nav-menu li + li {
  margin-top: 16px;
}

.popup-wrapper[data-popup] {
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.popup-wrapper.privacy-popup-wrapper[data-popup]{
	padding-top: 0;
	padding-bottom:0;
}
.popup-wrapper.popup-open[data-popup] {
  display: flex;
  z-index: 10;
}

.popup-wrapper .popup-body {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  padding: 20px;
  height: 100%;
  overflow-y: auto;
}
.popup-wrapper [data-close]{
	position: fixed;
	top:20px;
	right:10px;
	width:32px;
	height:32px;
	background-color: white;
	z-index:5;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.9993 29.3335C23.3631 29.3335 29.3327 23.364 29.3327 16.0002C29.3327 8.63641 23.3631 2.66687 15.9993 2.66687C8.63555 2.66687 2.66602 8.63641 2.66602 16.0002C2.66602 23.364 8.63555 29.3335 15.9993 29.3335Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M20 12L12 20' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M12 12L20 20' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}
.site-preview {
  display: flex;
  height: 100%;
}

.site-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.privacy-popup-wrapper p,
.privacy-popup-wrapper h2,
.privacy-popup-wrapper h3,
.privacy-popup-wrapper ul,
.privacy-popup-wrapper ol {
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.privacy-popup-wrapper h2:first-of-type{margin-top:0;}
.privacy-popup-wrapper ul li+li,
.privacy-popup-wrapper ol li+li{margin-top: 8px;}
@media (min-width: 390px) {
  h1,
  .h1 {
    font-size: 20px;
  }
}

@media (min-width: 540px) {
  .main-image {
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .popup-wrapper-content .popup-close {
    top: -24px;
    right: -24px;
  }
.popup-wrapper.privacy-popup-wrapper[data-popup]{
	padding-top: 20px;
	padding-bottom:20px;
}
	.popup-wrapper.privacy-popup-wrapper [data-close]{display:none!important;}
  .popup-wrapper-content {
    border-radius: 16px;
    padding: 45px 30px;
  }

  .form-footer {
    margin-top: 24px;
  }

  .form-footer .txt-muted {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .hide-mobile {
    display: block;
  }

  h1,
  .h1 {
    font-size: 24px;
  }

  .main-nav {
    display: none;
  }
}

@media (min-width: 1200px) {
  .lock {
    overflow: visible;
  }
  .article-part h5{font-size: 20px; font-weight: 600;}
  .btn-close {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%23EFEFEF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M15 9L9 15' stroke='%23EFEFEF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3cpath d='M9 9L15 15' stroke='%23EFEFEF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
  }

  .container {
    max-width: 1920px;
    max-width: 1920px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .button {
    width: -moz-fit-content;
    width: fit-content;
    height: 70px;
  }

  .button.h-50 {
    height: 50px;
  }

  .button:active {
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.07);
    background: #851212;
  }

  h1,
  .h1 {
    font-size: 28px;
    font-weight: 700;
  }

  .font-18 {
    font-weight: 600;
    font-size: 20px;
  }

  .header {
    display: none;
  }

  .content-mobile {
    display: none;
  }

  .content-desktop {
    display: flex;
    padding-top: 30px;
    position: relative;
  }

  .content-desktop-text {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 65%;
    padding-right: 20px;
  }

  .main-group {
    display: none;
  }

  .main-image {
    aspect-ratio: 840/760;
    position: absolute;
    top: 0;
    right: 40px;
    padding-bottom: 0;
    width: 40%;
    z-index: 2;
  }

  .article .article-part > .font-18 + p {
    margin-top: 24px;
  }

  .article {
    padding-top: 0;
    padding-bottom: 0;
  }

  .article-group {
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .article-group .article-part {
    background: var(--color-icon);   
    padding: 16px;
    border-radius: 10px;
    height: 100%;
  }

  .article-group .article-part > * {
    color: var(--color-btn-white);
  }

  .article-group-left {
    display: flex;
    width: 100%;
    -moz-column-gap: 10px;
    column-gap: 10px;
    background-color: #fff;
    padding-top: 20px;
  }

  .article-group-left .article:first-child {
    flex-grow: 1;
  }

  .article-wrapper {
    display: none;
  }

  .article.article-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 35%;
    flex-shrink: 0;
  }

  .article.article-column > * {
    flex: 1;
  }

  .article-part + .article-part {
    margin-top: 0px;
  }

  .popup-wrapper .special-link {
    background: rgba(0, 0, 0, 0.5);
  }

  .popup-wrapper {
    align-items: center;
    padding-top: 0;
  }

  .popup-title {
    font-size: 22px;
    line-height: 147%;
    margin-bottom: 30px;
  }

  .nav-menu-wrapper {
    display: none;
  }

  .footer-content {
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .footer-content .footer-menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 40px;
    column-gap: 40px;
    width: 100%;
  }

  .footer-content .footer-menu a:last-child {
    margin-left: auto;
  }

  .nav-menu {
    display: flex;
    justify-content: space-between;
    max-width: unset;
  }

  .nav-menu a {
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 1px solid currentColor;
  }

  .nav-menu a:hover {
    opacity: 0;
  }

  .popup-wrapper[data-popup] {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (min-width: 1365px) {
  .font-16 {
    font-size: 18px;
    font-weight: 500;
  }

  .content-desktop-button {
    flex-direction: row;
    align-items: center;
  }

  .content-desktop-button .font-18 {
    font-size: 20px;
  }

  .content-desktop-text {
    row-gap: 20px;
  }

  .content-desktop-text .article.font-16 {
    font-weight: 500;
    font-size: 19px;
  }
}

@media (min-width: 1440px) {
  h1,
  .h1 {
    font-size: 32px;
    line-height: 0.96;
  }

  .main-image {
    width: 840px;
  }

  .article-group-left {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (min-width: 1800px) {
  .content-desktop-text {
    width: unset;
    flex-shrink: unset;
    flex: 1;
  }

  .content-desktop-image {
    width: 840px;
    flex-shrink: 0;
    position: relative;
  }
}

@media (min-width: 1920px) {
  .content-desktop {
    padding-bottom: 20px;
  }

  .article-group-left {
    padding-top: 0;
  }
}

@media (max-width: 1199px) {
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 4;
  }

  .main {
    padding-bottom: 80px;
  }

  .form-open-anchor .button.float-button {
    position: fixed;
    bottom: 20px;
    top: auto;
    z-index: 4;
  }
}
.wpcf7 form.sent .wpcf7-response-output{display: none;}