/*!**************************************************************************************************************************************************************************************************************************!*\
  !*** 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/ground_partner.scss ***!
  \**************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* 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;
}

.gp_header__text--mobile,
.gp_header__img--mobile {
  display: none;
}

.gp_header {
  padding: 60px 0 0 0;
  position: relative;
  margin-bottom: 90px;
}

.gp_header__ui {
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 120px;
}

.gp_header__text {
  font-size: 22px;
  color: white;
  /*margin-bottom: 55px;*/
  padding: 0 45px;
}

.gp_header__content {
  position: absolute;
  top: 170px;
  left: 0;
  width: 100%;
}

.gp_header__logo {
  transition: all 0.3s ease-in-out;
}

.gp_header__logo:hover {
  scale: 1.04;
}

/*partners*/
.gp_partners {
  margin-bottom: 80px;
}

.gp_partners__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 90px;
  margin: 60px 0;
}

.gp_partners__list__link {
  display: flex;
}

.gp_partners__list__item {
  width: calc(14.2857142857% - 90px);
}

.gp_partners__list__img {
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}

.gp_partners__list__link:hover .gp_partners__list__img {
  scale: 1.13;
}

/*green box*/
.green-boxes {
  margin-bottom: 80px;
}

.green-boxes > .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 80px;
}

.green-box {
  width: calc(50% - 80px);
}

.green-box__title {
  font-size: 22px;
  color: white;
  background-color: #093F2A;
  padding: 20px 40px;
}

.green-box__list {
  background-color: #C8DCD4;
  color: #093F2A;
  font-size: 18px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.green-box__list__item {
  list-style: disc;
  margin-left: 20px;
}

/*add info*/
.add-info {
  margin-bottom: 80px;
}

.add-info__title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 25px;
}

.add-info__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #093F2A;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.add-info__link {
  position: relative;
  margin-left: 25px;
  transition: all 0.3s ease-in-out;
}

.add-info__link:before {
  content: "✦";
  position: absolute;
  top: -3px;
  left: -23px;
  transition: all 0.3s ease-in-out;
}

.add-info__link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #C8DCD4;
  transition: width 0.8s ease-in-out, background-color 0.3s ease-in-out;
}

.add-info__link:hover:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  background-color: #093F2A;
  transition: width 0.8s ease-in-out;
}

.add-info__link:hover {
  transform: scale(1.2);
}

.add-info__link:hover:before {
  transform: scale(1.4) rotate(180deg);
  top: 1px;
}

.add-info__item {
  transition: all 0.3s;
  width: fit-content;
}

@media (max-width: 1300px) {
  .gp_header__ui {
    justify-content: space-around;
    margin-bottom: 80px;
  }
  .gp_partners__list__item {
    width: calc(25% - 50px);
  }
  .gp_partners__list {
    gap: 50px;
  }
  .gp_partners__list__img {
    width: 60%;
  }
}
@media (max-width: 1205px) {
  .gp_header__content {
    top: 110px;
  }
}
@media (max-width: 1100px) {
  .gp_header__text,
  .green-box__title,
  .add-info__link {
    font-size: 18px;
  }
  .add-info__title {
    font-size: 22px;
  }
  .green-box__list__item {
    list-style: disc;
    font-size: 16px;
  }
  .green-box__title,
  .green-box__list {
    padding: 25px 30px;
  }
  .green-boxes > .container {
    gap: 50px;
  }
  .green-box {
    width: calc(50% - 50px);
  }
}
@media (max-width: 1000px) {
  .gp_header__ui {
    padding: 0;
    flex-direction: column;
    align-items: start;
    margin-bottom: 0;
    gap: 40px;
    min-width: fit-content;
  }
  .gp_header__img {
    min-height: 300px;
  }
  .gp_header__logo {
    width: 80%;
  }
  .gp_header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 50px;
  }
  .gp_header__text {
    padding: 0;
    font-size: 18px;
  }
}
@media (max-width: 850px) {
  .gp_header__text {
    font-size: 16px;
  }
  .gp_header {
    padding: 52px 0 0 0;
    margin-bottom: 90px;
  }
  .gp_header__text--not-mobile {
    display: none;
  }
  .gp_header__text--mobile {
    display: block;
  }
  .gp_header__logo {
    max-width: 200px;
  }
  .gp_header__content {
    top: 83px;
  }
  .gp_header__ui {
    gap: 40px;
  }
  .green-boxes > .container {
    gap: 20px;
    justify-content: space-between;
  }
  .green-box {
    width: calc(50% - 10px);
  }
}
@media (max-width: 650px) {
  .gp_partners__list {
    gap: 50px 20px;
    margin: 50px 0;
  }
  .gp_header__img--not-mobile {
    display: none;
  }
  .gp_header__img--mobile {
    display: block;
  }
  .gp_header__logo {
    max-width: inherit;
    width: auto;
  }
  .gp_header__content {
    top: 222px;
  }
  .gp_header__ui {
    gap: 60px;
  }
  .gp_partners__list__item {
    width: calc(50% - 50px);
  }
  .green-box {
    width: 100%;
  }
  .green-boxes > .container {
    gap: 50px;
  }
}
@media (max-width: 550px) {
  .gp_header__content {
    top: 190px;
  }
  .gp_header__img {
    min-height: 500px;
  }
  .green-box__title, .green-box__list {
    padding: 25px 20px;
  }
  .gp_partners__list__img {
    width: 75%;
  }
}
@media (max-width: 495px) {
  .gp_header__content {
    top: 175px;
  }
  .gp_header__ui {
    gap: 35px;
  }
  .gp_header__content {
    padding: 0 20px;
  }
}
