@font-face {
  font-family: "Martian-Mono";
  src: url("/fonts/MartianMono-VariableFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  font-family: "Martian-Mono", sans-serif;
  font-size: 16px;
  /* line-height: 1.25 !important; */
  letter-spacing: 0.25px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-tap-highlight-color: transparent;
}
*::selection {
  background-color: #82ba7270;
}

body {
  /* color: #ffffff; */
  /* background-color: #E8DDCB; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* align-items: flex-end; */
  min-height: 100vh;
}

main {
  margin-top: 6em;
  flex: 1 0 auto;
}

footer {
  display: flex;
  /* background-color: #333333; */
  padding: 1em;
  text-align: center;
  background: -webkit-linear-gradient(90deg, #08401c, #004c4c, #0a526d);
  background: linear-gradient(90deg, #08401c, #004c4c, #0a526d);
}

footer * {
  color: #fff !important;
}

img {
  user-select: none;
  pointer-events: none;
}



.footer-menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  padding: 0;
  flex-wrap: wrap;
  max-width: 1180px;
}

.footer-menu-item {
  list-style: none;
}

.footer-menu-link {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.footer-menu-link:hover {
  opacity: 1;
}

footer p {
  color: #ffffff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: #000;
}
/* *[id]:before {
  display: block;
  content: " ";
  margin-top: -270px;
  height: 270px;
  visibility: hidden;
} */

header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 1em;
  background-color: #ffffff;
  /* backdrop-filter: blur(2em); */
  box-shadow: 0 0 3px #ccc;
  border-radius: 0 0 14px 14px;
  /* overflow: hidden; */
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  gap: 2em;
}

.main-header_logo img {
  display: flex;
}

.main-header_menu {
  display: flex;
  gap: 3em;
}

.main-header_menu .menu-item {
  display: flex;
  align-items: center;
  height: inherit;
  padding: 0 16px;
  font-size: 21px;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.main-header_menu .menu-item > span {
  display: block;
  height: 18px;
  position: relative;
  overflow: hidden;
  font-weight: 700;
}

.main-header_menu .menu-item.active > span {
  color: #82ba72;
}

.main-header_menu .menu-item > span > span {
  display: block;
  transition: translate 0.3s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  text-rendering: optimizeLegibility;
}

.main-header_menu .menu-item > span > span:nth-child(2) {
  color: #82ba72;
}

.main-header_menu .menu-item:hover > span > span {
  translate: 0 -100%;
}

.get-order-button.button--primary {
  padding: 0.25em 1.25em;
  box-shadow: inset 0px 0px 4px 4px #82ba72;
}

.get-order-button.button--primary p {
  font-size: 18px;
  margin: 0.5em 0 !important;
}

.hamburger-menu {
  display: none;
}

.hamburger-button {
  background-color: #82ba72;
  color: white;
  padding: 11px 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 6px;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.hamburger-button.opened {
  border-radius: 6px 0em 0em 6px;
  background-color: #58a475;
  transform: rotate(90deg);
}

.hamburger-menu-links {
  display: none;
  background-color: #82ba72;
  color: white;
  position: absolute;
  right: 16px;
  border-radius: 1em 0em 1em 1em;
  overflow: hidden;
  z-index: 1;
}
.hamburger-menu-links a {
  display: block;
  padding: 15px;
  color: white;
  text-decoration: none;
  padding: 0.75em 3em;
  font-size: 18px;
}
.hamburger-menu-links a:hover {
  background-color: #58a475;
}

.hamburger-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}

.hamburger-button.opened + .hamburger-menu-overlay {
  display: block;
  pointer-events: auto;
  opacity: 1;
}

.back-to-top-button {
  position: fixed;
  display: flex;
  padding: 0.75em;
  right: 1em;
  bottom: 1em;
  background-color: #82ba72;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 1;
  z-index: 999;
}

/* .back-to-top-button:hover {
  background-color: #507c5c;
} */

.back-to-top-button.hide {
  display: inherit;
  opacity: 0;
}

.hide {
  display: none;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 3em;
  margin-top: -4em;
  /* padding: 5em; */
  /* padding-top: 7em; */
  width: 100%;
  /* background: url("/static/img/hero_bg.png"); */
  background: linear-gradient(
    90deg,
    #82ba72,
    #58a475,
    #348d67,
    #2a795b,
    #297055
  );
}

.hero-container {
  display: flex;
  width: 100%;
  max-width: 1180px;
  position: relative;
  padding: 3em;
  padding-top: 7em;
  overflow: hidden;
}

.hero_description {
  width: 55%;
  /* background: vbb;
  border-radius: 4em 12em 12em 4em;
  padding: 1em; */
}

.hero_description h1 {
  font-size: 40px;
  color: #ffffff;
}
.hero_description p,
.hero_description b {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.55em;
}

.hero_image {
  width: 45%;
  user-select: none;
}

.hero_image img {
  width: 440px;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1180px;
  margin: 3em auto;
  padding: 0 1em;
  position: relative;
  align-items: center;
  justify-content: center;
}

.container a {
  color: #fff;
}

.full-width {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 2em 0.5em;
}

.path-action {
  color: #ffffff;
  background-color: #668284;
  /* margin: 1em 0; */
  background: -webkit-linear-gradient(
    90deg,
    #82ba72,
    #58a475,
    #348d67,
    #2a795b,
    #297055
  );
  background: linear-gradient(
    90deg,
    #82ba72,
    #58a475,
    #348d67,
    #2a795b,
    #297055
  );
}

.path-action * {
  font-size: 26px;
}

.text-center {
  text-align: center;
}

.office-card {
  width: 100%;
  border-radius: 1em;
  background: linear-gradient(
    90deg,
    #82ba72,
    #58a475,
    #348d67,
    #2a795b,
    #297055
  );
  color: #ffffff;
  padding: 0.5em;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 1em;
}

.office-map_iframe {
  border-radius: 14px;
}

.office-info {
  padding: 0.5em;
}

.office-info h1 {
  color: #ffffff;
}

.office-info p {
  font-size: 20px;
}
.office-info b {
  font-size: 22px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
  /* padding: 20px; */
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2); */
}
.cards:hover .card:after {
  opacity: 1;
}
.cards .card {
  background-color: #4f93ce;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(33.333% - 20px);
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 16px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}
@media screen and (max-width: 767px) {
  .cards .card {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 520px) {
  .cards .card {
    width: calc(100% - 20px);
  }
}
.cards .card:hover:before {
  opacity: 1;
}
.cards .card:before,
.cards .card:after {
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  transition: opacity 500ms;
  width: 100%;
}
.cards .card:before {
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(191, 226, 255, 0.4),
    transparent 40%
  );
  z-index: 3;
}
.cards .card:after {
  background: radial-gradient(
    500px circle at var(--mouse-x) var(--mouse-y),
    rgba(191, 226, 255, 0.9),
    transparent 40%
  );
  z-index: 1;
}
.cards .card .card-content {
  background-color: #337ab7;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 78px 16px 16px;
  z-index: 2;
  height: 100%;
  line-height: 1.2;
  margin: 2px;
}
.cards .card .card-image {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.cards .card .card-image i {
  font-size: 64px;
  color: #16354f;
}
.cards .card .card-image img {
  height: 64px;
}
.cards .card .card-image svg {
  height: 64px;
  fill: #16354f;
}
.cards .card .card-title {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  padding: 10px 0;
  color: #bfe2ff;
  text-transform: uppercase;
  font-weight: 600;
}
.cards .card .card-text,
.cards .card .card-text p {
  font-size: 15px;
  font-family: Verdana, sans-serif;
  color: #ffffff;
  margin: 0;
}
.cards .card .card-text p:not(:last-child) {
  margin-bottom: 10px;
}

.timeline *,
.timeline *:before,
.timeline *:after {
  box-sizing: border-box;
}
.timeline .timeline-item:after,
.timeline .timeline-item:before {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.timeline {
  max-width: 1200px;
  width: 100%;
  margin: 30px auto;
  position: relative;
  padding: 0 10px;
  transition: all 0.4s ease;
}
.timeline:before {
  content: "";
  width: 3px;
  height: 99%;
  background: #036564;
  left: 49.75%;
  top: 0;
  position: absolute;
}
.timeline:after {
  content: "";
  clear: both;
  display: table;
  width: 100%;
}
.timeline .timeline-item {
  margin-bottom: 30px;
  position: relative;
}
.timeline .timeline-item:last-child {
  height: 100%;
  margin-bottom: 0;
}
.timeline .timeline-item .timeline-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #036564;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  line-height: 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 49.75%;
  overflow: hidden;
  margin-left: -23px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.timeline-item:hover .timeline-icon {
  transform: scale(1.2);
}
.timeline .timeline-item .timeline-icon i {
  line-height: 50px;
}
.timeline .timeline-item .timeline-content {
  width: 45%;
  background: #036564;
  color: #ffffff;
  padding: 6px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.timeline-item:hover .timeline-content {
  box-shadow: 7px 7px 7px 2px #ccc;
}
.timeline .timeline-item .timeline-content h4 {
  padding: 10px 20px;
  background: #036564;
  /* color: #ffffff; */
  /* margin: -20px -20px 10px -20px; */
  margin: 0;
  font-weight: 300;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
}
.timeline .timeline-item .timeline-content a {
  font-size: 18px;
  text-decoration: underline;
}
.timeline .timeline-item .timeline-content:before {
  content: "";
  position: absolute;
  left: 45%;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #036564;
}
.timeline .timeline-item:nth-child(even) .timeline-content {
  float: right;
}
.timeline .timeline-item:nth-child(even) .timeline-content:before {
  content: "";
  right: 45%;
  left: inherit;
  border-left: 0;
  border-right: 7px solid #036564;
}

@media screen and (max-width: 768px) {
  .timeline {
    margin: 28px;
    padding: 0px;
    width: 85%;
  }
  .timeline:before {
    left: 0;
  }
  .timeline .timeline-item .timeline-content {
    width: 80%;
    float: right;
    padding: 0;
  }
  .timeline .timeline-item .timeline-content:before,
  .timeline .timeline-item:nth-child(even) .timeline-content:before {
    left: 20%;
    margin-left: -6px;
    border-left: 0;
    border-right: 7px solid #036564;
  }
  .timeline .timeline-item .timeline-icon {
    left: 0;
  }
}

.tiles-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3em;
  padding: 0;
  list-style: none;
  text-align: center;
}
.tiles-wrapper li {
  display: flex;
  flex-direction: column;
  flex-basis: 530px;
  padding: 60px 20px 40px;
  position: relative;
  vertical-align: top;
  text-align: left;
}

.tiles-wrapper li .tile-content {
  z-index: 2;
}

.tiles-wrapper li h2 {
  font-size: 114px;
  margin: 0;
  position: absolute;
  opacity: 0.2;
  top: 20px;
  right: 10px;
  transition: all 0.3s ease-in-out;
}
.tiles-wrapper li h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
  max-width: 50%;
}
.tiles-wrapper li p {
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  margin-top: 60px;
}

.tiles-wrapper li:hover h2 {
  top: 15px;
  opacity: 0.6;
}

.tiles-wrapper li:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: 0;
  background: #ffffff;
  transform: skew(1deg, 1deg);
  border-radius: 1em;
  background: #036564;
}
.tiles-wrapper li:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 120%;
  left: -10px;
  top: -10px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.05);
}
.tiles-wrapper li:nth-child(1):before {
  /* background: #036564; */
}
.tiles-wrapper li:nth-child(2):before {
  /* background: #036564; */
}

.tiles-wrapper li:nth-child(even):before {
  transform: skew(-1deg, -1deg);
}

.get-order-button {
  position: relative;
  display: block;
  color: #034f4e;
  background: #ffffff;
  /* border: 2px solid #034f4e; */
  border-radius: 10px;
  overflow: hidden;
  /* margin: 10px; */
  border: none;
  padding: 0 60px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 2.5em;
  box-shadow: inset 0 0 10px 0px rgb(46, 182, 125);
  transition: all 0.3s ease;
}

.get-order-button:hover {
  color: #ffffff;
  background: linear-gradient(236deg, rgb(46, 182, 125), rgb(37, 160, 101));
}

/* .get-order-button p { */
  /* position: relative; */
  /* z-index: 5; */
  /* transition: color 0.6s; */
  /* font-size: 20px; */
  /* line-height: 50px;	 */
/* } */

/* .get-order-button span {
  border-radius: 100%;
  position: absolute;
  display: block;
  content: "";
  z-index: 0;
  width: 0;
  height: 0;
  background: #82ba72;
  transform: translate(-50%, -50%);
  transition: width 0.6s, padding-top 0.6s;
}
.get-order-button:hover span {
  width: 250%;
  padding-top: 250%;
} */

.overlay-image {
  position: absolute;
  top: 4px;
  right: 5px;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

.overlay-image img {
  width: 120px;
  height: 120px;
}

.form {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-header {
  position: relative;
  z-index: 2;
}

.form-body {
  position: relative;
  z-index: 2;
}

.form-horizontal h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #036564;
}

.form-horizontal p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #6b7280;
}

.form_message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  color: #507c5c;
}
.form_message .text {
  overflow: auto;
  max-height: 250px;
}

.form_message .close {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  padding: 0 1em;
}

.form_message .close::after {
  display: inline-block;
  content: "\00d7";
  font-size: 56px;
}

.form_message .close:hover::after {
  color: #82ba72;
}

.form-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  display: flex;
  width: 100%;
  padding: 12px;
  border: 1px solid #036564;
  border-radius: 6px;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: inset 0 0 3px #036564;
}

.input-group {
  display: flex;
  flex-direction: column;
  flex-basis: 260px;
  gap: 0.25em;
}

textarea {
  height: 100px;
  resize: none;
}

.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4b5563;
}

.checkbox-group input {
  margin-right: 10px;
}

.checkbox-group a {
  color: #82ba72;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.button-primary {
  padding: 12px 20px;
  background-color: #036564;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.button-primary:hover {
  background-color: #059669;
}

button * {
  user-select: none;
}

.error-message {
  font-size: 14px;
  color: #ed143d;
}

.cards {
  gap: 1em;
}

.glare-card {
  border: none;
  border-radius: 20px;
  padding: 5px 20px;
  background: #036564;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 350px;
  font-size: 20px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s linear;
  height: 142px;
}

.glare-card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -90%;
  transition: left 0.3s linear;
  filter: blur(50px);
}

/* .glare-card:hover {
  transform: scale(1.015);
} */

.glare-card:hover:before {
  animation: shine 0.5s linear forwards;
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-title {
  margin: 1em;
  text-transform: uppercase;
  font-weight: bold;
}

.card-image svg {
  width: 128px;
  position: absolute;
  z-index: 1;
  opacity: 0.15;
  right: -1em;
  border: 0;
  bottom: -1em;
  filter: blur(4px);
  transition: all 0.3s ease;
}

.glare-card:hover .card-image svg {
  opacity: 0.25;
  filter: blur(1px);
}

@keyframes shine {
  0% {
    left: -100px;
  }
  100% {
    left: 100%;
  }
}

.tabs-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
}

.tab-link {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  border-radius: 6px;
  padding: 1em 2em;
  gap: 0.5em;
  cursor: pointer;
  background-color: #507c5c;
  color: #ffffff;
  width: 320px;
}

.tab-link:not(.active):hover {
  background-color: #58a475;
}

.tab-link.active {
  background-color: #82ba72;
  cursor: default;
  /* font-weight: bold; */
}

.tab-content {
  display: none;
  opacity: 0;
  flex-direction: column;
  transition: opacity 2s ease;
}
.tab-content.active {
  opacity: 1;
  display: flex;
}

.check-list {
  display: flex;
  gap: 1em;
  flex-direction: column;
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 1.25em 1em;
  position: relative;
  padding-left: 1.5em;
  border-bottom: 2px dashed #82ba72;
  margin-bottom: 1em;
  font-size: 18px;
}
.check-list li:nth-child(even) {
  border-bottom: 2px dashed #507c5c;
}
.check-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  top: 12px;
  width: 12px;
  height: 20px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #82ba72;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.check-list li:nth-child(even)::before {
  border-color: #507c5c;
}

.color-list {
  display: flex;
  gap: 1em;
  flex-direction: column;
  list-style: none;
  padding: 0;
}

.color-list li {
  padding: 0.5em 1em;
  border-radius: 4px;
  border-left: 4px solid #82ba72;
  border-right: 4px solid #82ba72;
  transform: skew(-5deg);
  font-size: 18px;
}

.color-list li:nth-child(even) {
  border-left: 4px solid #507c5c;
  border-right: 4px solid #507c5c;
}

.wrapper {
  position: relative;
  height: 485px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 2em;
  margin-bottom: 2em;
}
.wrapper .content {
  height: 100%;
  width: 100%;
  position: relative;
  color: #ffffff;
}
.wrapper .content .content-1,
.wrapper .content .content-2 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 0.5em;
}
.wrapper .content .content-1 {
  clip-path: inset(0 50% 0 0);
  /* background: url("/static/img/2red.png"); */
  background: linear-gradient(
    90deg,
    rgba(212, 19, 36, 0.75),
    rgba(255, 107, 107, 0.75)
  );
}
.wrapper .content .content-2 {
  clip-path: inset(0 0 0 50%);
  text-align: right;
  float: right;
  /* background: url("/static/img/2green.png"); */
  background: linear-gradient(
    90deg,
    rgba(46, 182, 125, 0.75),
    rgba(37, 160, 101, 0.75)
  );
}
.wrapper .content .content-block {
  height: 100%;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
}
.wrapper .content .content-block img,
.wrapper .content .content-block svg {
  width: 100%;
  height: auto;
  object-fit: contain;
  height: 7rem !important;
}
.content_img {
  width: 300px;
  padding: 1em;
  border-radius: 4em;
  height: auto;
  display: flex;
  justify-content: center;
}

.wrapper .content-1 .content-block .content_img {
  background: radial-gradient(#dc143c90, transparent);
  opacity: 0.75;
}
.wrapper .content-2 .content-block .content_img {
  background: radial-gradient(#37213f50, transparent);
  align-self: end;
  filter: invert(1);
}

.wrapper .content .content-block h2 {
  color: #fff;
  font-size: 2em;
  font-style: italic;
}

.wrapper .slider {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}
.wrapper .slider input {
  width: 100%;
  outline: none;
  background: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.slider input::-webkit-slider-thumb {
  height: 486px;
  width: 3px;
  background: none;
  -webkit-appearance: none;
  cursor: col-resize;
}
.slider .drag-line {
  width: 1px;
  height: 486px;
  position: absolute;
  /* left: 49.85%; */
  left: 50%;
  pointer-events: none;
  box-shadow: 0 0 20px 0px #000000ca;
}
.slider .drag-line::before,
.slider .drag-line::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 222px;
  background: #ffffff;
}
.slider .drag-line::before {
  top: 0;
}
.slider .drag-line::after {
  bottom: 0;
}
.slider .drag-line span {
  height: 42px;
  width: 42px;
  /* background: #82ba7290; */
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.slider .drag-line span::before,
.slider .drag-line span::after {
  position: absolute;
  content: "";
  top: 50%;
  border: 12px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.slider .drag-line span::before {
  left: 40%;
  border-left-color: #ffffff;
}
.slider .drag-line span::after {
  left: 60%;
  border-top-color: #ffffff;
}

.compare-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 1.25em;
  padding: 0;
}

.compare-list li {
  font-size: 22px;
  font-weight: bold;
}

.compare-list li::before {
  content: "";
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  padding: 0.25em 0.825em;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 0.5em;
}

.compare-list.green li::before {
  content: "\2713";
  background: #82ba72;
}
.compare-list.red li::before {
  content: "\2716";
  background: #dc143c;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  position: relative;
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #f9f9f9;
}

th,
td {
  padding: 14px 10px;
  text-align: center;
  /* white-space: nowrap; */
  width: 270px;
  min-width: 270px;
  font-weight: 900;
  color: #297055;
}

th:first-child,
td:first-child {
  width: 140px;
  min-width: 140px;
}

thead th:first-child {
  position: sticky;
  left: 0;
  background-color: #f0f0f0;
  /* box-shadow: inset -1px 0 0px 0px #ccc; */
  text-align: left;
  z-index: 3;
  min-width: 200px;
  max-width: 220px;
  width: 220px;
}

thead th {
  position: sticky;
  top: 0;
  background-color: #f0f0f0;
  z-index: 2;
  font-weight: 900;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

tbody td:first-child {
  position: sticky;
  left: 0;
  background-color: #ffffff;
  /* box-shadow: inset -1px 0 0px 0px #ccc; */
  text-align: left;
  z-index: 1;
}

thead th:nth-child(1),
tbody td:nth-child(1) {
  /* position: relative; */
  background-color: #f9f9f9;
  min-width: 140px;
  word-break: break-word;
}

thead th:nth-child(2),
tbody td:nth-child(2) {
  background-color: gray;
  /* background: linear-gradient(45deg, #6B6ECC 0%, #89BFDF 100%); */
  /* background: -webkit-linear-gradient(45deg, #6B6ECC 0%, #89BFDF 100%); */
  background-color: #6b6ecc;
  color: #ffffff;
}
tbody td:nth-child(2) button {
  color: #6b6ecc;
  background-color: #ffffff;
  box-shadow: inset 0px 0px 4px 4px #6b6ecc !important;
}
tbody td:nth-child(2) button span {
  background-color: #6b6ecc;
}

thead th:nth-child(3),
tbody td:nth-child(3) {
  /* background: linear-gradient(45deg, #81B77B 0%, #A3E3C3 100%); */
  /* background: -webkit-linear-gradient(45deg, #81B77B 0%, #A3E3C3 100%); */
  background-color: #82ba72;
  color: #ffffff;
}
thead th:nth-child(4),
tbody td:nth-child(4) {
  /* background: linear-gradient(45deg, #c96881 0%, #f7b695 100%); */
  /* background: -webkit-linear-gradient(45deg, #c96881 0%, #f7b695 100%); */
  background-color: #c96881;
  color: #ffffff;
}
tbody td:nth-child(4) button {
  color: #c96881;
  background-color: #ffffff;
  box-shadow: inset 0px 0px 4px 4px #c96881 !important;
}
tbody td:nth-child(4) button span {
  background-color: #c96881;
}

/* thead tr:first-child th, */
tbody tr:last-child td {
  background: #f9f9f9;
}

thead tr:nth-child(1) th:nth-child(2) {
  border-radius: 1em 0em 0em 0em;
}

tbody tr:nth-last-child(2) td:not(:first-child) {
  border-radius: 0em 0em 1em 1em;
}

.tariff_check::before {
  content: "\2713";
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  padding: 0.4em 1em;
  border: 3px solid #ffffff;
  /* padding-left: 3px; */
  font-size: 12px;
  border-radius: 50%;
  margin-right: 0.5em;
}

.tariff_price {
  font-size: 2em;
}

.tariff_price span {
  font-size: 0.75em;
}

.hover-cards-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3em;
  padding: 1em 0;
  list-style: none;
  /* text-align: center; */
}

.hover-card {
  display: flex;
  flex-direction: column;
  flex-basis: 465px;
  overflow: hidden;
  border-radius: 0.5em;
  text-decoration: none;
  background: white;
  /* padding: 2.75em 2.5em; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.45s ease, background 0.45s ease;
  position: relative;
}

.hover-card h3 {
  /* color: #507c5c; */
  font-size: 2em;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 0.5em;
  margin: 0 0 0.142857143em;
  border-bottom: 2px solid #82ba72;
  transition: color 0.45s ease, border 0.45s ease;
}

.hover-card h4 {
  /* color: #507c5c; */
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0 0 1.777777778em;
  transition: color 0.45s ease;
}

.hover-card p {
  opacity: 0;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 0 1.25em;
  transform: translateY(-1em);
  transition: opacity 0.45s ease, transform 0.5s ease;
}

.hover-card .hover-card-icon {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
  right: 0.25em;
  bottom: 0.25em;
  transition: all 0.45s ease;
}

.hover-card .hover-card-icon img,
.hover-card .hover-card-icon svg {
  width: 200px !important;
  height: 200px !important;
}

.hover-card-text {
  position: relative;
  z-index: 2;
  padding: 2em 1em;
  transition: all 0.3s ease;
  height: 100%;
}

.hover-card:hover .hover-card-text {
  border-radius: 1em;
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.6);
}

.hover-card:hover {
  background: #507c5c;
  transform: scale(1.02);
}

.hover-card:hover h3 {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.hover-card:hover h4 {
  color: #ffffff;
}

.hover-card:hover p {
  opacity: 1;
  transform: none;
}

.hover-card:hover .hover-card-icon {
  opacity: 0.15;
}

.page_not_found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page_not_found p {
  font-size: 2em;
  padding: 0.25em;
  text-align: center;
  font-weight: bold;
}

.page_not_found h1 {
  font-size: 16em;
  margin: 0;
  font-weight: bold;
  /* letter-spacing: 10px;
  text-align: center;
  /* color: #507c5c; */
  /* text-shadow: 15px 15px 10px #00000054; */
  /* -webkit-text-stroke: 16px #507c5c; */
  /* text-stroke: 16px #507c5c; */
  /* margin-left: 10px;  */
  /* font-size: 72px; */
  background: -webkit-linear-gradient(
    90deg,
    #82ba72,
    #58a475,
    #348d67,
    #2a795b,
    #297055
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    90deg,
    #82ba72,
    #58a475,
    #348d67,
    #2a795b,
    #297055
  );
  background-clip: text;
}

/* 
.flashing-shadow {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(130, 186, 114, 0.565);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: blink 5s infinite;
}

.flashing-shadow::after {
  content: "";
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(130, 186, 114, 0.565);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes blink {
  0%, 100% {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(130, 186, 114, 0.565);
  }
  50% {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 5px 30px rgba(130, 186, 114, 0.8);
  }
} */

/* .anim-border {
  display: flex;
  position: relative;
  z-index: 0;
  border-radius: 1em;
  overflow: hidden;
}

.anim-border::before {
  display: flex;
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #82ba72;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image:
    linear-gradient(#82ba72, #f8fafc),
    linear-gradient(#f8fafc, #f8fafc),
    linear-gradient(#f8fafc, #82ba72),
    linear-gradient(#f8fafc, #f8fafc);
  animation: rotate 15s linear infinite;
}

.anim-border::after {
  display: flex;
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #f8fafc;
  border-radius: 14px;
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
} */

#saas {
  background-image: url("/static/img/saas.png");
}
#on_premise {
  background-image: url("/static/img/on_premise.png");
}

#advantages {
  background-image: url("/static/img/cards-bd.jpg");
  background-repeat: no-repeat;
  background-position: center;
}

#for-whom-and-start-work {
  background-image: url("/static/img/sec-1_opacity-100.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#what-will-you-get,
#tariffs,
#contacts {
  background-image: url("/static/img/sec-2_opacity-100.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


@media (max-width: 767px) {

  .container {
    margin: 1.5em 0;
  }

  .hero-container {
    padding: 1.5em;
    padding-top: 3em;
  }

  .hero_description p, .hero_description b {
    font-size: 16px;
    line-height: 1.25em;
  }

  .main-header_menu,
  .main-header_actions {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .hero_description {
    width: 100%;
    z-index: 1;
  }

  .hero_image {
    position: absolute;
    z-index: 0;
    filter: blur(20px) brightness(45%);
    top: 0;
    right: 0;
    width: 100%;
  }

  .hero_image img {
    width: 100%;
  }

  .glare-card {
    width: 100%;
  }

  .hover-card {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
  
  .wrapper .content .content-block {
    padding: 0px;
    display: flex;
    justify-content: center;
  }

  .wrapper .content .content-block .content_img {
    display: none;
  }

  .compare-list {
    gap: 1em;
  }

  .compare-list li {
    font-size: 18px;
  }

  .form {
    padding: 10px;
  }

  .input-group {
    flex-basis: 100%;
  }

  .button-primary {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  
  .hero-container {
    padding: 3em;
    padding-top: 4em;
  }

  .hero_description {
    width: 100%;
    z-index: 1;
  }

  .hero_image {
    position: absolute;
    z-index: 0;
    filter: blur(20px) brightness(65%);
    top: 0;
    right: 0;
    width: 60%;
  }

  .tiles-wrapper li {
    flex-basis: 100%;
  }

  .hero_image img {
    width: 100%;
  }

  .wrapper .content .content-block img,
  .wrapper .content .content-block svg {
    height: 5rem !important;
  }

  .input-group {
    flex-basis: calc(33% - 11.5px);
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  /* стили для md-устройств */

  .tiles-wrapper li {
    flex-basis: 440px;
  }
}

@media (min-width: 1200px) {
  /* стили для lg-устройств */
}
