@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Cormorant:300,regular,500,600,700,300italic,italic,500italic,600italic,700italic);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@font-face {
  font-family: "Gilroy-Bold";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Inter";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Inter";
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  background: #eeece0;
  color: #244321;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
body._lock {
  overflow: hidden;
}
@media (max-width: 998px) {
  body {
    font-size: 14px;
  }
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 20px;
}
@media (max-width: 998px) {
  ._container {
    padding: 0px 15px;
  }
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
  color: #858FA4;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: right;
  color: #858FA4;
}
.select__value span {
  padding-right: 10px;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 6px;
  height: 6px;
  background: url("../img/arrow.png") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

.swiper {
  overflow: hidden;
}
.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
.swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 10;
}
.header__container {
  padding-top: 20px;
}
@media (max-width: 998px) {
  .header__container {
    padding-top: 15px;
  }
}
.header__block {
  border-radius: 5px;
  padding: 10px;
  background: #f7f5eb;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.header__block a {
  color: inherit;
}
.header__block a:hover {
  text-decoration: underline;
}
.header__logo {
  width: 88px;
  min-width: 88px;
  position: relative;
  z-index: 2;
}
.header__logo img {
  width: 100%;
}
.header__links ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.header__links ul a {
  display: block;
  padding: 10px;
}
@media (max-width: 998px) {
  .header__links {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #eeece0;
    padding: 10px;
    padding-top: 95px;
    transition: 0.3s;
    transform: translate(0px, -100%);
  }
  .header__links._active {
    transform: translate(0);
  }
  .header__links ul {
    flex-direction: column;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 998px) {
  .header__burger {
    display: block;
    position: relative;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }
  .header__burger span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #244321;
  }
  .header__burger span:first-child {
    top: 0px;
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 0px;
  }
  .header__burger._active span {
    transform: scale(0);
  }
  .header__burger._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .header__burger._active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

.page {
  flex: 1 1 auto;
}

.inp__wp._error span {
  display: block;
}
.inp__wp span {
  display: none;
}

._resp {
  overflow: hidden;
  transition: 0.3s;
}

._title {
  font-size: clamp(40px, 5.2vw, 75px);
  font-family: Cormorant;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.03em;
}
._title._center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 998px) {
  ._title {
    line-height: 0.91;
  }
}

._subtitle {
  margin-top: 40px;
}
@media (max-width: 998px) {
  ._subtitle {
    margin-top: 20px;
  }
}
._subtitle._center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

._btn {
  padding: 16px 22px;
  background: #9cae20;
  color: #fff;
  transition: 0.3s;
  font-size: 18px;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  max-width: max-content;
  line-height: 1;
}
._btn:hover {
  background: #9bae20c4;
}
._btn._v2 {
  background: #244321;
}
._btn._v2:hover {
  background: #244321b1;
}

._m-t {
  margin-top: clamp(100px, 12vw, 170px);
}

._block-top {
  margin-top: clamp(40px, 4vw, 60px);
}

._head {
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.1;
}

._arr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
._arr__itm {
  width: 50px;
}
@media (max-width: 998px) {
  ._arr__itm {
    width: 40px;
  }
}
._arr__itm img {
  width: 100%;
  transition: 0.3s;
}
._arr__itm:hover img {
  transform: scale(1.1);
}
._arr__itm_r {
  transform: rotate(180deg);
}

.home__contaoner {
  padding-top: 150px;
}
@media (max-width: 998px) {
  .home__contaoner {
    padding-top: 130px;
  }
}
.home__top {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 40px;
  align-items: flex-end;
}
@media (max-width: 998px) {
  .home__top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .home__title {
    font-size: 48px;
  }
}
.home__btns {
  display: flex;
  gap: 10px;
}
@media (max-width: 998px) {
  .home__btns {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
  .home__btns a {
    max-width: 100%;
  }
}
.home__body {
  margin-top: 50px;
  position: relative;
}
.home__body::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  width: 100vw;
  height: 100%;
  background: linear-gradient(180deg, #eeece0 0%, #9cae20 280%);
  border-radius: 15px;
  top: 0;
  z-index: -1;
}
.home__wp {
  overflow: hidden;
  border-radius: 15px;
  background-image: url(../img/home2.png);
  background-size: cover;
  min-height: 435px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fcfbf1;
  gap: 20px;
}
@media (max-width: 700px) {
  .home__wp {
    padding: 20px;
    gap: 15px;
    background-image: url(../img/home3.png);
  }
}
.home__wp h3 {
  font-weight: 700;
  margin-bottom: 10px;
}
.home__wp p {
  max-width: 633px;
}
.home__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 80px;
  padding-bottom: 44px;
}
@media (max-width: 750px) {
  .home__block {
    gap: 60px;
    margin-top: 40px;
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
}
.home__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 700px) {
  .home__item {
    gap: 16px;
  }
}
.home__icon {
  border-bottom: 1px solid #244321;
  padding-bottom: 20px;
}
.home__icon img {
  height: 50px;
}
@media (max-width: 700px) {
  .home__icon img {
    height: 40px;
  }
}
@media (max-width: 700px) {
  .home__icon {
    padding-bottom: 16px;
  }
}
.home__text {
  opacity: 0.7;
}

.why__subtitle {
  max-width: 626px;
}
.why__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 998px) {
  .why__block {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .why__block {
    display: flex;
    flex-direction: column;
  }
}
.why__item {
  border: 1px solid #c5c2af;
  border-radius: 10px;
  padding: 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (max-width: 1300px) {
  .why__item {
    min-height: 260px;
  }
}
@media (max-width: 998px) {
  .why__item {
    order: 2;
    min-height: auto;
  }
}
.why__item_1 {
  grid-row: auto/span 2;
  background: linear-gradient(180deg, #eeece0 20%, #9cae20 130%);
}
@media (max-width: 998px) {
  .why__item_1 {
    order: 1;
  }
}
.why__item_3 {
  background-image: url(../img/bgw3.png);
  background-size: cover;
  color: #fff;
  grid-column: auto/span 2;
}
@media (max-width: 600px) {
  .why__item_3 {
    min-height: 320px;
    background-image: url(../img/bgw3m.png);
  }
}
.why__item_3 .why__text {
  max-width: 320px;
}
@media (max-width: 998px) and (min-width: 600px) {
  .why__item_4 {
    order: 1;
  }
}
.why__item_5 {
  background: linear-gradient(180deg, #eeece0 20%, #9cae20 130%);
}
@media (max-width: 600px) {
  .why__item_5 {
    min-height: 240px;
  }
}
.why__bg {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  margin-top: auto;
  width: calc(100% + 40px);
  bottom: -20px;
  z-index: -1;
}
.why__bg img {
  width: 100%;
}
.why__bg img:nth-child(2) {
  display: none;
}
@media (max-width: 998px) {
  .why__bg img {
    margin-top: -5%;
  }
  .why__bg img:nth-child(1) {
    display: none;
  }
  .why__bg img:nth-child(2) {
    display: block;
  }
}
.why__text {
  margin-top: 20px;
  opacity: 0.9;
  font-size: 14px;
}

.items-wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 10px;
  width: 100vw;
  left: 50%;
  transform: translate(-50%);
}

.items {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  counter-reset: item;
  justify-content: space-around;
  min-width: 100%;
}

.item {
  padding: 20px;
  display: grid;
  grid-template-columns: 40px max-content;
  max-width: max-content;
  transition: all 0.1s ease-in-out;
  gap: 20px;
  width: 100%;
  flex: 1 1 auto;
  align-items: center;
  background: #fcfbf1;
  border-radius: 10px;
  font-size: clamp(14px, 1.7vw, 22px);
  line-height: 1.1;
}
@media (max-width: 998px) {
  .item {
    padding: 16px;
    gap: 16px;
    grid-template-columns: 32px max-content;
  }
}
.item b {
  font-weight: 600;
}
.item img {
  width: 100%;
}

.marquee {
  animation: scroll 20s linear infinite;
}

.reverce {
  animation-direction: reverse;
}

.items-wrap:hover .marquee {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}
.solutions__subtitle {
  max-width: 583px;
}
.global-merkets {
  position: relative;
  z-index: 3;
}
@media (max-width: 500px) {
  .global-merkets__title {
    max-width: 250px;
  }
}
.global-merkets__wp {
  position: relative;
}
.global-merkets__arr {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media (max-width: 998px) {
  .global-merkets__arr {
    width: calc(100% + 20px);
  }
}
.global-merkets__swiper {
  overflow: visible;
  max-width: 930px;
  width: 97%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 998px) {
  .global-merkets__swiper .swiper-wrapper {
    align-items: stretch !important;
  }
}
.global-merkets__slide {
  background: #ab9876;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: 0.93fr 1fr;
  gap: 20px;
  transition: 0.6s;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 700px) {
  .global-merkets__slide {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.global-merkets__slide.swiper-slide-active {
  grid-template-columns: 1.15fr 1fr;
}
.global-merkets__img img {
  width: 100%;
  aspect-ratio: 465/440;
  object-fit: cover;
}
.global-merkets__content {
  display: flex;
  flex-direction: column;
  color: #f6f4ea;
  gap: 20px;
}
@media (max-width: 700px) {
  .global-merkets__content {
    height: 100%;
    gap: 12px;
  }
}
.global-merkets__cif {
  font-weight: 500;
  font-size: 80px;
  border: 2px solid #f6f4ea48;
  border-radius: 5px;
  font-family: Cormorant;
  width: 86px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 0.7;
}
@media (max-width: 1200px) {
  .global-merkets__cif {
    width: 60px;
    font-size: 60px;
  }
}
@media (max-width: 500px) {
  .global-merkets__cif {
    width: 40px;
    font-size: 40px;
  }
}
.global-merkets__cif span {
  transform: translate(0px, -20%);
}
.global-merkets__head {
  margin-top: auto;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.1;
}
@media (max-width: 700px) {
  .global-merkets__head {
    padding-top: 8px;
  }
}
.global-merkets__text {
  opacity: 0.7;
  max-width: 327px;
}

.export {
  position: relative;
  z-index: -1;
  margin-top: -50px;
  margin-bottom: -50px;
}
@media (max-width: 998px) {
  .export {
    margin-top: 100px;
    margin-bottom: 0;
  }
}
@media (min-width: 998px) {
  .export + div {
    margin-top: 0;
  }
}
.export__container {
  position: relative;
  padding-top: clamp(100px, 20vw, 260px);
  padding-bottom: clamp(100px, 10vw, 140px);
}
@media (max-width: 998px) {
  .export__container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.export__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 998px) {
  .export__title {
    text-align: center;
  }
}
.export__subtitle {
  max-width: 415px;
}
@media (max-width: 998px) {
  .export__subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.export__block {
  position: relative;
  margin-top: 200px;
  padding: 15px;
  box-shadow: 3px 4px 15px 0 rgba(0, 0, 0, 0.1);
  background: #fffffb;
  border-radius: 5px;
  max-width: max-content;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #244321bf;
}
@media (max-width: 998px) {
  .export__block {
    margin-top: 20px;
    gap: 6px;
    font-size: 12px;
    padding: 10px;
    margin-bottom: -57px;
  }
}
.export__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
}
@media (max-width: 998px) {
  .export__item {
    grid-template-columns: 10px 1fr;
    gap: 5px;
  }
}
.export__item:nth-child(2) span {
  background: #9cae20;
}
.export__item span {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #244321;
}
.export__map {
  position: absolute;
  width: 155%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
  .export__map {
    transform: translate(-50%, -55%);
  }
}
@media (max-width: 998px) {
  .export__map {
    width: 100vw;
    position: relative;
    transform: translate(-50%, 0%);
    top: 0;
  }
}
.export__map img {
  width: 100%;
}
.export__map img:nth-child(2) {
  display: none;
}
@media (max-width: 998px) {
  .export__map img:nth-child(1) {
    display: none;
  }
  .export__map img:nth-child(2) {
    display: block;
  }
}

.building__block {
  padding: 20px;
  color: #eeece0;
  background-image: url(../img/bbg.png);
  background-size: cover;
  border-radius: 10px;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media (max-width: 998px) {
  .building__block {
    min-height: 500px;
  }
}
@media (max-width: 500px) {
  .building__block {
    background-position: 42%;
    min-height: auto;
  }
}
.building__title {
  max-width: 680px;
}
@media (max-width: 1300px) {
  .building__title {
    max-width: 550px;
  }
}
@media (max-width: 998px) {
  .building__title {
    max-width: 450px;
  }
}
.building__subtitle {
  max-width: 516px;
}
.building__wp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 700px) {
  .building__wp {
    grid-template-columns: 1fr 1fr;
  }
}
.building__item {
  background: #ab9876;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.building__item br {
  display: none;
}
@media (max-width: 500px) {
  .building__item {
    padding: 10px;
  }
  .building__item br {
    display: block;
  }
}
.building__item p {
  opacity: 0.9;
}

.global {
  z-index: 1;
  position: relative;
}
.global::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  background: linear-gradient(180deg, #eeece0 0%, #9cae20 300%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  border-radius: 15px;
}
@media (max-width: 700px) {
  .global::before {
    background: linear-gradient(180deg, #eeece0 0%, #9cae20 350%);
  }
}
.global__container {
  padding-bottom: 30px;
}
@media (max-width: 998px) {
  .global__container {
    padding-bottom: 0;
  }
}
.global__subtitle {
  max-width: 800px;
}
.global__block {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 30px;
}
@media (max-width: 1200px) {
  .global__block {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .global__block {
    gap: 0;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}
.global__item {
  padding: 0px 15px;
  position: relative;
}
@media (max-width: 700px) {
  .global__item {
    grid-template-columns: 110px 1fr;
    gap: 10px;
    display: grid;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #9cae20;
  }
  .global__item::before {
    display: none;
  }
}
.global__item::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 1px;
  height: calc(100% - 100px);
  background: #9cae20;
}
.global__item:first-child {
  padding-left: 0;
}
.global__item:last-child {
  padding-right: 0;
  border-bottom: none;
}
.global__item:last-child::before {
  display: none;
}
.global__item:nth-child(4)::before {
  display: none;
}
.global__item img {
  height: 80px;
}
.global__item h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .global__item h3 {
    margin-top: 0;
  }
}
.global__item p {
  opacity: 0.7;
}

.form-block__block {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  padding: 40px;
  color: #eeece0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 998px) {
  .form-block__block {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .form-block__block {
    padding: 20px;
  }
}
.form-block__bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.form-block__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.form-block__bg img:nth-child(2) {
  opacity: 0;
  z-index: 2;
}
@media (max-width: 500px) {
  .form-block__bg img:nth-child(2) {
    opacity: 1;
  }
}
.form-block__subtitle {
  max-width: 440px;
  opacity: 0.9;
}
.form-block._v2 .form-block__subtitle {
  max-width: 100%;
}
.form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-body__input._error input {
  border-color: red;
}
.form-body__input input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #fcfbf1;
  border-radius: 5px;
  padding: 16px 16px;
  font-size: 16px;
  color: #244321;
}
@media (max-width: 600px) {
  .form-body__input input {
    font-size: 14px;
    padding-right: 0;
  }
}
.form-body__input input::placeholder {
  color: #244321;
  font-size: 16px;
}
@media (max-width: 600px) {
  .form-body__input input::placeholder {
    font-size: 13.5px;
  }
}
.form-body__check {
  margin: 3px 0;
}
.form-body__check._error label::before {
  border-color: red !important;
}
.form-body__check input {
  display: none;
}
.form-body__check input:checked + label::before {
  background: #fff;
  background-image: url(../img/check.svg);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.form-body__check label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  display: block;
}
.form-body__check label::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  border: 2px solid #fff;
}
.form-body__check a {
  color: inherit;
  text-decoration: underline;
}
.form-body__check a:hover {
  text-decoration: none;
}
.begins__block {
  border-radius: 10px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: space-between;
  padding: 30px;
  color: #eeece0;
  background-image: url(../img/bgb.png);
  background-size: cover;
  overflow: hidden;
  background-position: center;
}
@media (max-width: 998px) {
  .begins__block {
    background-position: 70%;
    min-height: 500px;
  }
}
@media (max-width: 600px) {
  .begins__block {
    padding: 20px;
    gap: 20px;
    min-height: 600px;
    justify-content: start;
    background-position: 60%;
    position: relative;
    z-index: 2;
  }
  .begins__block::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.5;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
.begins__title {
  max-width: 720px;
}
@media (max-width: 1300px) {
  .begins__title {
    max-width: 600px;
  }
}
@media (max-width: 998px) {
  .begins__title {
    max-width: 400px;
  }
}
.begins__subtitle {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 610px;
}
@media (max-width: 1300px) {
  .begins__subtitle {
    max-width: 500px;
  }
}
@media (max-width: 1300px) {
  .begins__subtitle {
    max-width: 450px;
  }
}
.begins__wp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 998px) {
  .begins__wp {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .begins__wp {
    margin-top: 10px;
    grid-template-columns: 1fr;
  }
}
.begins__item {
  color: #eeece0;
  background: #ab9876;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .begins__item {
    gap: 16px;
  }
  .begins__item br {
    display: none;
  }
}
.begins__item p {
  opacity: 0.9;
}

.news__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 998px) {
  .news__button_1 {
    display: none;
  }
}
.news__button_2 {
  margin: 0px auto;
  margin-top: 30px;
}
@media (min-width: 998px) {
  .news__button_2 {
    display: none;
  }
}
.news__block:not(.swiper) .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 998px) {
  .news__block:not(.swiper) .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .news__block:not(.swiper) .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.news__slide {
  border-radius: 10px;
  overflow: hidden;
  background: #fcfbf1;
  color: inherit;
}
.news__img {
  width: 100%;
}
.news__img img {
  width: 100%;
  aspect-ratio: 338/260;
  object-fit: cover;
}
@media (max-width: 600px) {
  .news__img img {
    border-radius: 8px;
  }
}
.news__info {
  padding: 15px;
  padding-top: 20px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .news__info {
    padding: 15px 10px;
    gap: 10px;
    padding-top: 20px;
  }
}
.news__text {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .news__text {
    font-size: 12px;
  }
}
.news__btn {
  margin-top: auto;
  width: 100%;
  max-width: 100%;
}
._bottom {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 30px;
  align-items: center;
}
._bottom ._arr {
  cursor: pointer;
  transition: 0.3s;
}
._bottom ._arr.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
._bottom ._arr img {
  width: 11px;
  transition: 0.3s;
}
._bottom ._arr:hover img {
  transform: scale(1.1);
}
._bottom ._arr_l {
  transform: rotate(180deg);
}
._bottom ._count {
  display: flex;
}
._bottom ._count span {
  width: 30px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.3;
}
._bottom ._count span.swiper-pagination-bullet-active {
  opacity: 1;
}

.footer__container {
  padding-top: 20px;
}
.footer__block {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 80px;
  background: #fcfbf1;
  padding: 30px;
  padding-right: 60px;
  border-radius: 10px;
  font-size: 14px;
}
@media (max-width: 998px) {
  .footer__block {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 40px;
  }
}
.footer__block a {
  color: inherit;
}
.footer__block a:hover {
  text-decoration: underline;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer__logo {
  width: 155px;
}
@media (max-width: 998px) {
  .footer__logo {
    width: 133px;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__bottom {
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 380px;
}
.footer__bottom_2 {
  display: none;
}
@media (max-width: 998px) {
  .footer__bottom_2 {
    display: flex;
  }
  .footer__bottom_1 {
    display: none;
  }
}
.footer__bottom div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  row-gap: 12px;
}
.footer__right {
  display: flex;
  gap: 80px;
}
@media (max-width: 1300px) {
  .footer__right {
    gap: 60px;
  }
}
@media (max-width: 998px) {
  .footer__right {
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
  }
}
@media (max-width: 600px) {
  .footer__right {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__item {
  display: flex;
  flex-direction: column;
}
.footer__item span {
  opacity: 0.5;
  margin-bottom: 20px;
}
.footer__item ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup::before {
  background: rgba(13, 25, 12, 0.3);
}
.popup__body {
  background: #f7f5eb;
  border-radius: 10px;
  padding: 20px;
  max-width: 542px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup__close {
  background-image: url(../img/xx.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
}
.popup__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 0.9;
}
@media (max-width: 500px) {
  .popup__title {
    font-size: 24px;
  }
}
.popup__subtitle {
  opacity: 0.7;
}
.popup .form-body__check input:checked + label::before {
  background-color: #244321;
}
.popup .form-body__check label::before {
  border-color: #244321;
}
@media (max-width: 500px) {
  .popup form button {
    max-width: 100%;
    width: 100%;
  }
}

.popup_thanks .popup__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

@media (max-width: 998px) {
  .graphiks__title {
    text-align: center;
  }
}

.legend {
  display: flex;
}

.legend span {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #eeece0;
  padding: 6px 13px;
  border-radius: 5px;
  min-width: 150px;
}
@media (max-width: 700px) {
  .legend span {
    min-width: 88px;
    font-size: 12px;
  }
}

@media (max-width: 998px) {
  .graphiks__block {
    width: calc(100% + 20px);
    overflow: auto;
    padding-right: 20px;
  }
}

.grid-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #fcfbf1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
}
@media (max-width: 998px) {
  .grid-wrap {
    width: 1200px;
  }
}

.row {
  display: grid;
  grid-template-columns: 110px repeat(12, 1fr);
  align-items: center;
  border-top: 1px solid var(--border);
}

.row:first-child {
  border-top: none;
}

.row.header {
  background: transparent;
  font-size: 11px;
  color: var(--muted);
  padding: 8px 0;
}

.row.header .month {
  text-align: left;
  padding-left: 4px;
}

.label {
  font-size: 16px;
  padding: 5px 20px;
  line-height: 1.3;
  white-space: nowrap;
}

.track {
  position: relative;
  grid-column: 2/-1;
  height: 100%;
}
.track div {
  border-radius: 2px;
}

.row .month {
  border-left: 1px solid var(--border);
  height: 100%;
  text-align: center;
  padding: 10px 5px;
  position: relative;
}
.row .month::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 1000px;
  width: 1px;
  border-left: 1px solid rgba(36, 67, 33, 0.1);
}

.row:not(.header) .month {
  height: 40px;
}

.seg {
  position: absolute;
  top: 0px;
  height: 100%;
}

.card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 6px;
  padding: 28px 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.graphiks__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
@media (max-width: 998px) {
  .graphiks__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .graphiks__top a {
    margin-left: auto;
  }
}
.graphiks__top a {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #244321;
}
@media (max-width: 500px) {
  .graphiks__top a {
    font-size: 16px;
  }
}

@media (max-width: 998px) {
  .life-fob__top {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 25px;
    align-items: flex-end;
  }
}
.life-fob__arrows {
  display: none;
}
@media (max-width: 998px) {
  .life-fob__arrows {
    display: flex;
    gap: 10px;
  }
  .life-fob__arrows img {
    width: 40px;
  }
  .life-fob__arrows img:first-child {
    transform: rotate(180deg);
  }
}
.life-fob__head {
  text-align: center;
  margin-bottom: 15px;
  opacity: 0.9;
}
@media (max-width: 998px) {
  .life-fob__head {
    text-align: left;
    margin-bottom: 10px;
  }
}
@media (max-width: 998px) {
  .life-fob__title {
    text-align: left !important;
  }
}
.life-fob__subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
}
.life-fob__subtitle p {
  opacity: 0.5;
  margin-right: 5px;
}
.life-fob__subtitle > span {
  font-weight: 600;
}
.life-fob__subtitle div {
  position: relative;
  z-index: 2;
  width: 14px;
  height: 14px;
}
.life-fob__subtitle div:hover span {
  opacity: 1;
  pointer-events: all;
}
.life-fob__subtitle div span {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  position: absolute;
  top: -5px;
  transform: translate(-50%, -100%);
  z-index: 3;
  background: #ffffffd3;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  width: 200px;
  text-align: left;
}
.life-fob__subtitle div img {
  width: 14px;
  cursor: pointer;
}
@media (max-width: 998px) {
  .life-fob__subtitle {
    text-align: left;
    justify-content: start;
    margin-top: 20px;
  }
}
@media (max-width: 400px) {
  .life-fob__subtitle {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .life-fob__block {
    overflow: visible;
  }
}
.life-fob__slide {
  background: #fcfbf1;
  border-radius: 10px;
  overflow: hidden;
}
.life-fob__img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.life-fob__img span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 7px 15px;
  background: #eeece0;
  border-radius: 500px;
}
.life-fob__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
@media (max-width: 700px) {
  .life-fob__img img {
    height: 200px;
  }
}
.life-fob__content {
  padding: 15px;
  padding-top: 20px;
}
.life-fob__caracteristicks {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 15px;
  padding-bottom: 20px;
}
.life-fob__caracteristicks li {
  display: flex;
  gap: 5px;
}
.life-fob__price {
  margin-top: auto;
}
.life-fob__info {
  opacity: 0.5;
  font-size: 14px;
  margin-top: 5px;
}
.life-fob__btns {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}
.life-fob__btns a {
  padding-left: 5px;
  padding-right: 5px;
  font-size: 18px;
  width: 100%;
  max-width: 100%;
}
.life-fob__btns a:nth-child(2) {
  border: 1px solid #244321;
  background: transparent;
  color: #244321;
}
.life-fob__btns a:nth-child(2):hover {
  background: #244321;
  color: #fff;
}
@media (max-width: 1350px) {
  .life-fob__btns a {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .life-fob__btns a {
    font-size: 14px;
  }
}
@media (max-width: 998px) {
  .life-fob__bottom {
    display: none;
  }
}
.life-fob__button {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 998px) {
  .life-fob__button {
    margin-top: 40px;
  }
}