@charset "UTF-8";
.top-bar__wrapper {
  background-color: #234161;
  font-size: 14px;
  padding: 5px 0;
}
.top-bar__wrapper .container {
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 1360px) {
  .top-bar__wrapper .container {
    padding: 5px 10px 5px 110px;
  }
}
@media (min-width: 1560px) {
  .top-bar__wrapper .container {
    justify-content: center;
    padding: 5px 10px;
  }
}
.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: 14px;
  font-weight: 500;
  text-align: center;
}
@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;
  }
}
.top-bar__wrapper .top-bar__controls {
  display: none;
  position: absolute;
  right: 5px;
  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;
  }
}
@media (min-width: 1360px) {
  .top-bar__wrapper .top-bar__controls {
    gap: 50px;
  }
}

.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 {
  width: 82px;
}
@media (min-width: 1024px) {
  .info-bar__wrapper .container .logo {
    width: 110px;
  }
}
.info-bar__wrapper .info-bar__text {
  color: #FFFFFF;
  font-size: 18px;
  text-align: center;
}
@media (min-width: 1024px) {
  .info-bar__wrapper .info-bar__text {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .info-bar__wrapper .info-bar__burger {
    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: relative;
}

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

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

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

.menu > li:hover a {
  color: #1E3243;
}
@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;
}

.menu .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 65%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("/wp-content/themes/fitolabtheme/assets/images/svg/menu-arrow-down-5x8.svg"); /* шлях до твоєї картинки */
  background-size: contain;
  background-repeat: no-repeat;
}

.menu .menu-item-has-children:hover > a {
  color: #1E3243;
}
@media (min-width: 1024px) {
  .menu .menu-item-has-children:hover > a {
    color: #a2e8c6;
  }
}

.menu .menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
  top: 50%;
  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;
  background: #ffffff;
  z-index: 1;
  color: #234161;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .sub-menu {
    background: #234161;
    z-index: 1;
    color: #ffffff;
  }
}

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

.menu > li:hover > .sub-menu {
  display: block;
}

.sub-menu li {
  padding: 15px 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: #1E3243;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .sub-menu li a {
    color: white;
  }
}

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

/* На мобільному */
@media (max-width: 1023px) {
  .burger {
    display: block;
  }
  .menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    padding: 10px 0;
    width: 100%;
  }
  .menu.open {
    display: flex;
  }
  /* Підменю на мобільному — показ по кліку */
  .menu-item-has-children > .sub-menu {
    display: none;
    position: static;
    box-shadow: none;
  }
  .menu-item-has-children.open > .sub-menu {
    display: block;
  }
}
@font-face {
  font-family: "Geologica";
  src: url("../../fonts/Geologica-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Bold";
  src: url("../../fonts/Geologica-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica Light";
  src: url("../../fonts/Geologica-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Geologica", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #F7F9FD;
  color: #1E3243;
}

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

main {
  flex: 1 1 auto;
  position: relative;
}

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

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

h2, .looks-like-h2 {
  font-size: 22px;
  font-weight: 500;
  color: #1E3243;
  line-height: 30px;
}

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

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

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