/*!*****************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./src/scss/precision_farming.scss ***!
  \*****************************************************************************************************************************************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a, h1, h2, h3, h4, h5, h6, p, span, li {
  font-family: "e-Ukraine", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  color: #191919;
  text-decoration: none;
  list-style: none;
}

.section-title {
  font-size: clamp(24px, 16.842px + 1.053vw, 32px);
  color: #093F2A;
  margin-bottom: clamp(24px, -6.222px + 4.444vw, 56px);
}
.section-title--contact-bg {
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-image: url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.png");
  background-image: -webkit-image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.png") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob@2x.png") 2x);
  background-image: image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.webp") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob@2x.webp") 2x);
}
@media (min-width: 680px) {
  .section-title--contact-bg {
    background-image: url("https://media.iogu.gov.ua/img/contacts/contacts_bg.png");
    background-image: -webkit-image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg.png") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg@2x.png") 2x);
    background-image: image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg.webp") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg@2x.webp") 2x);
  }
}

.wrap-section {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px;
}

#main {
  position: relative;
  background-color: white;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
}

.link__document {
  max-width: 350px;
  border: 1px solid #C8DCD4;
  padding: 40px 60px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background-color: white;
}

.link__document__wrapper {
  background-color: rgba(200, 220, 212, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.title__hover-link {
  position: absolute;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--green-color);
  padding: 15px 0;
  font-weight: 600;
  font-size: 24px;
  color: white;
}

.desc-for-link__document {
  font-style: italic;
  font-size: 16px !important;
  color: var(--grey--graphite);
  text-align: left;
  /* margin: 0 !important; */
}

.link__document:hover {
  border: 1px solid var(--green-color);
  scale: 1.03;
  background-color: #C8DCD4;
}

.link__document:hover .title__hover-link,
.link__document__wrapper:hover {
  opacity: 1;
}

.link__document-name {
  font-weight: 600;
  /*font-size: 22px;*/
}

/*modal*/
.modal {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  position: fixed;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  overflow-y: hidden;
}

.modal.modal-an {
  z-index: 1;
  animation: modalAnimClose 0.3s linear forwards;
}

.modal.open {
  background-color: rgba(77, 88, 90, 0.66);
  z-index: 65;
  pointer-events: initial;
  animation: modalAnimOpen 0.3s linear forwards;
}

@keyframes modalAnimOpen {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalAnimClose {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    z-index: -1;
    opacity: 0;
    transform: translateY(-50%);
  }
}
.modal-content {
  margin: 90px auto;
  padding: 40px 60px;
  width: fit-content;
  height: auto;
  position: relative;
  background: linear-gradient(#093F2A, #3F7B63);
}

.modal-close {
  position: absolute;
  right: -27px;
  top: -43px;
  font-weight: 600;
  font-size: 50px;
  color: #fff;
  transition: all 0.3s;
  z-index: 90;
}

.modal-close:hover,
.modal-close:focus {
  color: #093F2A;
  transform: rotate(-180deg);
  text-decoration: none;
  cursor: pointer;
}

.input-text,
.input-text > input::placeholder {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.form__title {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}

#dropdown {
  width: 100%;
}

.scroll-hidden {
  overflow: hidden;
}

.label-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.input-text > input {
  width: 100%;
  padding: 5px 15px;
  font-size: 18px;
}

.modal-btn__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.abo {
  text-transform: uppercase;
  font-size: 18px;
  color: white;
}

.mobile-menu,
#nav-check,
.sale-block__image--mobile,
.precision-banner__content__img--mobile,
.fast-call__img--mobile,
.fast-call__img--last-mobile,
.sale-block__image-mobile {
  display: none;
}

@font-face {
  font-family: "e-Ukraine";
  src: url(/assets/src/fonts/e-Ukraine-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url(/assets/src/fonts/e-Ukraine-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url(/assets/src/fonts/e-Ukraine-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-UkraineHead";
  src: url(/assets/src/fonts/e-UkraineHead-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-UkraineHead";
  src: url(/assets/src/fonts/e-UkraineHead-LOGO.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
a, h1, h2, h3, h4, h5, h6, p, span, li {
  font-family: "e-Ukraine", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  color: #191919;
  text-decoration: none;
  list-style: none;
}

.section-title {
  font-size: clamp(24px, 16.842px + 1.053vw, 32px);
  color: #093F2A;
  margin-bottom: clamp(24px, -6.222px + 4.444vw, 56px);
}
.section-title--contact-bg {
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-image: url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.png");
  background-image: -webkit-image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.png") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob@2x.png") 2x);
  background-image: image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.webp") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob@2x.webp") 2x);
}
@media (min-width: 680px) {
  .section-title--contact-bg {
    background-image: url("https://media.iogu.gov.ua/img/contacts/contacts_bg.png");
    background-image: -webkit-image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg.png") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg@2x.png") 2x);
    background-image: image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg.webp") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg@2x.webp") 2x);
  }
}

.wrap-section {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px;
}

#main {
  position: relative;
  background-color: white;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
}

.link__document {
  max-width: 350px;
  border: 1px solid #C8DCD4;
  padding: 40px 60px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background-color: white;
}

.link__document__wrapper {
  background-color: rgba(200, 220, 212, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.title__hover-link {
  position: absolute;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--green-color);
  padding: 15px 0;
  font-weight: 600;
  font-size: 24px;
  color: white;
}

.desc-for-link__document {
  font-style: italic;
  font-size: 16px !important;
  color: var(--grey--graphite);
  text-align: left;
  /* margin: 0 !important; */
}

.link__document:hover {
  border: 1px solid var(--green-color);
  scale: 1.03;
  background-color: #C8DCD4;
}

.link__document:hover .title__hover-link,
.link__document__wrapper:hover {
  opacity: 1;
}

.link__document-name {
  font-weight: 600;
  /*font-size: 22px;*/
}

/*modal*/
.modal {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  position: fixed;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  overflow-y: hidden;
}

.modal.modal-an {
  z-index: 1;
  animation: modalAnimClose 0.3s linear forwards;
}

.modal.open {
  background-color: rgba(77, 88, 90, 0.66);
  z-index: 65;
  pointer-events: initial;
  animation: modalAnimOpen 0.3s linear forwards;
}

@keyframes modalAnimOpen {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalAnimClose {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    z-index: -1;
    opacity: 0;
    transform: translateY(-50%);
  }
}
.modal-content {
  margin: 90px auto;
  padding: 40px 60px;
  width: fit-content;
  height: auto;
  position: relative;
  background: linear-gradient(#093F2A, #3F7B63);
}

.modal-close {
  position: absolute;
  right: -27px;
  top: -43px;
  font-weight: 600;
  font-size: 50px;
  color: #fff;
  transition: all 0.3s;
  z-index: 90;
}

.modal-close:hover,
.modal-close:focus {
  color: #093F2A;
  transform: rotate(-180deg);
  text-decoration: none;
  cursor: pointer;
}

.input-text,
.input-text > input::placeholder {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.form__title {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}

#dropdown {
  width: 100%;
}

.scroll-hidden {
  overflow: hidden;
}

.label-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.input-text > input {
  width: 100%;
  padding: 5px 15px;
  font-size: 18px;
}

.modal-btn__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.abo {
  text-transform: uppercase;
  font-size: 18px;
  color: white;
}

.mobile-menu,
#nav-check,
.sale-block__image--mobile,
.precision-banner__content__img--mobile,
.fast-call__img--mobile,
.fast-call__img--last-mobile,
.sale-block__image-mobile {
  display: none;
}

.grey-view {
  filter: contrast(100%) grayscale(100%);
}

.header {
  background: linear-gradient(180deg, rgb(9, 63, 42) 0%, rgb(63, 123, 99) 100%);
  width: 100%;
  position: relative;
  z-index: 100;
}
.header-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 16px;
}
@media (min-width: 897px) {
  .header-wrap {
    padding: clamp(20px, 1.111px + 2.778vw, 40px) clamp(12px, 4.444px + 1.111vw, 20px) 0 clamp(12px, 4.444px + 1.111vw, 20px);
  }
}
.header-link {
  color: #FFFFFF;
  font-size: clamp(16px, 14.211px + 0.263vw, 18px);
  transition: all 0.3s ease;
  font-weight: 400;
  position: relative;
}
.header-link:hover {
  color: #C8DCD4;
}
.header-up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 897px) {
  .header-up {
    display: none;
  }
}
.header-up__logo-wrapper {
  display: flex;
  align-items: center;
}
@media (min-width: 897px) {
  .header-up__logo {
    width: 60px;
  }
  .header-up__logo:hover {
    animation: logoScale 0.5s ease;
  }
  @keyframes logoScale {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (min-width: 1025px) {
  .header-up__logo {
    width: 90px;
  }
}
.header-up__logo--mob {
  width: 100%;
  max-width: 50px;
}
@media (min-width: 897px) {
  .header-up__logo--mob {
    display: none;
  }
}
.header-up__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.header-up__state-site {
  margin-left: 30px;
}
@media (max-width: 1025px) {
  .header-up__state-site {
    display: none;
  }
}
.header-up__state-site:before {
  content: " ";
  width: 10px;
  height: 37px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  background: linear-gradient(180deg, rgb(115, 177, 255) 0%, rgb(255, 204, 51) 100%);
}
.header-up__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.header-up__title {
  color: #FFFFFF;
  font-size: clamp(24px, 13.263px + 1.579vw, 36px);
  text-align: center;
  font-weight: 500;
  line-height: 120%;
}
.header-up__title--mob {
  color: #FFFFFF;
  font-size: clamp(16px, 4.462px + 2.404vw, 26px);
  text-align: left;
  font-weight: 500;
  line-height: 120%;
}
@media (min-width: 897px) {
  .header-up__title--mob {
    display: none;
  }
}
.header-up__ui-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 15px;
}
.header-up__grey-view {
  display: flex;
  gap: clamp(8px, 4.222px + 0.556vw, 12px);
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}
.header-up__grey-view .header__btn-eye {
  white-space: nowrap;
}
.header-up__grey-svg {
  height: auto;
}
.header-up__social-list {
  display: flex;
  align-items: center;
  gap: clamp(8px, 4.222px + 0.556vw, 12px);
}
.header-up__social-item {
  width: 30px;
  flex: 0 0 auto;
}
@media (min-width: 1025px) {
  .header-up__social-item {
    width: 24px;
  }
}
.header-up__social-item .header-social {
  width: 100%;
}
.header-social path {
  fill: #FFFFFF;
  transition: all 0.3s ease;
}
.header-social {
  transition: all 0.3s ease;
}
.header-social:hover {
  scale: 1.2;
}
.header-down {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
@media (min-width: 481px) {
  .header-down {
    gap: 30px;
  }
}
@media (min-width: 897px) {
  .header-down {
    align-items: flex-end;
    justify-content: space-between;
  }
}
.header-down .nav__menu {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  display: none;
  flex-direction: column;
  transition: all 0.3s ease;
}
@media (max-width: 897px) {
  .header-down .nav__menu.is-open {
    width: 320px;
    max-width: 100%;
    opacity: 1;
    background: #C8DCD4;
    z-index: 1000;
    display: block;
    top: calc(100% + 12px);
    padding: clamp(25px, 11.596px + 3.191vw, 40px);
  }
}
@media (min-width: 897px) {
  .header-down .nav__menu {
    opacity: 1;
    display: flex;
    position: static;
    background: inherit;
    flex-direction: row;
  }
}
@media (min-width: 1025px) {
  .header-down .nav__menu {
    gap: 6px;
  }
}
.header-down .nav__link-svg {
  transition: all 0.3s ease;
}
@media (max-width: 897px) {
  .header-down .nav__link-svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 897px) {
  .header-down .nav__link {
    color: #093F2A !important;
    font-size: clamp(14px, 9.385px + 0.962vw, 18px) !important;
    font-weight: 500 !important;
  }
}
.header-down .nav__item {
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
@media (max-width: 897px) {
  .header-down .nav__item {
    padding: 20px 0;
    border-bottom: 1px solid #FFFFFF;
    transition: all 0.3s ease;
    justify-content: space-between;
  }
  .header-down .nav__item:hover {
    border-bottom-color: #093F2A;
  }
}
@media (min-width: 897px) {
  .header-down .nav__item {
    padding: 8px 6px;
    border-radius: 3px 3px 0 0;
    gap: 6px;
  }
}
.header-down .nav__item.open, .header-down .nav__item:hover {
  background-color: #C8DCD4;
}
.header-down .nav__item.open a, .header-down .nav__item.open span, .header-down .nav__item:hover a, .header-down .nav__item:hover span {
  color: #093F2A;
}
.header-down .nav__item.open .nav__link-svg > path, .header-down .nav__item:hover .nav__link-svg > path {
  fill: #093F2A;
}
.header-down .nav__item.open .nav__link-svg {
  transform: rotate(180deg);
}
.header-down .nav__item a, .header-down .nav__item span {
  color: #FFFFFF;
  font-size: clamp(16px, 12.421px + 0.526vw, 20px);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.header-down .nav__item--has-submenu {
  cursor: pointer;
}
.header-down .nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #3F7B63;
  padding: clamp(8px, 4.222px + 0.556vw, 12px) 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  min-width: 200px;
  border-radius: 0 0 3px 3px;
  border: 1.5px solid #C8DCD4;
  box-shadow: 9px 9px 23px -12px #3F7B63;
}
@media (max-width: 641px) {
  .header-down .nav__submenu {
    width: 100%;
  }
}
.header-down .nav__submenu__link {
  display: block;
  padding: clamp(6px, 1.385px + 0.962vw, 10px);
  font-size: clamp(14px, 7.077px + 1.442vw, 20px) !important;
  font-weight: 400 !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease;
}
@media (min-width: 641px) {
  .header-down .nav__submenu__link {
    white-space: nowrap;
  }
}
.header-down .nav__submenu__link:hover {
  background: #C8DCD4;
  color: #093F2A !important;
}
.header-down .nav__item.open .nav__submenu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header .lang_wrap {
  position: relative;
}
@media (max-width: 897px) {
  .header .lang_wrap {
    display: none;
  }
}
@media (max-width: 1025px) {
  .header .lang_wrap {
    width: 30px;
    height: 30px;
    top: -8px;
  }
}
.header .lang_icon {
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 25px;
  height: 24px;
}
@media (min-width: 641px) {
  .header .lang_icon:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 769px) {
  .header .lang_icon {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 1025px) {
  .header .lang_icon {
    display: none;
  }
}
.header .lang-list {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  flex-direction: column;
  opacity: 0;
  max-height: 0;
  background: #C8DCD4;
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .header .lang-list {
    position: static;
    transform: translateY(0);
    opacity: 1;
    display: flex;
    max-height: initial;
    flex-direction: row;
    background: inherit;
  }
}
.header .lang-list.open {
  max-height: 100px;
  opacity: 1;
}
.header .lang-item {
  cursor: pointer;
  user-select: none;
  padding: 6px 4px;
  transition: all 0.3s ease;
  border-radius: 3px;
  border: 1px solid transparent;
}
@media (min-width: 641px) {
  .header .lang-item:hover {
    border: 1px solid #093F2A;
    color: #3F7B63;
  }
}
@media (min-width: 1025px) {
  .header .lang-item {
    border-radius: 3px 3px 0 0;
    padding: 9px 7px;
  }
  .header .lang-item:hover {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-1px);
  }
}
.header .lang-item.active {
  color: #093F2A;
  background-color: #C8DCD4;
}
.header .lang-item.active:hover {
  border: 1px solid transparent;
  transform: translateY(0);
}
.header .mobile-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (min-width: 897px) {
  .header .mobile-lang {
    display: none;
  }
}
.header .mobile-lang .lang-item {
  font-size: clamp(14px, 9.385px + 0.962vw, 16px);
  background: rgba(255, 255, 255, 0.5);
  color: #3F7B63;
}
.header .mobile-lang .lang-item.active {
  background: #093F2A;
  color: #C8DCD4;
}

/* === style mobile menu === */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-width: 25px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: auto;
}
@media (min-width: 897px) {
  .burger {
    display: none;
  }
}
.burger__line {
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
  transform-origin: 1px;
}
.burger.is-active .burger__line:nth-child(1) {
  transform: rotate(45deg);
}
.burger.is-active .burger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.burger.is-active .burger__line:nth-child(3) {
  transform: rotate(-45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.body-no-scroll {
  overflow: hidden;
}

a, h1, h2, h3, h4, h5, h6, p, span, li {
  font-family: "e-Ukraine", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  color: #191919;
  text-decoration: none;
  list-style: none;
}

.section-title {
  font-size: clamp(24px, 16.842px + 1.053vw, 32px);
  color: #093F2A;
  margin-bottom: clamp(24px, -6.222px + 4.444vw, 56px);
}
.section-title--contact-bg {
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-image: url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.png");
  background-image: -webkit-image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.png") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob@2x.png") 2x);
  background-image: image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.webp") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob@2x.webp") 2x);
}
@media (min-width: 680px) {
  .section-title--contact-bg {
    background-image: url("https://media.iogu.gov.ua/img/contacts/contacts_bg.png");
    background-image: -webkit-image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg.png") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg@2x.png") 2x);
    background-image: image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg.webp") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg@2x.webp") 2x);
  }
}

.wrap-section {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px;
}

#main {
  position: relative;
  background-color: white;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
}

.link__document {
  max-width: 350px;
  border: 1px solid #C8DCD4;
  padding: 40px 60px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background-color: white;
}

.link__document__wrapper {
  background-color: rgba(200, 220, 212, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.title__hover-link {
  position: absolute;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--green-color);
  padding: 15px 0;
  font-weight: 600;
  font-size: 24px;
  color: white;
}

.desc-for-link__document {
  font-style: italic;
  font-size: 16px !important;
  color: var(--grey--graphite);
  text-align: left;
  /* margin: 0 !important; */
}

.link__document:hover {
  border: 1px solid var(--green-color);
  scale: 1.03;
  background-color: #C8DCD4;
}

.link__document:hover .title__hover-link,
.link__document__wrapper:hover {
  opacity: 1;
}

.link__document-name {
  font-weight: 600;
  /*font-size: 22px;*/
}

/*modal*/
.modal {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  position: fixed;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  overflow-y: hidden;
}

.modal.modal-an {
  z-index: 1;
  animation: modalAnimClose 0.3s linear forwards;
}

.modal.open {
  background-color: rgba(77, 88, 90, 0.66);
  z-index: 65;
  pointer-events: initial;
  animation: modalAnimOpen 0.3s linear forwards;
}

@keyframes modalAnimOpen {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalAnimClose {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    z-index: -1;
    opacity: 0;
    transform: translateY(-50%);
  }
}
.modal-content {
  margin: 90px auto;
  padding: 40px 60px;
  width: fit-content;
  height: auto;
  position: relative;
  background: linear-gradient(#093F2A, #3F7B63);
}

.modal-close {
  position: absolute;
  right: -27px;
  top: -43px;
  font-weight: 600;
  font-size: 50px;
  color: #fff;
  transition: all 0.3s;
  z-index: 90;
}

.modal-close:hover,
.modal-close:focus {
  color: #093F2A;
  transform: rotate(-180deg);
  text-decoration: none;
  cursor: pointer;
}

.input-text,
.input-text > input::placeholder {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.form__title {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}

#dropdown {
  width: 100%;
}

.scroll-hidden {
  overflow: hidden;
}

.label-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.input-text > input {
  width: 100%;
  padding: 5px 15px;
  font-size: 18px;
}

.modal-btn__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.abo {
  text-transform: uppercase;
  font-size: 18px;
  color: white;
}

.mobile-menu,
#nav-check,
.sale-block__image--mobile,
.precision-banner__content__img--mobile,
.fast-call__img--mobile,
.fast-call__img--last-mobile,
.sale-block__image-mobile {
  display: none;
}

#footer {
  background-color: #093F2A;
  flex: 0 0 auto;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-right {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.policy {
  color: #FFFFFF;
  width: fit-content;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
}

.policy:hover {
  color: var(--blue-color);
}

.footer-right > svg {
  margin-right: 10px;
}

.footer-right > p {
  font-size: 14px;
  color: white;
}

.footer-right > p > a {
  color: #007aff;
}

.footer-left-wrapper {
  text-align: right;
  color: white;
}

.footer-left > p {
  margin-bottom: 20px;
}

.footer-left a {
  font-size: 16px;
}

.footer-left-last,
.footer-right-last {
  margin-bottom: 0;
}

.footer {
  background-color: #093F2A;
  padding: 40px 0;
}
.footer .container {
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-right-wrapper, .footer-left-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-left-wrapper {
  text-align: right;
  align-items: flex-end;
}
.footer-right, .footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-right p, .footer-left p {
  color: #C8DCD4;
  font-size: 14px;
  line-height: 1.4;
}
.footer-right a, .footer-left a {
  color: #C8DCD4;
  display: inline-block;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.footer-right a:hover, .footer-left a:hover {
  color: #3F7B63;
  transform: scale(1.05);
  margin-bottom: 8px;
}
.footer .policy {
  text-align: right;
  width: 100%;
  transition: all 0.3s ease;
  color: #C8DCD4;
}
.footer .policy:hover {
  color: #3F7B63;
  transform: scale(1.03);
  margin-bottom: 8px;
}

a, h1, h2, h3, h4, h5, h6, p, span, li {
  font-family: "e-Ukraine", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  color: #191919;
  text-decoration: none;
  list-style: none;
}

.section-title {
  font-size: clamp(24px, 16.842px + 1.053vw, 32px);
  color: #093F2A;
  margin-bottom: clamp(24px, -6.222px + 4.444vw, 56px);
}
.section-title--contact-bg {
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-image: url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.png");
  background-image: -webkit-image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.png") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob@2x.png") 2x);
  background-image: image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob.webp") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg_mob@2x.webp") 2x);
}
@media (min-width: 680px) {
  .section-title--contact-bg {
    background-image: url("https://media.iogu.gov.ua/img/contacts/contacts_bg.png");
    background-image: -webkit-image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg.png") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg@2x.png") 2x);
    background-image: image-set(url("https://media.iogu.gov.ua/img/contacts/contacts_bg.webp") 1x, url("https://media.iogu.gov.ua/img/contacts/contacts_bg@2x.webp") 2x);
  }
}

.wrap-section {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px;
}

#main {
  position: relative;
  background-color: white;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
}

.link__document {
  max-width: 350px;
  border: 1px solid #C8DCD4;
  padding: 40px 60px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background-color: white;
}

.link__document__wrapper {
  background-color: rgba(200, 220, 212, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.title__hover-link {
  position: absolute;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--green-color);
  padding: 15px 0;
  font-weight: 600;
  font-size: 24px;
  color: white;
}

.desc-for-link__document {
  font-style: italic;
  font-size: 16px !important;
  color: var(--grey--graphite);
  text-align: left;
  /* margin: 0 !important; */
}

.link__document:hover {
  border: 1px solid var(--green-color);
  scale: 1.03;
  background-color: #C8DCD4;
}

.link__document:hover .title__hover-link,
.link__document__wrapper:hover {
  opacity: 1;
}

.link__document-name {
  font-weight: 600;
  /*font-size: 22px;*/
}

/*modal*/
.modal {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  position: fixed;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  overflow-y: hidden;
}

.modal.modal-an {
  z-index: 1;
  animation: modalAnimClose 0.3s linear forwards;
}

.modal.open {
  background-color: rgba(77, 88, 90, 0.66);
  z-index: 65;
  pointer-events: initial;
  animation: modalAnimOpen 0.3s linear forwards;
}

@keyframes modalAnimOpen {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalAnimClose {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    z-index: -1;
    opacity: 0;
    transform: translateY(-50%);
  }
}
.modal-content {
  margin: 90px auto;
  padding: 40px 60px;
  width: fit-content;
  height: auto;
  position: relative;
  background: linear-gradient(#093F2A, #3F7B63);
}

.modal-close {
  position: absolute;
  right: -27px;
  top: -43px;
  font-weight: 600;
  font-size: 50px;
  color: #fff;
  transition: all 0.3s;
  z-index: 90;
}

.modal-close:hover,
.modal-close:focus {
  color: #093F2A;
  transform: rotate(-180deg);
  text-decoration: none;
  cursor: pointer;
}

.input-text,
.input-text > input::placeholder {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.form__title {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}

#dropdown {
  width: 100%;
}

.scroll-hidden {
  overflow: hidden;
}

.label-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.input-text > input {
  width: 100%;
  padding: 5px 15px;
  font-size: 18px;
}

.modal-btn__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.abo {
  text-transform: uppercase;
  font-size: 18px;
  color: white;
}

.mobile-menu,
#nav-check,
.sale-block__image--mobile,
.precision-banner__content__img--mobile,
.fast-call__img--mobile,
.fast-call__img--last-mobile,
.sale-block__image-mobile {
  display: none;
}

.mobile-menu,
#nav-check,
.precision-banner__content__img--mobile,
.fast-call__img--mobile,
.fast-call__img--last-mobile,
.sale-block__image-mobile,
.gp_header__text--mobile,
.gp_header__img--mobile {
  display: none;
}

.npa-wrapper {
  max-width: 320px;
  margin-top: clamp(32px, 5.556px + 3.889vw, 60px);
}
@media (min-width: 769px) {
  .npa-wrapper {
    margin-top: 0;
  }
}

.main__information__list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.444px + 1.111vw, 16px);
}
.main__information__list__item {
  border-radius: 3px;
  border: 0.5px solid #C8DCD4;
  border-left-width: 4px;
  background: #FFFFFF;
  transition: all 0.3s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
}
@media (min-width: 769px) {
  .main__information__list__item {
    padding: clamp(14px, 4.556px + 1.389vw, 24px);
  }
  .main__information__list__item:hover {
    background: #C8DCD4;
  }
}
.main__information__list__link {
  font-weight: 400;
  font-size: clamp(14px, 12.111px + 0.278vw, 16px);
  color: #093F2A;
  line-height: 100%;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .main__information__list__link {
    line-height: 120%;
  }
}

.offers {
  display: flex;
  justify-content: center;
  margin: clamp(72px, 26.667px + 6.667vw, 120px) auto;
  flex-wrap: wrap;
  gap: 40px;
}

#offers-wrapper {
  padding-top: 2px;
}

.offer-box {
  width: 100%;
}
@media (min-width: 481px) {
  .offer-box {
    width: calc(50% - 15px);
  }
}
@media (min-width: 1025px) {
  .offer-box {
    width: calc(25% - 15px);
  }
}

.offer-link {
  display: flex;
  align-items: center;
  padding: clamp(12px, 4.444px + 1.111vw, 20px) 7px;
  background-color: #c8dcd4;
  fill: #084C31;
  transition: all 0.3s ease-in;
}

.offer-img {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-right: 2px solid rgba(8, 76, 49, 0.6);
  padding-right: 5px;
  margin-right: 8px;
}

.offer-link:hover {
  opacity: 1;
  box-shadow: 1px 2px 10px 3px rgb(200, 220, 212);
  scale: 1.03;
}

.offer-text {
  color: rgb(8, 76, 49);
}
@media (max-width: 641px) {
  .offer-text {
    font-size: 14px;
  }
}

/* sale block */
.sale-block-wrapper {
  margin: 10px 0 80px;
}

:active, :hover, :focus {
  outline: 0 !important;
  outline-offset: 0;
}

::before,
::after {
  position: absolute;
  content: "";
}

.link-btn {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: #0C5237;
  border: none;
  cursor: pointer;
  min-width: 150px;
}

.link-btn::before {
  background-color: #D8E8A5;
  transition: 0.3s ease-out;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.link-btn::after {
  background-color: #0C5237;
  transition: 0.3s ease-out;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 5px;
}

.link-btn:hover::before {
  width: 0;
}

.link-btn__text {
  position: relative;
  display: inline-block;
  font-size: clamp(16px, 10.632px + 0.789vw, 22px);
  font-weight: 500;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(8px, 0.444px + 1.111vw, 16px) clamp(12px, 0.667px + 1.667vw, 24px);
  transition: 0.3s;
  color: #0C5237;
  letter-spacing: normal;
}

.link-btn__text:hover {
  color: #fff;
  transition: 0.2s 0.1s;
}

.sale-block {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: 330px;
}
@media (min-width: 897px) {
  .sale-block {
    height: 550px;
  }
}

.sale-block__image-wrapper {
  position: relative;
}

.sale-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sale-block__content {
  padding-left: clamp(24px, -10px + 5vw, 60px);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  color: #093F2A;
}

.sale-block__title,
.sale-block__title > .sale_block__text-wrap {
  font-size: clamp(30px, 15.684px + 2.105vw, 46px);
  font-weight: 500;
  margin-bottom: clamp(20px, 5.833px + 2.083vw, 35px);
}

.sale-block__content--conf {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(200, 220, 212, 0.58);
  padding: clamp(20px, 1.111px + 2.778vw, 40px);
  display: flex;
  justify-content: center;
  gap: clamp(40px, -35.556px + 11.111vw, 120px);
}
@media (max-width: 641px) {
  .sale-block__content--conf {
    position: relative;
    flex-direction: column;
  }
}

.sale-block__title--conf {
  font-size: clamp(24px, 16.842px + 1.053vw, 32px);
  margin-bottom: 20px;
}

.sale-block__description-conf {
  font-size: clamp(18px, 14.421px + 0.526vw, 22px);
  margin-bottom: 40px;
}

.sale_block__text-wrap {
  display: block;
}

.wrap-btn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sale-block--conf {
  height: initial;
}

.precision-banner__text {
  color: white;
  max-width: 500px;
  font-size: clamp(24px, 12.667px + 1.667vw, 36px);
}

.sale-block__description,
.sale-block__description > .sale_block__text-wrap {
  font-size: clamp(16px, 8.444px + 1.111vw, 24px);
  font-weight: 500;
  margin-bottom: clamp(20px, -17.778px + 5.556vw, 60px);
}

.sale_block__text-wrap {
  display: block;
}

/* sale block end */
.news-box {
  width: 100%;
  position: relative;
}
@media (min-width: 897px) {
  .news-box {
    width: 60%;
  }
}
@media (min-width: 769px) {
  .news-box {
    margin-right: 60px;
  }
}
@media (min-width: 641px) {
  .news-box {
    width: 55%;
  }
}

.news-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 769px) {
  .news-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.home-certificate-link {
  padding: clamp(16px, 1.684px + 2.105vw, 32px);
}

.home-certificate-picture {
  display: block;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
}

.home-certificate-img {
  width: 100%;
  height: auto;
}

/*map*/
.map-wrapper {
  text-align: center;
}

.map-title {
  font-size: clamp(24px, 12.667px + 1.667vw, 36px);
  font-weight: 700;
  margin: 50px auto;
  color: #000000;
}

.map_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 2.105px + 2.632vw, 40px);
}
@media (max-width: 897px) {
  .map_box {
    flex-direction: column-reverse;
  }
}

.map_table {
  max-width: 100%;
}

.table_header {
  font-weight: 900;
}

table, th, td {
  border-collapse: collapse;
  border-spacing: 1px 2px;
  padding: 2px 15px;
  font-size: clamp(14px, 12.211px + 0.263vw, 16px);
  text-align: left;
}

.table_title {
  font-size: clamp(16px, 10.632px + 0.789vw, 22px);
  font-weight: 700;
  margin-bottom: 15px;
}

.description_table {
  margin-top: 15px;
  font-size: clamp(14px, 10.421px + 0.526vw, 18px);
  font-style: italic;
}

.tbody--relative {
  position: relative;
}

.region-map {
  transition: all 0.3s ease-in;
}

.region-map:nth-child(2n) {
  background-color: rgba(133, 219, 157, 0.56);
}

.region-map:hover {
  background-color: #005BBC;
}

#Ukraine {
  width: 100%;
  height: auto;
  position: relative;
}
@media (min-width: 769px) {
  #Ukraine {
    height: 600px;
  }
}

#KyivCity {
  fill: #3184EA;
  opacity: 0;
}

.mapBackground {
  fill: #CCCCCC;
  stroke: rgba(0, 0, 0, 0.2392156863);
  stroke-width: 1;
  transition: all 0.3s ease-in;
}

#Ukraine path:hover {
  fill: #084C31;
}

.pointerCircle {
  r: 3px;
  fill: var(--blue-color);
  stroke-linecap: square;
  stroke-linejoin: bevel;
  stroke-miterlimit: 4;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  stroke-opacity: 1;
}

.cityName {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: bold;
  font-size: clamp(14px, 12.211px + 0.263vw, 16px);
  fill: rgb(0, 0, 0);
  text-shadow: white 1px 1px 0, white -1px -1px 0, white -1px 1px 0, white 1px -1px;
}

#Kiev:hover ~ .cityKiev,
#KyivCity:hover ~ .cityKiev,
#SevastopolCity:hover ~ .citySevastopol,
#Crimea:hover ~ .citySimferopol,
#Cherkasy:hover ~ .cityCherkasy,
#Chernivtsi:hover ~ .cityChernivtsi,
#Dnipropetrovsk:hover ~ .cityDnipro,
#Donetsk:hover ~ .cityDonetsk,
#Ivano-Frankivsk:hover ~ .cityIvano-Frankivsk,
#Ivano-Frankivsk:hover ~ .region-map--visibility,
#Kharkiv:hover ~ .cityKharkiv,
#Kherson:hover ~ .cityKherson,
#Khmelnytskyi:hover ~ .cityKhmelnytskyi,
#Kirovohrad:hover ~ .cityKropyvnytskyi,
#Luhansk:hover ~ .cityLuhansk,
#Lviv:hover ~ .cityLviv,
#Mykolaiv:hover ~ .cityMykolaiv,
#Odessa:hover ~ .cityOdessa,
#Poltava:hover ~ .cityPoltava,
#Rivne:hover ~ .cityRivne,
#Sumu:hover ~ .citySumu,
#Chernihiv:hover ~ .cityChernihiv,
#Ternopil:hover ~ .cityTernopil,
#Zakarpattia:hover ~ .cityUzhhorod,
#Vinnytsia:hover ~ .cityVinnytsia,
#Volyn:hover ~ .cityLutsk,
#Zaporizhia:hover ~ .cityZaporizhia,
#Zhytomyr:hover ~ .cityZhytomyr {
  visibility: visible;
  opacity: 1;
}

/*publications-and-patents-wrapper*/
.publications-and-patents-wrapper {
  display: flex;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0 0 50px 0;
}

.publications-and-patents-box {
  position: relative;
}

.publication-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-left: 10px;
}
@media (max-width: 641px) {
  .publication-box {
    flex-wrap: wrap;
  }
}

.publication {
  width: calc(50% - 10px);
  background-color: #C8DCD4;
  text-align: center;
}
@media (max-width: 641px) {
  .publication {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (min-width: 641px) {
  .publication {
    width: calc(33.3333333333% - 10px);
  }
}

.publication-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.publication-text {
  padding-bottom: 13px;
  font-size: clamp(14px, 12.211px + 0.263vw, 16px);
  color: rgb(8, 76, 49);
}

.patents-all {
  position: absolute;
  top: 74px;
  right: 1px;
  color: var(--blue-color);
  font-size: clamp(14px, 12.211px + 0.263vw, 16px);
  font-weight: 700;
  padding: 5px 12px;
  transition: all 0.3s ease-in;
}

.patents-all:hover {
  border-radius: 7px;
  background-color: #C8DCD4;
  color: #084C31;
}

.patents-box {
  display: flex;
  flex-direction: column;
}

.patents-link {
  background-color: #C8DCD4;
  margin-bottom: 10px;
  padding: 23px 30px;
  font-size: clamp(14px, 12.211px + 0.263vw, 16px);
  font-weight: 700;
  transition: all 0.3s ease-in;
}

.patents-link:hover {
  background-color: white;
}

/*precision */
.precision-banner-wrapper {
  padding-top: 80px;
}

.precision__stages {
  margin: 80px 0 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.precision__stages__block {
  width: calc(33.3333333333% - 50px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.precision__stages__block__stage,
.new-main-text {
  font-size: 18px;
}

.precision__stages__block__title {
  font-weight: 600;
  font-size: 24px;
}

.precision__stages__svg {
  margin-left: 50px;
}

.precision-banner__content {
  display: flex;
  gap: 30px;
  align-items: start;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  .precision-banner__content {
    gap: 60px;
    flex-wrap: nowrap;
  }
}

.precision-banner__content__img {
  object-fit: contain;
  max-height: 500px;
}

.precision-banner__content__title,
.precision__pack__price {
  font-size: 26px;
  font-weight: 400;
}

.precision__pack__price {
  color: #093F2A;
  margin: 35px 0 50px;
  text-align: center;
}

.new_list-title {
  font-weight: 400;
  font-size: 22px;
  margin: 40px 0 15px;
}

.precision-banner__content__text__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.precision-banner__content__text__list__item {
  font-size: 16px;
  opacity: 0.65;
  margin-left: 20px;
  list-style-type: disc;
}

.precision-banner__content__text {
  margin-bottom: 90px;
}

.sale-block__title--page {
  margin: 0;
}

.sale-block__content--page {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}

.sale-block--page {
  margin-bottom: 90px;
}

/*pack*/
.precision__pack-wrapper {
  margin-bottom: 80px;
}

.new-main-title {
  margin-bottom: 65px;
  color: #093F2A;
}

.link-btn__text--pack {
  font-size: 20px;
}

.precision__pack__blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1025px) {
  .precision__pack__blocks {
    gap: 40px;
  }
}

.precision__pack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 50px 25px;
  border-radius: 3px;
  border: 1px solid rgba(77, 90, 79, 0.4);
  position: relative;
  height: fit-content;
  width: 100%;
}
@media (min-width: 641px) {
  .precision__pack {
    width: calc(50% - 30px);
  }
}
@media (min-width: 1025px) {
  .precision__pack {
    width: calc(33.3333333333% - 30px);
    gap: 40px;
  }
}

.precision__pack__info {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #093F2A;
  color: white;
  font-size: 16px;
  padding: 8px 12px;
}

.precision-banner__content__title--pack {
  margin-bottom: 25px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.info-list__item {
  opacity: 0.65;
  font-size: 16px;
  font-style: italic;
}

#main-down {
  padding-top: clamp(30px, -14.737px + 6.579vw, 80px);
  padding-bottom: clamp(56px, 20.8px + 5.5vw, 100px);
  border-top: 1px solid #3F7B63;
}
#main-down .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(45px, -14.576px + 8.051vw, 140px);
}
@media (min-width: 481px) {
  #main-down .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) {
  #main-down .container {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }
}
#main-down .main-down__block-title {
  color: #191919;
  font-size: clamp(16px, 14.211px + 0.263vw, 18px);
  margin-bottom: clamp(7px, -0.158px + 1.053vw, 15px);
  font-weight: 500;
}
#main-down .main-down__block-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#main-down .main-down__block-item a {
  font-weight: 500;
  font-size: 14px;
  color: #3F7B63;
  transition: all 0.3s ease;
}
#main-down .main-down__block-item a:hover {
  color: #093F2A;
  transform: translate(3px, -3px);
}

.sale-block__image--not-mobile {
  display: none;
}
@media (min-width: 481px) {
  .sale-block__image--not-mobile {
    display: block;
  }
}
.sale-block__image--mobile {
  display: block;
}
@media (min-width: 481px) {
  .sale-block__image--mobile {
    display: none;
  }
}

.precision__stages {
  gap: 30px;
  justify-content: center;
}
.precision__stages__block {
  width: 100%;
}
@media (min-width: 481px) {
  .precision__stages__block {
    gap: 12px;
    width: calc(50% - 50px);
  }
}
@media (min-width: 769px) {
  .precision__stages__block {
    width: calc(33.3333333333% - 50px);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
