@charset "UTF-8";
.top-bar__wrapper {
  background-color: #234161;
  font-size: 0.875em;
  padding: 5px 0;
}
.top-bar__wrapper .container {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .top-bar__wrapper .container {
    gap: 15px;
  }
}
@media (min-width: 1560px) {
  .top-bar__wrapper .container {
    justify-content: flex-end;
    padding: 5px 5px 5px 10px;
  }
}
.top-bar__wrapper .stop-corruption {
  display: none;
}
@media (min-width: 1024px) {
  .top-bar__wrapper .stop-corruption {
    display: inline-block;
    padding: 10px;
    background: #ffffff;
    color: #234161;
    font-weight: 600;
    outline: none;
    box-shadow: none;
  }
}
.top-bar__wrapper .stop-corruption:hover {
  color: #234161;
  cursor: pointer;
}
.top-bar__wrapper .top-bar__text,
.top-bar__wrapper .top-bar__controls,
.top-bar__wrapper .controls__blind {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar__wrapper .top-bar__text {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.6875em;
  font-weight: 500;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .top-bar__wrapper .top-bar__text {
    font-size: 0.75em;
    width: unset;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .top-bar__wrapper .top-bar__text {
    max-width: 430px;
  }
}
@media (min-width: 1360px) {
  .top-bar__wrapper .top-bar__text {
    max-width: unset;
    margin-right: 15px;
    font-size: 0.875em;
  }
}
.top-bar__wrapper .text-bar__wrapper {
  display: flex;
  flex-direction: column;
  column-gap: 5px;
  text-align: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .top-bar__wrapper .text-bar__wrapper {
    width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .top-bar__wrapper .text-bar__wrapper {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .top-bar__wrapper .text-bar__wrapper {
    flex-direction: row;
  }
}
.top-bar__wrapper .top-bar__controls {
  display: none;
  color: #a2e8c6;
  gap: 10px;
}
@media (min-width: 768px) {
  .top-bar__wrapper .top-bar__controls {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .top-bar__wrapper .top-bar__controls {
    gap: 20px;
  }
}
.top-bar__wrapper .controls__lang button,
.top-bar__wrapper .controls__blind {
  color: #a2e8c6;
}

.info-bar__wrapper {
  background-color: #1E3243;
}
.info-bar__wrapper .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 10px;
}
.info-bar__wrapper .container .logo {
  min-width: 82px;
}
@media (min-width: 1024px) {
  .info-bar__wrapper .container .logo {
    width: 110px;
  }
}
.info-bar__wrapper .container .logo img {
  width: 100%;
}
.info-bar__wrapper .info-bar__text {
  color: #FFFFFF;
  font-size: 1.0625em;
  text-align: center;
}
@media (min-width: 390px) {
  .info-bar__wrapper .info-bar__text {
    font-size: 1.125em;
  }
}
@media (min-width: 1024px) {
  .info-bar__wrapper .info-bar__text {
    font-size: 1.5em;
  }
}
@media (min-width: 1024px) {
  .info-bar__wrapper .info-bar__burger {
    display: none;
  }
}
.info-bar__wrapper .info-bar__burger .close-icon {
  display: none;
}
.info-bar__wrapper .info-bar__burger.active .close-icon {
  display: block;
}
.info-bar__wrapper .info-bar__burger.active .open-icon {
  display: none;
}
.info-bar__wrapper .info-bar__socials {
  display: none;
  gap: 30px;
}
@media (min-width: 1024px) {
  .info-bar__wrapper .info-bar__socials {
    display: flex;
  }
}

.main-nav {
  position: absolute;
  top: 175px;
  right: 0;
  color: #FFFFFF;
  background-color: #234161;
  max-width: 425px;
  width: 100%;
  z-index: 10;
}
@media (min-width: 1024px) {
  .main-nav {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 100%;
  }
}
.main-nav .container {
  color: #FFFFFF;
  background-color: #234161;
}
@media (min-width: 1024px) {
  .main-nav .container {
    color: #234161;
    background-color: #F7F9FD;
  }
}
@media (min-width: 1024px) {
  .main-nav {
    color: #234161;
    background-color: #F7F9FD;
  }
}
.main-nav .stop-corruption {
  display: none;
  padding: 10px;
  width: fit-content;
  background: #ffffff;
  color: #234161;
  font-weight: 600;
  margin: 0 0 20px 40px;
  outline: none;
  box-shadow: none;
}
.main-nav.open .social-controls__wrapper,
.main-nav.open .menu,
.main-nav.open .stop-corruption {
  display: flex;
}
@media (min-width: 768px) {
  .main-nav.open .social-controls__wrapper {
    display: none;
  }
}

.social-controls__wrapper {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 15px 25px;
  border-bottom: 0.5px solid #7F93A9;
  margin: 0 -10px;
}
.social-controls__wrapper .info-bar__socials,
.social-controls__wrapper .top-bar__controls {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-controls__wrapper .controls__lang button {
  color: #a2e8c6;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.menu > li {
  position: relative;
  padding: 12px 5px;
  margin-bottom: 0;
}
@media (min-width: 1360px) {
  .menu > li {
    padding: 20px 30px;
  }
}

.menu > li a {
  color: #ffffff;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .menu > li a {
    color: #1E3243;
  }
}
@media (min-width: 1460px) {
  .menu > li a {
    font-size: 1.125em;
  }
}

.menu > li:hover a {
  color: #ffffff;
}
@media (min-width: 1024px) {
  .menu > li:hover a {
    color: #a2e8c6;
  }
}

.menu .menu-item-has-children.open {
  padding-bottom: 0;
  margin-bottom: 0;
}

.menu .menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
  display: inline-block;
  width: 100%;
}

.menu .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 65%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 10px;
  background-image: url("/wp-content/themes/fitolabtheme/assets/images/svg/menu-arrow-down-w-5x8.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .menu .menu-item-has-children > a::after {
    background-image: url("/wp-content/themes/fitolabtheme/assets/images/svg/menu-arrow-down-5x8.svg");
  }
}

@media (min-width: 1024px) {
  .menu .menu-item-has-children:hover > a::after {
    background-image: url("/wp-content/themes/fitolabtheme/assets/images/svg/menu-arrow-down-w-5x8.svg");
    transform: translateY(-80%) rotate(180deg);
  }
}

.menu .menu-item-has-children:hover > a {
  color: #a2e8c6;
}

.menu .menu-item-has-children.open > a::after {
  transform: translateY(-60%) rotate(180deg);
}
@media (min-width: 1024px) {
  .menu .menu-item-has-children.open > a::after {
    transform: translateY(-80%) rotate(180deg);
    background-image: url("/wp-content/themes/fitolabtheme/assets/images/svg/menu-arrow-down-w-5x8.svg");
  }
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  color: #ffffff;
  z-index: 1;
  background-color: #234161;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu > li:hover {
  background: #234161;
  color: #a2e8c6;
}

.menu > li > .sub-menu {
  display: none;
}

@media (min-width: 1024px) {
  .menu > li:hover > .sub-menu {
    display: block;
  }
}
.sub-menu li {
  padding: 10px 20px;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .sub-menu li {
    white-space: nowrap;
    padding: 15px 7px;
  }
}
@media (min-width: 1360px) {
  .sub-menu li {
    padding: 15px 35px;
  }
}

.sub-menu li a {
  color: #ffffff;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .sub-menu li a {
    color: #ffffff !important;
  }
}

.sub-menu > li:hover a {
  color: #a2e8c6 !important;
}

/* На мобільному */
@media (max-width: 1023px) {
  .burger {
    display: block;
  }
  .menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 40px 20px 40px;
    width: 100%;
    background-color: #234161;
  }
}
@media (max-width: 1023px) and (min-width: 1024px) {
  .menu {
    background-color: #ffffff;
  }
}
@media (max-width: 1023px) {
  /* Підменю на мобільному — показ по кліку */
  .menu-item-has-children > .sub-menu {
    display: none;
    position: static;
    box-shadow: none;
  }
  .menu-item-has-children.open > .sub-menu {
    display: block;
  }
}
.search-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.search-modal.is-open {
  display: block;
}

.search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.search-modal__content {
  max-width: 600px;
  background: #fff;
  padding: 30px;
  z-index: 1;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.search-modal__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.125em;
}

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

.search-modal__form input[type=search] {
  width: 100%;
  font-size: 1em;
  margin-bottom: 50px;
  padding: 12px;
  border: 2px solid #b1b8c0;
}
.search-modal__form input[type=search]::placeholder {
  color: #0f172a;
}

.search-modal__checkbox {
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 35px;
}
.search-modal__checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 2px solid #b1b8c0;
  background-color: #fff;
  transition: 0.2s;
}
.search-modal__checkbox::after {
  content: "";
  position: absolute;
  left: 5px;
  width: 16px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em;
  color: #fff;
  opacity: 0;
  transition: 0.2s;
  background: url(/wp-content/themes/fitolabtheme/assets/images/svg/check-mark-16x13.svg) no-repeat 100%;
}
.search-modal__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  left: 0;
  width: 25px;
  height: 25px;
}
.search-modal__checkbox .search-modal__checkbox.checked::after {
  opacity: 1;
  color: #247C1C;
}

.search-modal__submit {
  background: #2f7d32;
  color: #fff;
  padding: 7px 20px 7px 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.search-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background-color: #ff5c5c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875em;
  cursor: pointer;
  line-height: 1;
  transition: 0.2s;
  width: 18px;
  height: 18px;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Bold";
  src: url("../fonts/Geologica-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Light";
  src: url("../fonts/Geologica-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Geologica Light", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  min-height: 100vh;
  background: #F7F9FD;
  color: #234161;
}

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

main {
  flex: 1 1 auto;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Geologica Bold", sans-serif;
  margin: 0;
  padding: 0;
}

h1, .looks-like-h1 {
  font-size: 1.875em;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}

h2, .looks-like-h2 {
  font-size: 1.375em;
  font-weight: 500;
  color: #234161;
  line-height: 30px;
}

a {
  text-decoration: none;
  color: #ffffff;
}

p {
  font-size: 1.125em;
  line-height: 24px;
}

ul li, ol li {
  font-size: 1em;
  margin-bottom: 20px;
}
ul li a, ol li a {
  color: #247C1C;
  text-decoration: underline;
}