@charset "UTF-8";
@import "/components/Header/Header.css?v=768";
@import "/components/Footer/Footer.css?v=768";
@import "/components/ModalFeedBack/ModalFeedBack.css?v=768";
@import "/components/Navigation/Navigation.css?v=768";
@import "/plugins/modal/modal.css?v=768";
@import "/assets/css/form-fields.css?v=768";

:root {
  --green: #2B3F30;
  --green-lite: #9FB69D;
  --gold: #F7FACC;
  --gray: #E1E1E1;
  --black: #212321;
  --black2: #131D17;
  --container-xl: 1692px;
  --container-lg: 1364px;
}

*::-webkit-scrollbar {
  width: 6px;
  /* ширина scrollbar */
}

*::-webkit-scrollbar-track {
  background: transparent;
  /* цвет дорожки */
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  /* цвет плашки */
  border-radius: 20px;
  /* закругления плашки */
  border: 3px solid transparent;
  /* padding вокруг плашки */
}

* {
  scrollbar-width: auto;
  /* "auto" или "thin"  */
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
  /* плашка скролла и дорожка */
}

body {
  font-family: 'Montserrat', sans-serif;
  transition: background-color 600ms ease-in-out;
  overflow-x: hidden !important;
}

.no-scroll {
  overflow: hidden !important;
}

body.no-scroll {
  padding-right: var(--widthScrollBar);
}

.container-xl {
  width: 100%;
  max-width: calc(var(--container-xl) + 200px);
  margin: 0 auto;
  padding: 0 100px;
}

.container-lg {
  max-width: calc(var(--container-lg) + 200px);
  margin: auto;
  padding: 0 100px;
}

.container-vh {
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}

.box-ratio {
  position: relative;
  width: 100%;
}

.box-ratio:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.box-ratio .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--green-lite);
  height: 100%;
}

.box-ratio.ratio2_1:before {
  padding-top: 50%;
}

.box-ratio.ratio1_2:before {
  padding-top: 200%;
}

.box-ratio.ratio4_3:before {
  padding-top: 75%;
}

.box-ratio.ratio16_9:before {
  padding-top: 56.25%;
}

.flex {
  display: flex;
}

.flex .flex-v-star {
  align-items: flex-start;
}

.flex .flex-v-end {
  align-items: flex-end;
}

.flex .flex-v-center {
  align-items: center;
}

.flex .flex-g-center {
  justify-content: center;
}

.flex .flex-g-sp {
  justify-content: space-between;
}

.flex .flex-vg-center {
  align-items: center;
  justify-content: center;
}

.fixed-photo .fixed-plant {
  position: absolute;
  z-index: 1;
}

.btn {
  font-family: 'Montserrat', sans-serif !important;
  display: flex;
  justify-content: center;
  padding: 0;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  text-transform: none !important;
  box-shadow: none !important;
  line-height: normal !important;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  width: max-content;
  height: max-content;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.2s !important;
}

.btn.btn-primary {
  background-color: transparent;
  font-size: 16px;
  padding: 20px 30px;
  text-transform: uppercase !important;
  border: 1px solid #fff;
  letter-spacing: 0.2em;
  color: var(--green);
  font-weight: normal;
}

.btn.btn-primary:hover {
  padding-left: 40px;
  padding-right: 40px;
}

.text-heading-h2 {
  font-family: "Arian AMU Serif";
  font-weight: 400;
  font-size: 38px;
  line-height: 50px;
  text-align: center;
  color: #000000;
  margin: 0 auto 30px;
}

.back-img-center {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-full-height {
  min-height: 100vh;
}

.counter-heading {
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-heading .title {
  font-weight: 400;
  font-size: 16px;
  color: #BEBEBE;
}

.counter-heading .line {
  width: 1px;
  height: 50px;
  margin-top: 30px;
  background-color: #BEBEBE;
}

.quote-section .text-quote {
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 180%;
  text-align: center;
  padding: 0 25px;
  color: #626262;
}

.quote-section .text-quote i {
  position: absolute;
  font-size: 22px;
}

.quote-section .text-quote i.quote-start {
  top: 0;
  left: 0;
}

.quote-section .text-quote i.quote-end {
  bottom: 0;
  right: 0;
}

.quote-section .signature {
  font-family: "MADE TheArtist Script";
  font-size: 40px;
  margin-top: 50px;
  text-align: right;
}

.form-grid .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 40px;
}

.form-grid .item .title {
  font-size: 18px;
  color: var(--green);
  flex: 1;
  margin-right: 30px;
}

.form-grid .item input,
.form-grid .item textarea {
  color: #000;
}

.form-grid .item input:focus,
.form-grid .item textarea:focus {
  border-bottom: 1px solid var(--green-lite) !important;
  -webkit-box-shadow: 0 1px 0 0 var(--green-lite) !important;
  box-shadow: 0 1px 0 0 var(--green-lite) !important;
}

.form-grid .item input::placeholder,
.form-grid .item textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.form-grid .item textarea:focus:not([readonly]) + label {
  color: var(--green-lite) !important;
}

.form-grid .item .select-wrapper {
  flex: 1;
  max-width: 340px;
}

.form-grid .item .select-wrapper input {
  flex: 1;
  width: calc(100% - 20px);
  padding: 0 10px;
}

.form-grid .item .select-wrapper .caret {
  fill: rgba(255, 255, 255, 0.4);
}

.form-grid .item .input-elem {
  padding: 2px 10px;
  width: calc(100% - 20px);
  max-width: 320px;
  flex: 1;
}

.form-grid .item.error-valid input,
.form-grid .item.error-valid textarea {
  color: #B06363 !important;
  border-bottom-color: #B06363 !important;
}

.form-grid .item.error-valid input::placeholder,
.form-grid .item.error-valid textarea::placeholder {
  color: #B06363 !important;
}

.form-grid .privacy-policy {
  display: flex;
  font-size: 14px;
  color: var(--green);
  margin: 40px 0;
}

input,
select {
  font-family: 'Montserrat', sans-serif !important;
}

.dropdown-content li a,
.dropdown-content li span {
  color: var(--green);
}

.select-wrapper input.select-dropdown:focus {
  border-bottom: 1px solid var(--green-lite);
}

.select-wrapper .dropdown-content li.selected {
  background-color: #cfe1cd !important;
}
