@charset "UTF-8";
/* === Modern Reset / Base === */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Remove default margin */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Root defaults */
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  min-height: 100vh;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Lists — fully reset */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links — neutral */
a {
  color: inherit;
  text-decoration: none;
}

/* Forms — fully neutral */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  border-radius: 0;
}

/* Buttons */
button {
  cursor: pointer;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Quotes */
blockquote,
q {
  quotes: none;
}

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

/* Hidden attribute */
[hidden] {
  display: none !important;
}

/* Focus (accessible, neutral) */
:focus-visible {
  outline: 2px solid rgba(105, 181, 24, 0.6);
  outline-offset: 2px;
}

/* === Fonts === */
/* === Base === */
body {
  min-width: 300px;
  font-family: "Fixel Text", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #0E0E0E;
  background-color: #FFF;
}

main {
  margin: 0 auto;
}

/* === Typography (mobile-first) === */
h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.2;
}

h1,
h2 {
  font-size: 32px;
}
@media (min-width: 768px) {
  h1,
  h2 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  h1,
  h2 {
    font-size: 48px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 768px) {
  h3 {
    font-size: 28px;
  }
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

i,
em {
  font-style: italic;
}

a {
  color: #69B518;
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  color: #529010;
}

/* === Helpers === */
.text-center {
  text-align: center;
}

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

.flex-row {
  display: flex;
  flex-direction: row;
}

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

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

.flex-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.with-padding {
  padding: 60px 0;
}

.with-margin {
  margin: 60px auto;
}

/* === Layout: container (mobile-first) === */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (min-width: 992px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1200px;
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1920px) {
  .container {
    width: 1440px;
    max-width: 1440px;
  }
}

/* === Buttons === */
.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 24px;
  border: 2px solid #69B518;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 38px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
}
.action-button:hover {
  background-color: #8bba34;
  color: #FFF;
}

/* === Sections === */
section.with-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* === Default template === */
.default-tpl {
  margin-top: 96px;
  min-height: max-content;
  height: max-content;
}
@media (min-width: 992px) {
  .default-tpl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.default-tpl h1,
.default-tpl h2,
.default-tpl h3,
.default-tpl h4,
.default-tpl h5,
.default-tpl h6 {
  text-align: center;
}
.default-tpl h2 {
  margin: 25px 0 0;
  color: #0E0E0E;
  font-weight: 700;
  font-size: 24px;
  line-height: 48px;
}
.default-tpl p {
  margin: 1em 0;
}
.default-tpl ul {
  margin-top: 12px;
  padding-left: 30px;
}
.default-tpl ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #0E0E0E;
}
.default-tpl ul li:not(:first-child) {
  margin-top: 12px;
}
.default-tpl ul li::before {
  content: "•";
  display: inline-block;
  margin-left: -1.3em;
  margin-right: 0.8em;
  color: #69B518;
  font-weight: 700;
}

/* === 404 === */
.not-found {
  display: flex;
  justify-content: space-around;
  min-height: max-content;
  flex-direction: column;
  row-gap: 50px;
}
@media (min-width: 768px) {
  .not-found {
    flex-direction: row;
  }
}
.not-found img {
  rotate: 270deg;
  max-width: 60%;
}
@media (min-width: 768px) {
  .not-found img {
    rotate: 0;
    max-width: 100%;
  }
}
.not-found .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.not-found .description h1 {
  margin: 48px auto 24px;
}
.not-found .description p {
  text-align: center;
}
.not-found .description .action-button {
  margin-top: 48px;
}

address {
  font-style: normal;
}

/* === Cookie banner  === */
.inactive-body {
  background-color: transparent;
}

.cookies-not-set .inactive-body {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #f6f6f6;
  opacity: 0.2;
  filter: blur(4px);
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

#cookie-notice .cookie-notice-container {
  display: flex;
  position: fixed;
  bottom: 1em;
  top: auto;
  right: 0;
  left: 0;
  flex-direction: column;
  padding: 24px;
  margin: auto;
  background-color: #f7f7f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  z-index: 200;
  width: fit-content;
  height: fit-content;
  align-items: center;
  color: #0e0e0e;
  max-width: 94%;
  column-gap: 80px;
  row-gap: 24px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  #cookie-notice .cookie-notice-container {
    flex-direction: row;
    padding: 48px;
  }
}
@media (min-width: 1200px) {
  #cookie-notice .cookie-notice-container {
    max-width: 1100px;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
#cookie-notice .cookie-notice-container .cn-text-container {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  color: #0e0e0e;
  text-align: left;
}
#cookie-notice .cookie-notice-container .cn-close-icon {
  display: none;
}
#cookie-notice .cookie-notice-container .cn-button:not(.cn-button-custom) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 24px;
  border: 2px solid #69B518;
  background: rgba(255, 255, 255, 0.1);
  color: #0E0E0E;
  padding: 14px 38px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
}
#cookie-notice .cookie-notice-container .cn-button:not(.cn-button-custom):hover {
  background-color: #8bba34 !important;
}

header {
  background: #1A1A1A;
  color: #FFF;
  position: fixed;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  transition: 0.3s;
  top: 0;
}
header .header-container {
  justify-content: space-between;
  height: 80px;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo a {
  padding: 0 0 4px;
}
header .menu-toggle {
  display: block;
  width: 34px;
  height: 24px;
  position: relative;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}
header .menu-toggle span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: #FFF;
  opacity: 1;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
}
header .menu-toggle span:nth-child(1) {
  top: 0;
}
header .menu-toggle span:nth-child(2), header .menu-toggle span:nth-child(3) {
  top: 10px;
}
header .menu-toggle span:nth-child(4) {
  top: 20px;
}
header .menu-toggle.open span:nth-child(1),
header .menu-toggle.open span:nth-child(4) {
  top: 18px;
  width: 0;
  left: 50%;
}
header .menu-toggle.open span:nth-child(2) {
  transform: rotate(45deg);
}
header .menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}
header .main-navigation {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 90%;
  height: calc(100vh - 80px);
  background: #0E0E0E;
  z-index: 1000;
  transition: left 0.35s ease-in-out;
  will-change: left;
  pointer-events: none;
  overflow-y: auto;
}
header .menu-wrap {
  align-items: center;
}
header .menu-wrap.mobile:not(.closing) .main-navigation {
  left: 0;
}
header .menu-wrap.mobile.closing .main-navigation {
  left: -100%;
  pointer-events: none;
}
header .menu-wrap.mobile .main-navigation {
  left: 0;
  pointer-events: auto;
  overflow-y: auto;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0:not(:last-child) {
  border-bottom: 2px solid #1A1A1A;
  align-items: center;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 a {
  color: #bababa;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  outline: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  padding: 24px 36px;
  text-align: start;
  display: block;
  align-items: center;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0.menu-item-has-children:has(> .submenu-toggle) > a::after {
  content: "▾";
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: #FFF;
  border: 0;
  /* background: transparent; */
  margin-left: 5px;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0.menu-item-has-children.submenu-open:has(> .submenu-toggle) > a::after {
  color: #69B518;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0.submenu-open a {
  color: #fff;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 ul.sub-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 ul.sub-menu a {
  box-sizing: border-box;
  padding: 0 16px 12px 0;
  font-weight: 400;
  line-height: 22px;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 ul.sub-menu.open {
  opacity: 1;
  transform: translateY(0);
  padding-left: 36px;
  padding-bottom: 16px;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 ul.sub-menu.open a {
  color: #bababa;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 ul.sub-menu.open .current-menu-item a {
  color: #69B518;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 li.menu-item.menu-depth-1.current-menu-item a {
  color: #69B518;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 li.menu-item.menu-depth-1 .submenu-toggle {
  display: none;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 li.menu-item.menu-depth-1 ul.sub-menu {
  height: auto !important;
  overflow: visible !important;
  transition: none !important;
  padding-left: 36px;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 li.menu-item.menu-depth-1 li.menu-item.menu-depth-2 a {
  color: #bababa;
}
header .menu-wrap.mobile .main-navigation li.menu-item.menu-depth-0 li.menu-item.menu-depth-1 li.menu-item.menu-depth-2.current-menu-item a {
  color: #69B518;
}
header .menu-wrap.mobile .main-navigation li.menu-item.current-menu-item a {
  color: #69B518;
}
header .menu-wrap.mobile li.contact-us.menu-item.menu-depth-0 .menu-link {
  width: 132px;
  height: 42px;
  border-radius: 24px;
  border: 2px solid #69B518;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  text-align: center;
  justify-content: center;
  color: #FFF;
  font-size: 15px;
  line-height: 38px;
  padding: 0;
  margin: 24px 36px;
}
@media (min-width: 992px) {
  header .menu-wrap.mobile li.contact-us.menu-item.menu-depth-0 .menu-link {
    line-height: 42px;
  }
}
header .menu-wrap.mobile li.contact-us.menu-item.menu-depth-0:hover .menu-link {
  background: #69B518;
}
header .menu-wrap.mobile li.contact-us.menu-item.menu-depth-0::after {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .menu-wrap.mobile .main-navigation ul.sub-menu {
    transition: none;
  }
}
@media (min-width: 992px) {
  header .menu-toggle {
    display: none;
  }
  header .menu-wrap {
    display: block;
  }
  header .menu-wrap.mobile .main-navigation {
    left: auto;
    width: auto;
    background: transparent;
    height: auto;
  }
  header {
    /* ===========================
       Navigation base
    =========================== */
  }
  header .main-navigation {
    display: flex;
    text-align: center;
    position: static;
    top: unset;
    left: unset;
    width: 100%;
    max-width: none;
    height: 96px;
    transition: none;
    pointer-events: auto;
    will-change: auto;
    z-index: auto;
    overflow-y: visible;
    background: #1A1A1A;
  }
  header .main-navigation .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 23px;
    height: 100%;
  }
  header {
    /* ===========================
       CTA item
    =========================== */
    /* ===========================
       Submenu toggle (arrow)
    =========================== */
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1399px) {
  header .main-navigation .menu {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  header .main-navigation .menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    /* Li 2-го рівня над усім в середині свого dropdown */
  }
  header .main-navigation .menu > li.menu-item-has-children {
    position: relative;
    z-index: 2;
  }
  header .main-navigation .menu > li::after {
    content: "";
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -4px);
    width: 6px;
    height: 6px;
    background: #69B518;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.22s ease;
  }
  header .main-navigation .menu-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    line-height: 1;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #bababa;
  }
  header .main-navigation .menu-link:hover {
    color: #FFF;
  }
  header .contact-us.menu-item {
    display: flex;
    justify-content: center;
    margin-left: 26px;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1399px) {
  header .contact-us.menu-item {
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  header .contact-us.menu-item .menu-link {
    width: 135px;
    height: 45px;
    border-radius: 24px;
    border: 2px solid #69B518;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    text-align: center;
    justify-content: center;
    color: #FFF;
  }
  header .contact-us.menu-item:hover .menu-link {
    background: #69B518;
  }
  header .contact-us.menu-item::after {
    display: none;
  }
  header .submenu-toggle {
    border: 0;
    background: transparent;
    margin-left: 2px;
    cursor: pointer;
    vertical-align: middle;
    position: static;
    padding: 0;
    color: #FFF;
  }
  header .submenu-toggle::after {
    content: "▾";
    display: inline-block;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 3px;
    color: #FFF;
  }
  header .main-navigation .menu > li:hover .submenu-toggle::after {
    color: #69B518;
  }
  header .main-navigation .menu .sub-menu li.menu-item-has-children.menu-depth-1 .submenu-toggle::after {
    content: "▸";
  }
}
@media (min-width: 992px) {
  /* ===========================
     Desktop only
  =========================== */
  header .header-container {
    justify-content: space-between;
    height: 96px;
  }
  header .main-navigation {
    /* Level 2 dropdown (можна анімувати Y) */
  }
  header .main-navigation .menu > li.menu-depth-0 > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: fit-content;
    max-width: 315px;
    background: #f7f7f7;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    padding: 24px 0;
    border-radius: 12px 0 0 12px;
    /* без правого закруглення — зробимо окремо */
    overflow: visible;
    /* щоб псевдоелемент не обрізався */
    z-index: 2;
    transition: opacity 0.18s ease, transform 0.22s ease;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    /* білий трикутник як був */
  }
  header .main-navigation .menu > li.menu-depth-0 > .sub-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 28px;
    width: 28px;
    height: 28px;
    background: #f7f7f7;
    transform: rotate(45deg);
    box-shadow: -3px -3px 6px rgba(0, 0, 0, 0.05);
    border-radius: 2px 0 0 0;
  }
  header .main-navigation .menu > li.menu-depth-0 > .sub-menu {
    /* 🎯 псевдоелемент для правого бордера+бекграунду */
  }
  header .main-navigation .menu > li.menu-depth-0 > .sub-menu::after {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    /* виступ за межі */
    width: 12px;
    /* трохи ширше, щоб не було щілини */
    height: 100%;
    background: #f7f7f7;
    /* той самий колір, що й фон меню */
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 3;
    /* поверх фону 3-го рівня */
    pointer-events: none;
    /* щоб не перехоплювало hover */
  }
  header .main-navigation .menu > li:hover > .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  }
  header .main-navigation .menu > li:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  header .main-navigation {
    /* 2-й рівень: рядки в dropdown */
  }
  header .main-navigation .sub-menu > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    margin-left: 12px;
    cursor: pointer;
  }
  header .main-navigation .sub-menu > li:hover a {
    color: #69B518;
  }
  header .main-navigation .sub-menu > li a:hover {
    color: #69B518;
  }
  header .main-navigation .sub-menu > li.menu-item-has-children.menu-depth-1:hover {
    background: #edf6e3;
    cursor: pointer;
  }
  header .main-navigation .sub-menu > li.menu-item-has-children.menu-depth-1:hover .sub-menu::after {
    background: transparent;
  }
  header .main-navigation .sub-menu > li > .menu-link {
    display: block;
    color: #0E0E0E;
    white-space: nowrap;
    transition: background 0.15s ease;
  }
  header .main-navigation .sub-menu > li.menu-depth-1 li {
    padding: 0 12px;
    margin-left: 0;
  }
  header .main-navigation .sub-menu > li.menu-depth-1 li.menu-depth-2 > .menu-link:hover {
    background: transparent !important;
    color: #69B518;
  }
  header .main-navigation {
    /* Level 3 panel — ВАЖЛИВО:
       без transform/backdrop-filter, щоб не створювати stacking context.
       z-index нижчий за батьківський li (який має z-index:2) */
  }
  header .main-navigation .sub-menu > li.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    min-width: 250px;
    max-width: 300px;
    background: #f7f7f7;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 12px 0 36px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
    z-index: 1;
    /* під li (z-index:2) */
    padding: 70px 0 8px;
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    /* тільки прозорість — без transform */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    margin-left: 0;
  }
  header .main-navigation .sub-menu > li.menu-item-has-children > .sub-menu::before {
    content: "Niche expertise";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    letter-spacing: 0.2px;
    text-transform: none;
    display: block;
    padding: 36px 24px 12px 40px;
    color: #bababa;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    cursor: auto;
  }
  header .main-navigation .sub-menu > li.menu-item-has-children > .sub-menu li {
    width: fit-content;
  }
  header .main-navigation .sub-menu > li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
  }
  header .main-navigation .sub-menu > li.menu-item-has-children > .sub-menu > li > .menu-link {
    display: block;
    padding: 12px 20px;
    color: #0E0E0E;
    font-weight: 600;
  }
  header .main-navigation .sub-menu > li.menu-item-has-children > .sub-menu > li > .menu-link:hover {
    background: #f6f9f4;
  }
  header .main-navigation .sub-menu > li.menu-item-has-children > .sub-menu {
    background: #f7f7f7;
    overflow: hidden;
    box-shadow: inset 14px 0 24px rgba(0, 0, 0, 0.13);
    padding-left: 8px;
  }
  header .main-navigation .menu > li > .sub-menu li.menu-item-has-children:hover::after {
    background: rgba(247, 247, 250, 0.8);
  }
}
.swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  background: #FFF;
  transition: background 0.3s;
}

.swiper-pagination-bullet-active {
  background: #69B518;
}

.dark .swiper-pagination-bullet {
  background: #0E0E0E;
}
.dark .swiper-pagination-bullet-active {
  background: #69B518;
}

@media (min-width: 576px) {
  .dots {
    display: none;
  }
}
.top-page-wrap .top-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 700px;
  height: calc(100vh - 50px);
  padding: 96px 20px 50px;
}
@media (min-width: 768px) {
  .top-page-wrap .top-page {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (min-width: 992px) {
  .top-page-wrap .top-page {
    padding: 146px 50px 50px;
    min-height: 500px;
    height: 100vh;
  }
}
.top-page-wrap h1 {
  margin: 0 0 24px;
  text-align: center;
  color: #FFF;
  font-weight: 600;
  line-height: 1.1;
}
.top-page-wrap p {
  margin: 0;
  padding-top: 12px;
  text-align: center;
  color: #FFF;
  max-width: 100%;
}
@media (min-width: 768px) {
  .top-page-wrap p {
    max-width: 750px;
  }
}
.top-page-wrap .special-offer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  text-align: center;
  color: #FFF;
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 768px) {
  .top-page-wrap .special-offer {
    margin-top: 48px;
    font-size: 24px;
  }
}
.top-page-wrap .special-offer span {
  margin: 0 0 10px 5px;
  font-style: normal;
  color: #FFF;
  font-weight: 600;
  font-size: 32px;
}
@media (min-width: 768px) {
  .top-page-wrap .special-offer span {
    font-size: 48px;
  }
}
.top-page-wrap a {
  color: #FFF;
}
.top-page-wrap .action-button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .top-page-wrap .action-button {
    margin-top: 48px;
  }
}

.our-clients .our-clients-bg {
  padding: 0;
  background-image: url("../img/map-tablet.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 30%;
}
@media (min-width: 576px) {
  .our-clients .our-clients-bg {
    background-position: 50%;
  }
}
@media (min-width: 992px) {
  .our-clients .our-clients-bg {
    background-image: url("../img/clients-map-bg.svg");
    background-position: 100%;
    background-size: auto;
  }
}
@media (min-width: 1920px) {
  .our-clients .our-clients-bg {
    background-position: 75%;
  }
}
.our-clients h2 {
  color: #0E0E0E;
  max-width: 720px;
}
.our-clients .section-content {
  max-width: 720px;
}
.our-clients .section-content p {
  text-align: left;
  padding-bottom: 20px;
  margin: 0;
}
.our-clients .clients {
  margin-top: 24px;
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .our-clients .clients {
    margin-top: 48px;
    gap: 36px;
  }
}

.awards_wrapp {
  background: #0E0E0E;
}
.awards_wrapp .awards-slider {
  position: relative;
}
.awards_wrapp .awards {
  position: relative;
  padding-bottom: 54px;
}
.awards_wrapp .awards a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.awards_wrapp .awards img {
  width: auto;
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
}
.awards_wrapp .awards .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .awards_wrapp .awards {
    padding-bottom: 0;
  }
  .awards_wrapp .awards .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transform: none !important;
    gap: 30px;
  }
  .awards_wrapp .awards .swiper-slide {
    flex-basis: 25%;
  }
  .awards_wrapp .awards .swiper-slide img {
    height: 120px;
  }
  .awards_wrapp .awards .swiper-pagination {
    display: none;
  }
}
@media (min-width: 992px) {
  .awards_wrapp .awards .swiper-wrapper {
    justify-content: space-between;
    gap: 0;
  }
  .awards_wrapp .awards .swiper-slide {
    flex-basis: content;
  }
  .awards_wrapp .awards .swiper-slide img {
    height: 150px;
  }
}

.services_wrapp .section-content {
  max-width: 720px;
  text-align: left;
  margin: 0;
  color: #0E0E0E;
}
.services_wrapp .services {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .services_wrapp .services {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }
}
.services_wrapp .services .service_item {
  padding: 25px 15px;
  background-color: #F7F7F7;
  border: 4px solid transparent;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .services_wrapp .services .service_item {
    padding: 36px 24px;
  }
}
.services_wrapp .services .service_item a,
.services_wrapp .services .service_item a:hover {
  color: #0E0E0E;
}
.services_wrapp .services .service_item div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.services_wrapp .services .service_item .service-card-icon {
  margin-bottom: 24px;
}
.services_wrapp .services .service_item h3 {
  text-align: center;
  color: #0E0E0E;
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  line-height: 22px;
}
@media (min-width: 768px) {
  .services_wrapp .services .service_item h3 {
    font-size: 18px;
  }
}
.services_wrapp .services .service_item p {
  text-align: center;
  margin-top: 12px;
  color: #0E0E0E;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}
@media (min-width: 768px) {
  .services_wrapp .services .service_item p {
    font-size: 14px;
    line-height: 28px;
  }
}
.services_wrapp.dark-bg h2,
.services_wrapp.dark-bg .section-content {
  color: #FFF;
}
.services_wrapp.dark-bg .linked {
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  color: #FFF;
  border: 4px solid transparent;
}
.services_wrapp.dark-bg .linked h3,
.services_wrapp.dark-bg .linked p {
  color: #FFF;
}
.services_wrapp.dark-bg .linked:hover a,
.services_wrapp.dark-bg .linked:hover a:hover {
  color: #FFF;
}
.services_wrapp .linked-hover:hover {
  border: 4px solid #69B518;
}

.industries_wrapp .section-title {
  text-align: center;
}
.industries_wrapp .swipe-container .industries-block {
  display: none;
  opacity: 0;
}
.industries_wrapp .swipe-container .industries-block.active {
  display: flex;
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.25s;
}
.industries_wrapp .tab-container {
  margin-top: 12px;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .industries_wrapp .tab-container {
    margin-top: 48px;
  }
}
.industries_wrapp .tab-container .tab-strip {
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 40px;
}
@media (min-width: 768px) {
  .industries_wrapp .tab-container .tab-strip {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .industries_wrapp .tab-container .tab-strip {
    gap: 12px;
    min-height: 60px;
  }
}
.industries_wrapp .tab-container .tab-strip button,
.industries_wrapp .tab-container .tab-strip a {
  color: #0E0E0E;
  background-color: #F7F7F7;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  border: none;
  border-radius: 12px;
  box-shadow: none;
  cursor: pointer;
  height: 38px;
  padding: 8px 15px;
}
.industries_wrapp .tab-container .tab-strip button.active,
.industries_wrapp .tab-container .tab-strip a.active {
  color: #FFF;
  background-color: #69B518;
}
.industries_wrapp .tab-container .tab-strip button:hover,
.industries_wrapp .tab-container .tab-strip a:hover {
  color: #69B518;
  background-color: #EDF6E3;
}
@media (min-width: 768px) {
  .industries_wrapp .tab-container .tab-strip button,
  .industries_wrapp .tab-container .tab-strip a {
    height: 40px;
    padding: 10px 15px;
  }
}
@media (min-width: 992px) {
  .industries_wrapp .tab-container .tab-strip button,
  .industries_wrapp .tab-container .tab-strip a {
    height: 42px;
    padding: 10px;
  }
}
@media (min-width: 1200px) {
  .industries_wrapp .tab-container .tab-strip button,
  .industries_wrapp .tab-container .tab-strip a {
    height: 48px;
    padding: 10px 20px;
  }
}
.industries_wrapp .hidden,
.industries_wrapp .inactive {
  display: none;
}
.industries_wrapp article {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .industries_wrapp article {
    min-height: 540px;
    margin-top: 48px;
  }
}
@media (min-width: 992px) {
  .industries_wrapp article {
    min-height: 570px;
  }
}
.industries_wrapp article .industry {
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  min-height: 100%;
  height: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .industries_wrapp article .industry {
    width: 80%;
    left: 20%;
    min-height: 525px;
  }
}
.industries_wrapp article .industry h3 {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}
.industries_wrapp article .industry div {
  position: relative;
  top: 0;
  right: unset;
  width: 100%;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 15px;
  background-color: rgba(247, 247, 247, 0.85);
  color: #0E0E0E;
  border: 4px solid transparent;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .industries_wrapp article .industry div {
    margin: 0;
    top: 50px;
    right: 25%;
    width: 588px;
    padding: 36px 24px;
    background-color: #F7F7F7;
  }
}
@media (min-width: 992px) {
  .industries_wrapp article .industry div {
    top: 96px;
  }
}
.industries_wrapp article .industry div:hover {
  border: 4px solid #69B518;
}
.industries_wrapp article .industry div p {
  margin-bottom: 20px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .industries_wrapp article .industry div p {
    font-size: 14px;
  }
}
.industries_wrapp article .industry div p:last-child {
  margin-bottom: 0;
}
.industries_wrapp article .industry div a {
  color: #0E0E0E;
}
.industries_wrapp article .industry div ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 768px) {
  .industries_wrapp article .industry div ul {
    margin: 20px 0 0;
  }
}
.industries_wrapp article .industry div ul li {
  margin: 5px;
}
.industries_wrapp article .industry div ul a {
  display: block;
  padding: 5px 9px;
  background-color: #69B518;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .industries_wrapp article .industry div ul a {
    padding: 5px 10px;
  }
}
.industries_wrapp article .industry div ul a:hover {
  background-color: #529010;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.testimonials-wrapp {
  color: #FFF;
}
.testimonials-wrapp .section-title h2 {
  color: #FFF;
  line-height: 1;
}
.testimonials-wrapp .section-content {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .testimonials-wrapp .section-content {
    margin-top: 48px;
    gap: 48px;
    flex-direction: row;
  }
}
@media (min-width: 576px) {
  .testimonials-wrapp .description {
    width: 50%;
  }
}
.testimonials-wrapp .description p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 28px;
}
.testimonials-wrapp .description p:last-child {
  margin-bottom: 0;
}
.testimonials-wrapp .testimonial-item {
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 24px;
}
@media (min-width: 576px) {
  .testimonials-wrapp .testimonial-item {
    width: 50%;
  }
}
.testimonials-wrapp .testimonial-item .testimonial p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 28px;
}
.testimonials-wrapp .testimonial-item .client {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.testimonials-wrapp .testimonial-item .client .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}
.testimonials-wrapp .testimonial-item .client img {
  border-radius: 100%;
}

main section.contact-us:first-child {
  margin-top: 120px;
}
@media (min-width: 992px) {
  main section.contact-us:first-child {
    margin-top: 156px;
  }
}

.contact-us .section-title {
  text-align: center;
}
.contact-us .section-content {
  margin: 12px 0;
  font-size: 16px;
  text-align: center;
  padding-top: 12px;
  line-height: 28px;
}
.contact-us .form-container {
  margin-top: 48px;
  justify-content: space-between;
  column-gap: 4%;
  width: 100%;
  box-sizing: border-box;
}
.contact-us .form-container .form {
  padding: 36px 24px;
  min-width: 100%;
  border-radius: 12px;
  background: #F7F7F7;
}
@media (min-width: 992px) {
  .contact-us .form-container .form {
    min-width: 55%;
  }
}
.contact-us .form-container .img {
  border-radius: 12px;
  flex: 1 1 40%;
  min-width: 30%;
  display: none;
}
@media (min-width: 992px) {
  .contact-us .form-container .img {
    display: block;
  }
}
.contact-us .form-container .form .wpcf7-form {
  row-gap: 12px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.contact-us .form-container .form .wpcf7-form p {
  line-height: 24px;
}
.contact-us .form-container .form .wpcf7-form input.wpcf7-form-control.wpcf7-submit {
  color: #0E0E0E;
  border: 2px solid #69B518;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  padding: 14px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: fit-content;
  margin: auto;
  margin-top: 36px;
  cursor: pointer;
}
.contact-us .form-container .form .wpcf7-form input.wpcf7-form-control.wpcf7-submit:disabled {
  color: #BABABA;
  background-color: transparent;
  border: 2px solid rgba(105, 181, 24, 0.37);
}
.contact-us .form-container .form .wpcf7-form label {
  font-style: normal;
  font-size: 14px;
  line-height: 28px;
  color: #0E0E0E;
}
.contact-us .form-container .form .wpcf7-form label textarea,
.contact-us .form-container .form .wpcf7-form label input[type=text],
.contact-us .form-container .form .wpcf7-form label input[type=email] {
  background: transparent;
  outline: none;
  box-shadow: none;
  border-radius: 12px;
  border: 0.6px solid #BABABA;
  padding: 10px 12px;
  color: #0E0E0E;
  font-family: "Fixel Text", sans-serif;
  font-display: swap;
  width: 100%;
}
@media (min-width: 992px) {
  .contact-us .form-container .form .wpcf7-form label textarea,
  .contact-us .form-container .form .wpcf7-form label input[type=text],
  .contact-us .form-container .form .wpcf7-form label input[type=email] {
    width: calc(100% - 24px);
  }
}
.contact-us .form-container .form .wpcf7-form label textarea:focus,
.contact-us .form-container .form .wpcf7-form label input[type=text]:focus,
.contact-us .form-container .form .wpcf7-form label input[type=email]:focus {
  border-color: #69B518;
}
.contact-us .form-container .form .wpcf7-form label input[type=text]::placeholder,
.contact-us .form-container .form .wpcf7-form label input[type=email]::placeholder,
.contact-us .form-container .form .wpcf7-form label textarea::placeholder {
  font-family: "Fixel Text", sans-serif;
  color: #929292;
  font-display: swap;
}
.contact-us .form-container .form .wpcf7-form label textarea {
  resize: none;
}
.contact-us .form-container .form .wpcf7-form label.upload_link {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-style: normal;
  line-height: 24px;
  background-image: url(../img/upload-icon.svg);
  padding: 0 0 0 36px;
  border-radius: 0;
  background-repeat: no-repeat;
  position: relative;
  margin: 10px 0;
}
.contact-us .form-container .form .wpcf7-form label.upload_link input[type=file] {
  display: none;
}
.contact-us .form-container .form .wpcf7-form label.upload_link .upload-file-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #69B518;
}
.contact-us .form-container .form .wpcf7-form label.upload_link span {
  text-decoration: underline;
  text-decoration-color: #F7F7F7;
}
.contact-us .form-container .form .wpcf7-form label.upload_link:hover {
  text-decoration: underline;
  color: #69B518;
}
.contact-us .form-container .form .wpcf7-form label.upload_link span#fileName {
  font-size: 14px;
  line-height: 24px;
  color: #69B518;
}
.contact-us .form-container .form .wpcf7-form label.upload_link .wpcf7-not-valid-tip {
  padding-right: 20px;
}
.contact-us .form-container .form .wpcf7-form label.upload_link .clear-file {
  font-size: 24px;
  line-height: 24px;
  padding-left: 5px;
  font-weight: 600;
  cursor: pointer;
  color: #69B518;
  display: none;
}
.contact-us .form-container .form .wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
.contact-us .form-container .form .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contact-us .form-container .form .wpcf7-form .wpcf7-checkbox label,
.contact-us .form-container .form .wpcf7-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
}
.contact-us .form-container .form .wpcf7-form input[type=checkbox] {
  position: relative;
  border: 1px solid #69B518;
  border-radius: 6px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 1em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 24px;
  width: 24px;
  opacity: 1;
  min-width: 24px;
  min-height: 24px;
}
.contact-us .form-container .form .wpcf7-form input[type=checkbox]:hover {
  opacity: 1;
}
.contact-us .form-container .form .wpcf7-form input[type=checkbox]:checked {
  background-color: #69B518;
  opacity: 1;
}
.contact-us .form-container .form .wpcf7-form input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.contact-us .form-container .form .wpcf7-form.invalid .wpcf7-response-output, .contact-us .form-container .form .wpcf7-form.unaccepted .wpcf7-response-output, .contact-us .form-container .form .wpcf7-form.payment-required .wpcf7-response-output {
  border-color: #B51818;
}
.contact-us .form-container .form .wpcf7-form .wpcf7-not-valid-tip {
  color: #B51818;
}
.contact-us .form-container .form .wpcf7-form .accept-policy {
  display: flex;
  align-items: flex-start;
  font-size: 0;
}
.contact-us .form-container .form .wpcf7-form .accept-policy input {
  position: relative;
  border: 1px solid #69B518;
  border-radius: 6px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 4px 1em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 24px;
  width: 24px;
  opacity: 1;
  min-width: 24px;
  min-height: 24px;
}
.contact-us .form-container .form .wpcf7-form .accept-policy input:hover {
  opacity: 1;
}
.contact-us .form-container .form .wpcf7-form .accept-policy input:checked {
  background-color: #69B518;
  opacity: 1;
}
.contact-us .form-container .form .wpcf7-form .accept-policy input:checked::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.contact-us .form-container .form .wpcf7-form .accept-policy:not(:first-child) {
  margin-top: 4px;
}
.contact-us .form-container .form .wpcf7-form .accept-policy label {
  color: #0E0E0E;
}
.contact-us .form-container .form .wpcf7-form .footer {
  justify-content: space-between;
  align-items: center;
}
.contact-us .form-container .form .wpcf7-form .footer .upload-file-block {
  display: flex;
  flex-direction: column;
}
.contact-us .form-container .form .wpcf7-form .footer .upload-file-block .files-list {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  margin-top: 8px;
}
.contact-us .form-container .form .wpcf7-form .footer .upload-file-block .files-list-item {
  font-size: 12px;
  color: #69B518;
}
.contact-us .form-container .form .wpcf7-form .footer .upload-file-block .files-list-item .delete-button {
  color: #69B518;
  margin-left: 4px;
  font-weight: 500;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
}
.contact-us .form-container .form .wpcf7-form .footer .upload-file-block .files-list-item .delete-button:hover {
  color: #8bba34;
}
.contact-us .form-container .form .wpcf7-form .footer .upload-file-block #upload_link {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #69B518;
  display: flex;
  align-items: center;
  font-style: normal;
  column-gap: 12px;
}
.contact-us .form-container .form .wpcf7-form .footer .upload-file-block #upload_link:hover {
  text-decoration: underline;
}
.contact-us .form-container .form .wpcf7-form .footer #upload {
  display: none;
}
.contact-us .form-container .form .wpcf7-form .action-button {
  color: #0E0E0E;
  align-self: center;
  margin-top: 36px;
}
.contact-us .form-container .form .wpcf7-form .action-button:disabled {
  color: #BABABA;
  background-color: transparent;
  border: 2px solid rgba(105, 181, 24, 0.37);
}
.contact-us .form-container .form .wpcf7-form .action-button .spinner {
  position: absolute;
}

.steps-wrapp {
  color: #FFF;
}
.steps-wrapp .section-title {
  text-align: center;
}
.steps-wrapp .section-title h2 {
  color: #FFF;
  max-width: 1000px;
  margin: auto;
}
.steps-wrapp .section-content {
  margin: auto;
  max-width: 70%;
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
}
.steps-wrapp .steps {
  width: 100%;
  display: grid;
  align-items: start;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 48px 60px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .steps-wrapp .steps {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .steps-wrapp .steps {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.steps-wrapp .steps .step-item {
  justify-content: start;
  height: 100%;
  min-width: 30%;
  color: #fff;
}
.steps-wrapp .steps .step-item .step-number {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-bottom: 24px;
}
.steps-wrapp .steps .step-item .step-number img {
  max-width: 100px;
  height: 60px;
}
@media (min-width: 992px) {
  .steps-wrapp .steps .step-item .step-number img {
    max-width: 120px;
    height: 74px;
  }
}
.steps-wrapp .steps .step-item .step-number .dot {
  height: 12px;
  width: 12px;
  background-color: #69b518;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.steps-wrapp .steps .step-item .step-number .line {
  height: 1px;
  width: 125%;
  background-color: #69b518;
  position: absolute;
  top: 50%;
}
.steps-wrapp .steps .step-item .step-number .line.start {
  width: 70%;
  left: 50%;
}
.steps-wrapp .steps .step-item .step-number .line.end {
  width: 70%;
  right: 50%;
}
.steps-wrapp .steps .step-item .step-content {
  height: calc(100% - 98px);
  width: 100%;
  padding: 36px 24px;
  row-gap: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-sizing: border-box;
}
.steps-wrapp .steps .step-item .step-content h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
}
.steps-wrapp .steps .step-item .step-content .step-description {
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
}

.cta-block-wrap {
  background-image: url(../img/call-to.webp);
  padding-top: 60px;
  padding-bottom: 60px;
}
.cta-block-wrap .cta-block {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  gap: 24px;
  color: #fff;
}
@media (min-width: 992px) {
  .cta-block-wrap .cta-block {
    flex-direction: row;
    padding: 36px;
    column-gap: 36px;
  }
}
.cta-block-wrap .cta-block .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
}
@media (min-width: 992px) {
  .cta-block-wrap .cta-block .title {
    width: 25%;
    text-align: left;
  }
}
.cta-block-wrap .cta-block .description {
  text-align: center;
  padding-right: 15px;
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
}
@media (min-width: 992px) {
  .cta-block-wrap .cta-block .description {
    width: 45%;
  }
}
.cta-block-wrap .cta-block .action-button {
  border-radius: 24px;
  border: 2px solid #69B518;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  padding: 14px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: fit-content;
  color: white;
}
.cta-block-wrap .cta-block .action-button:hover {
  background-color: #8bba34;
  color: #fff;
}

.case-studies-wrapp {
  color: #0E0E0E;
}
.case-studies-wrapp .section-title {
  text-align: center;
}
.case-studies-wrapp .section-content {
  text-align: center;
  max-width: 100%;
  margin: auto;
}
@media (min-width: 576px) {
  .case-studies-wrapp .section-content {
    max-width: 850px;
  }
}
.case-studies-wrapp .case-studies-list {
  width: 100%;
  max-width: 100%;
  row-gap: 60px;
  padding-bottom: 50px;
  padding-top: 20px;
}
@media (min-width: 576px) {
  .case-studies-wrapp .case-studies-list {
    padding-top: 0;
  }
}
@media (min-width: 576px) {
  .case-studies-wrapp .case-studies-list.swiper-wrapper {
    display: block;
    padding-bottom: 0;
  }
}
.case-studies-wrapp .case-studies-list .case-study-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  position: relative;
  background-size: 1000px auto;
  background-position: left;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  .case-studies-wrapp .case-studies-list .case-study-block {
    margin-top: 40px;
    min-height: 525px;
  }
}
.case-studies-wrapp .case-studies-list .case-study-block .case-study {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  border-radius: 24px;
}
@media (min-width: 576px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study {
    width: 80%;
    min-height: 525px;
  }
}
@media (min-width: 768px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study {
    width: 65%;
  }
}
.case-studies-wrapp .case-studies-list .case-study-block .case-study .case-studies-content {
  margin: 20px;
  width: calc(100% - 40px);
  position: relative;
  border-radius: 24px;
  padding: 24px;
  background-color: rgba(247, 247, 247, 0.7);
  backdrop-filter: blur(6px);
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 400;
  white-space: pre-line;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study .case-studies-content {
    background-color: #f7f7f7;
    margin: 10% 0;
    width: 425px;
    left: -25%;
    backdrop-filter: unset;
  }
}
@media (min-width: 768px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study .case-studies-content {
    width: 590px;
    left: -54%;
  }
}
.case-studies-wrapp .case-studies-list .case-study-block .case-study .case-studies-content .description {
  text-align: left;
  line-height: 28px;
}
.case-studies-wrapp .case-studies-list .case-study-block .case-study .case-studies-content a {
  margin-top: 20px;
  padding-left: 0;
  color: #69b518;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 576px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study .case-studies-content a {
    margin-top: 40px;
  }
}
.case-studies-wrapp .case-studies-list .case-study-block .case-study .case-studies-content a:hover {
  text-decoration: underline;
}
.case-studies-wrapp .case-studies-list .case-study-block .case-study.reverse {
  background-position: left;
  align-items: flex-end;
  left: unset;
}
@media (min-width: 576px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study.reverse {
    right: 20%;
  }
}
@media (min-width: 768px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study.reverse {
    right: 35%;
  }
}
@media (min-width: 576px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study.reverse .case-studies-content {
    left: 25%;
  }
}
@media (min-width: 768px) {
  .case-studies-wrapp .case-studies-list .case-study-block .case-study.reverse .case-studies-content {
    left: 54%;
  }
}

.insights_wrapper .section-title {
  text-align: center;
}
.insights_wrapper .insights-list {
  color: #0E0E0E;
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .insights_wrapper .insights-list {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .insights_wrapper .insights-list {
    margin-top: 36px;
    gap: 24px;
  }
}
.insights_wrapper .insights-list .swiper-wrapper {
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .insights_wrapper .insights-list .swiper-wrapper {
    padding-bottom: 0;
  }
}
.insights_wrapper .insights-list .swiper-slide {
  flex-basis: 100%;
  flex-grow: 1;
  color: #FFF;
}
@media (min-width: 576px) {
  .insights_wrapper .insights-list .swiper-slide {
    flex-basis: 48%;
  }
}
@media (min-width: 1200px) {
  .insights_wrapper .insights-list .swiper-slide {
    flex-basis: 30%;
  }
}
.insights_wrapper .insights-list .insights-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 308px;
  color: #FFF;
  padding: 24px;
  backdrop-filter: blur(12px);
  border: 4px solid;
  border-radius: 12px;
  box-sizing: border-box;
}
.insights_wrapper .insights-list .insights-item:hover {
  border: 4px solid #69B518;
}
.insights_wrapper .insights-list .insights-item:hover .insights-title {
  color: #69B518;
}
.insights_wrapper .insights-list .insights-item .insights-meta {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.insights_wrapper .insights-list .insights-item .insights-meta span {
  color: #FFF;
}
.insights_wrapper .insights-list .insights-item .insights-meta .insights-taxonomy {
  padding: 2px 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  border-radius: 6px;
  background: #69B518;
  display: block;
}
.insights_wrapper .insights-list .insights-item .insights-title {
  height: 100%;
  display: flex;
  margin: auto;
}
.insights_wrapper .insights-list .insights-item .insights-title span {
  font-size: 18px;
  text-align: center;
  margin: 0;
  font-weight: 700;
  line-height: 22px;
}
.insights_wrapper.related .insights-list {
  display: grid;
  row-gap: 30px;
  grid-template-columns: 1fr;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .insights_wrapper.related .insights-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .insights_wrapper.related .insights-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.clients_say_wrapp {
  background: #0E0E0E;
  color: #FFF;
}
.clients_say_wrapp .section-title {
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.clients_say_wrapp .section-title h2 {
  color: #FFF;
}
.clients_say_wrapp .section-content {
  font-size: 16px;
  text-align: left;
  margin: 0;
  line-height: 28px;
}
@media (min-width: 576px) {
  .clients_say_wrapp .section-content {
    padding-top: 12px;
  }
}
.clients_say_wrapp .testimonial-item {
  margin-top: 30px;
  border-radius: 6px;
  min-width: 100%;
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .clients_say_wrapp .testimonial-item {
    margin-top: 48px;
    padding-bottom: 50px;
  }
}
.clients_say_wrapp .testimonial-content {
  padding: 20px;
  align-items: center;
  border-radius: 12px;
  background: #1A1A1A;
  backdrop-filter: blur(12px);
  opacity: 1;
  flex-direction: row;
  column-gap: 48px;
  color: #FFF;
  max-width: 100%;
  line-height: 20px;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
@media (min-width: 576px) {
  .clients_say_wrapp .testimonial-content {
    padding: 36px;
  }
}
.clients_say_wrapp .testimonial-content img {
  display: none;
}
@media (min-width: 992px) {
  .clients_say_wrapp .testimonial-content img {
    display: block;
  }
}
.clients_say_wrapp .content {
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clients_say_wrapp .content .text {
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}
.clients_say_wrapp .content .text p {
  margin-bottom: 28px;
}
.clients_say_wrapp .content .client {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.clients_say_wrapp .content .client .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}
.clients_say_wrapp .content .client img {
  border-radius: 100%;
  display: block;
}
@media (min-width: 992px) {
  .clients_say_wrapp .content .client img {
    display: none;
  }
}
@media (min-width: 768px) {
  .clients_say_wrapp .dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .clients_say_wrapp .dots .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
}

.why-exoft-wrapp {
  color: #0E0E0E;
  text-align: center;
}
.why-exoft-wrapp .section-content {
  max-width: 660px;
  margin: auto;
}
.why-exoft-wrapp .why-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 30px;
  box-sizing: border-box;
  row-gap: 20px;
  column-gap: 10px;
}
@media (min-width: 768px) {
  .why-exoft-wrapp .why-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
    row-gap: 48px;
    column-gap: 60px;
  }
}
.why-exoft-wrapp .why-items .why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 992px) {
  .why-exoft-wrapp .why-items .why-item {
    flex-direction: row;
  }
}
.why-exoft-wrapp .why-items .why-item .why-card-icon {
  background-color: #f7f7f7;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  width: 140px;
  min-height: 140px;
  height: 140px;
  position: relative;
}
.why-exoft-wrapp .why-items .why-item h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
@media (min-width: 992px) {
  .why-exoft-wrapp .why-items .why-item h3 {
    text-align: start;
  }
}

.values-wrapp {
  color: #FFF;
}
.values-wrapp .section-title h2 {
  color: #FFF;
}
.values-wrapp .value-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 24px;
  gap: 24px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .values-wrapp .value-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
  }
}
.values-wrapp .value-items .value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 25px 20px;
  gap: 6px;
}
@media (min-width: 992px) {
  .values-wrapp .value-items .value-item {
    padding: 36px 24px;
    gap: 14px;
  }
}
.values-wrapp .value-items .value-item h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
}
.values-wrapp .value-items .value-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.choose-model-wrapp {
  color: #FFF;
}
.choose-model-wrapp .section-title {
  text-align: center;
}
.choose-model-wrapp .section-title h2 {
  color: #FFF;
}
.choose-model-wrapp .model-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 24px;
  column-gap: 24px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .choose-model-wrapp .model-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
  }
}
.choose-model-wrapp .model-items .model-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 36px 24px;
  margin-bottom: 24px;
}
.choose-model-wrapp .model-items .model-item h3 {
  line-height: 36px;
  margin: 24px 0 12px;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
}
.choose-model-wrapp .model-items .model-item p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.choose-model-wrapp .model-items .model-item p:last-child {
  margin-bottom: 0;
}
.choose-model-wrapp .model-items .model-item a {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.choose-model-wrapp .linked {
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  color: #fff;
  border: 4px solid transparent;
}
.choose-model-wrapp .linked:hover a,
.choose-model-wrapp .linked:hover a:hover {
  color: #0e0e0e;
}
.choose-model-wrapp .linked h3,
.choose-model-wrapp .linked p {
  color: #fff;
}
.choose-model-wrapp .linked.linked-hover:hover {
  border: 4px solid #69B518;
}

.our-stack-wrapp {
  color: #FFF;
}
.our-stack-wrapp .section-title {
  text-align: center;
}
.our-stack-wrapp .section-title h2 {
  color: #FFF;
  margin-bottom: 0;
}
.our-stack-wrapp .section-content {
  max-width: 840px;
  text-align: center;
  margin: auto;
  font-size: 16px;
  padding-top: 12px;
  line-height: 28px;
}
.our-stack-wrapp .our-stack-items {
  display: grid;
  grid-template-columns: repeat(1, minmax(0px, 1fr));
  width: 100%;
  margin-top: 30px;
  column-gap: 30px;
}
@media (min-width: 768px) {
  .our-stack-wrapp .our-stack-items {
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    margin-top: 48px;
  }
}
.our-stack-wrapp .our-stack-items .our-stack-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  color: #FFF;
  margin-bottom: 30px;
}
.our-stack-wrapp .our-stack-items .our-stack-item .item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  text-align: center;
}
.our-stack-wrapp .our-stack-items .our-stack-item .item.top {
  border-radius: 12px 12px 0px 0px;
  row-gap: 24px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our-stack-wrapp .our-stack-items .our-stack-item .item.top h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin: 0;
}
.our-stack-wrapp .our-stack-items .our-stack-item .item.bottom {
  border-radius: 0 0 12px 12px;
  margin-top: 2px;
  justify-content: space-around;
  align-items: center;
  height: 130px;
  min-height: 130px;
  display: flex;
  flex-direction: row;
}
.our-stack-wrapp .our-stack-items .our-stack-item .item.bottom h4 {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
}
.our-stack-wrapp .our-stack-items .our-stack-item .item.bottom a {
  color: #FFF;
  transition: transform 0.4s ease;
  display: block;
}
.our-stack-wrapp .our-stack-items .our-stack-item .item.bottom a:hover {
  transform: scale(1.1);
}

.packages-wrapp {
  color: #FFF;
}
.packages-wrapp .section-title h2 {
  color: #FFF;
}
.packages-wrapp .packages-items {
  width: 100%;
  display: flex;
  margin-top: 24px;
  column-gap: 24px;
  box-sizing: border-box;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .packages-wrapp .packages-items {
    margin-top: 48px;
  }
}
.packages-wrapp .packages-items .packages-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  position: relative;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  flex-grow: 1;
}
@media (min-width: 576px) {
  .packages-wrapp .packages-items .packages-item {
    flex-basis: 48%;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .packages-wrapp .packages-items .packages-item {
    flex-basis: 25%;
  }
}
.packages-wrapp .packages-items .packages-item.popular {
  background: rgba(105, 181, 24, 0.2);
}
.packages-wrapp .packages-items .packages-item.popular .badge {
  display: none;
  position: absolute;
  top: -9px;
  border-radius: 4px;
  background-color: #69b518;
  font-size: 12px;
  font-weight: 500;
  display: block;
  padding: 2px 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  transform: translateY(-5px);
}
.packages-wrapp .packages-items .packages-item h3 {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  margin: 0;
}
.packages-wrapp .packages-items .packages-item .description {
  margin: 12px 0 0;
  padding: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
@media (min-width: 768px) {
  .packages-wrapp .packages-items .packages-item .description {
    min-height: 100px;
  }
}
@media (min-width: 992px) {
  .packages-wrapp .packages-items .packages-item .description {
    min-height: 140px;
  }
}
.packages-wrapp .packages-items .packages-item .price {
  font-weight: 600;
  font-size: 32px;
  line-height: 68px;
  text-align: center;
  min-height: 48px;
}

.expertise-with-list-wrapp {
  color: #FFF;
}
.expertise-with-list-wrapp .section-title {
  text-align: center;
}
.expertise-with-list-wrapp .section-title h2 {
  color: #FFF;
  margin-bottom: 0;
}
.expertise-with-list-wrapp .section-content {
  max-width: 840px;
  text-align: center;
  margin: auto;
  font-size: 16px;
  padding-top: 12px;
  line-height: 28px;
}
.expertise-with-list-wrapp .expertise-items {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  width: 100%;
  margin-top: 24px;
  gap: 30px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .expertise-with-list-wrapp .expertise-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-basis: 48%;
    margin-top: 48px;
  }
}
.expertise-with-list-wrapp .expertise-items .expertise-item {
  color: #FFF;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  text-align: center;
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item.top {
  padding: 30px;
  text-align: center;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .expertise-with-list-wrapp .expertise-items .expertise-item .item.top {
    padding: 36px 20px;
  }
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item.top h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item.top .description {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item.top img {
  margin: 0 auto 24px;
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item.bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2px;
  padding: 36px;
  border-radius: 0 0 12px 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  flex-grow: 1;
  flex: 1 1 auto;
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item.bottom.list-items {
  display: grid;
  gap: 12px 24px;
  list-style: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}
@media (min-width: 992px) {
  .expertise-with-list-wrapp .expertise-items .expertise-item .item.bottom.list-items {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item.bottom.list-items .list-item {
  text-align: left;
}
.expertise-with-list-wrapp .expertise-items .expertise-item .item.bottom.list-items .list-item:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #69b518;
  display: inline-block;
  margin-left: -1em;
  margin-right: 0.8em;
}

.how-we-help-wrapp {
  color: #FFF;
  background-color: #1A1A1A;
}
.how-we-help-wrapp .section-title {
  text-align: center;
}
.how-we-help-wrapp .section-title h2 {
  margin-bottom: 0;
}
.how-we-help-wrapp .section-content {
  max-width: 840px;
  text-align: center;
  margin: auto;
  font-size: 16px;
  padding-top: 12px;
  line-height: 28px;
}
.how-we-help-wrapp .help-case {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 24px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .how-we-help-wrapp .help-case {
    margin-top: 48px;
  }
}
.how-we-help-wrapp .help-case .help-case-item {
  display: flex;
  justify-content: left;
  flex-direction: column;
  padding: 25px 15px;
  background-color: #F7F7F7;
  border: 4px solid transparent;
  border-radius: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 25px 20px;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .how-we-help-wrapp .help-case .help-case-item {
    padding: 36px 24px;
  }
}
@media (min-width: 768px) {
  .how-we-help-wrapp .help-case .help-case-item.col {
    padding: 36px 24px;
    flex-basis: 32%;
    flex-grow: 1;
  }
}
.how-we-help-wrapp .help-case .help-case-item h3 {
  text-align: left;
  color: #FFF;
  font-size: 20px;
  margin: 24px 0 12px;
  font-weight: 700;
  line-height: 22px;
}
@media (min-width: 768px) {
  .how-we-help-wrapp .help-case .help-case-item h3 {
    font-size: 18px;
  }
}
.how-we-help-wrapp .help-case .help-case-item h4 {
  text-align: left;
  color: #69B518;
  font-size: 18px;
  margin-top: 24px;
  font-weight: 700;
  line-height: 20px;
}
@media (min-width: 768px) {
  .how-we-help-wrapp .help-case .help-case-item h4 {
    font-size: 18px;
  }
}
.how-we-help-wrapp .help-case .help-case-item p {
  text-align: left;
  margin-top: 12px;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}
@media (min-width: 768px) {
  .how-we-help-wrapp .help-case .help-case-item p {
    font-size: 14px;
    line-height: 28px;
  }
}
.how-we-help-wrapp .help-case .help-case-item ul {
  padding-left: 24px;
  margin: 12px 0 24px;
}
.how-we-help-wrapp .help-case .help-case-item ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #FFF;
}
.how-we-help-wrapp .help-case .help-case-item ul li:not(:first-child) {
  margin-top: 12px;
}
.how-we-help-wrapp .help-case .help-case-item ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #69B518;
  display: inline-block;
  margin-left: -1em;
  margin-right: 0.8em;
}
.how-we-help-wrapp .help-case .help-case-item .item.top {
  flex-grow: 1;
  flex: 1 1 auto;
  padding-bottom: 25px;
}
.how-we-help-wrapp .help-case .help-case-item .item.bottom {
  border-top: 1px solid grey;
  padding: 25px 0;
  display: flex;
  gap: 25px;
  flex: 0 0 auto;
}
.how-we-help-wrapp .help-case .help-case-item .numbers-block .numbers {
  color: #69B518;
  font-weight: bold;
}

.block_with_number_wrapp h2 {
  color: #0e0e0e;
  margin-bottom: 0;
  text-align: center;
}
.block_with_number_wrapp .section-content {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin: 20px 0;
  line-height: 28px;
  color: #0e0e0e;
}
.block_with_number_wrapp .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 576px) {
  .block_with_number_wrapp .items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
  }
}
.block_with_number_wrapp .items .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: align-items;
}
@media (min-width: 576px) {
  .block_with_number_wrapp .items .item {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.block_with_number_wrapp .items .item img {
  width: 100%;
  height: 60px;
}
@media (min-width: 576px) {
  .block_with_number_wrapp .items .item img {
    height: 40px;
  }
}
@media (min-width: 992px) {
  .block_with_number_wrapp .items .item img {
    height: 60px;
  }
}
.block_with_number_wrapp .items .item .description {
  text-align: left;
  border-radius: 12px;
  flex-grow: 1;
  height: 100%;
  font-size: 14px;
  margin-top: 24px;
  font-weight: 300;
  line-height: 28px;
  padding: 36px 24px;
  border-radius: 12px;
  background: #F7F7F7;
  width: 100%;
  margin-right: 24px;
  box-sizing: border-box;
}
.block_with_number_wrapp .items .item .spacer {
  height: 100%;
}

section.portfolio_wrapper {
  padding-top: 60px;
  padding-bottom: 0;
}
section.portfolio_wrapper .section-title {
  text-align: left;
}
section.portfolio_wrapper .portfolio-items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 48px;
  margin-top: 24px;
}
@media (min-width: 992px) {
  section.portfolio_wrapper .portfolio-items {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }
}
section.portfolio_wrapper .portfolio-items .portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
section.portfolio_wrapper .portfolio-items .portfolio-item img {
  border: 4px solid transparent;
  border-radius: 22px;
}
section.portfolio_wrapper .portfolio-items .portfolio-item .title {
  color: #0E0E0E;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}
section.portfolio_wrapper .portfolio-items .portfolio-item:hover img {
  border: 4px solid #69B518;
}
section.portfolio_wrapper .portfolio-items .portfolio-item:hover .title {
  color: #69B518;
}
section.portfolio_wrapper .portfolio-items .portfolio-item a {
  position: relative;
}
section.portfolio_wrapper .portfolio-items .portfolio-item .category {
  position: absolute;
  display: block;
  top: 24px;
  left: 24px;
  padding: 2px 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  border-radius: 6px;
  background: #69B518;
  color: #FFF;
}

.key_facts_wrapper .section-title {
  text-align: center;
}
.key_facts_wrapper .items {
  margin-top: 24px;
  width: 100%;
  display: grid;
  row-gap: 30px;
  grid-template-columns: 1fr;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .key_facts_wrapper .items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
  }
}
.key_facts_wrapper .items .item {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  align-items: center;
  border-radius: 100%;
  background: #F7F7F7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 10px;
}
@media (min-width: 768px) {
  .key_facts_wrapper .items .item {
    width: 220px;
    height: 220px;
  }
}
@media (min-width: 992px) {
  .key_facts_wrapper .items .item {
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .key_facts_wrapper .items .item {
    width: 360px;
    height: 360px;
  }
}
.key_facts_wrapper .items .item .number {
  font-weight: 900;
  font-size: 65px;
  line-height: 68px;
  color: #69b518;
}
@media (min-width: 1200px) {
  .key_facts_wrapper .items .item .number {
    font-size: 90px;
  }
}
.key_facts_wrapper .items .item .title {
  font-weight: 600;
  font-size: 16px;
  margin-top: 12px;
  font-style: normal;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
}
.video-wrapper .video {
  width: 100%;
  height: 90%;
}
.video-wrapper .play-btn {
  min-width: 60px;
  width: 25%;
  max-width: 150px;
  min-height: 60px;
  height: 25%;
  max-height: 150px;
  border: 0;
  padding: 0;
  border-radius: 100%;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video-wrapper .play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.teams-wrapper .items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 60px;
}
.teams-wrapper .items .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 255px;
}
.teams-wrapper .items .item .icon {
  max-width: 255px;
  max-height: 255px;
  margin-bottom: 24px;
}
.teams-wrapper .items .item .name {
  font-size: 18px;
  text-align: center;
  margin: 0;
  font-weight: 700;
}
.teams-wrapper .items .item .position {
  margin: 12px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.teams-wrapper .items .item .author-links {
  column-gap: 10px;
}
.teams-wrapper .items .item .author-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.teams-wrapper .items .item .author-links a.email {
  padding-top: 3px;
}

.career-vacancy-wrapp h2 {
  color: #0e0e0e;
  text-align: center;
  margin-bottom: 15px;
}
.career-vacancy-wrapp .section-content {
  max-width: 720px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: auto;
  line-height: 28px;
  color: #0e0e0e;
}
.career-vacancy-wrapp.dark-bg h2,
.career-vacancy-wrapp.dark-bg .section-content {
  color: white;
}
.career-vacancy-wrapp .vacancy-list {
  width: 100%;
  margin-top: 48px;
  row-gap: 24px;
  display: flex;
  flex-direction: column;
}
.career-vacancy-wrapp .vacancy-list .vacancy-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  text-align: start;
  padding: 41px 26px;
  color: #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
@media (min-width: 992px) {
  .career-vacancy-wrapp .vacancy-list .vacancy-item {
    flex-direction: row;
  }
}
.career-vacancy-wrapp .vacancy-list .vacancy-item .position {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .career-vacancy-wrapp .vacancy-list .vacancy-item .position {
    width: 75%;
    justify-content: space-between;
    flex-direction: row;
  }
}
.career-vacancy-wrapp .vacancy-list .vacancy-item .position .title {
  width: 100%;
  text-align: center;
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}
@media (min-width: 992px) {
  .career-vacancy-wrapp .vacancy-list .vacancy-item .position .title {
    width: 55%;
    text-align: left;
  }
}
.career-vacancy-wrapp .vacancy-list .vacancy-item .action-button {
  padding: 12px;
  min-width: 180px;
  line-height: 22px;
  box-sizing: content-box;
  color: white;
  border-radius: 24px;
  border: 2px solid #69B518;
  background: rgba(255, 255, 255, 0.1);
}
.career-vacancy-wrapp .vacancy-list .vacancy-item .action-button:hover {
  background-color: #8bba34;
  color: #fff;
}

.block-with-images .section-content {
  font-size: 16px;
  font-weight: 400;
  margin: auto;
  line-height: 28px;
  color: #0e0e0e;
  text-align: center;
}
@media (min-width: 992px) {
  .block-with-images .section-content {
    width: 58%;
  }
}
.block-with-images .gallery-wrapper {
  width: 100%;
  justify-content: space-between;
  margin-top: 60px;
  column-gap: 2%;
  flex-direction: row;
  display: grid;
  row-gap: 30px;
  grid-template-columns: 1fr;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .block-with-images .gallery-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.block-with-images .gallery-wrapper img {
  border-radius: 12px;
  margin: auto;
}

.cooperation-model-wrapp .section-title {
  text-align: center;
  margin-bottom: 24px;
}
.cooperation-model-wrapp .section-content {
  text-align: center;
  max-width: 660px;
  margin: auto;
}
.cooperation-model-wrapp .model-items {
  margin-top: 60px;
  column-gap: 30px;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .cooperation-model-wrapp .model-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
  }
}
.cooperation-model-wrapp .model-items .model-item {
  align-items: center;
  row-gap: 4px;
  display: flex;
  flex-direction: column;
}
.cooperation-model-wrapp .model-items .model-item .model-description {
  align-items: center;
  row-gap: 4px;
  display: flex;
  flex-direction: column;
  height: 40%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #f7f7f7;
  width: 100%;
  max-width: 465px;
  padding: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
.cooperation-model-wrapp .model-items .model-item .model-description h3 {
  margin-top: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin: 0;
}
.cooperation-model-wrapp .model-items .model-item .model-description p {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.cooperation-model-wrapp .model-items .model-item .model-description p:last-child {
  margin-bottom: 0;
}
.cooperation-model-wrapp .model-items .model-item .model-list-items {
  background-color: #f7f7f7;
  width: 100%;
  max-width: 465px;
  padding: 24px;
  display: flex;
  height: 240px;
  max-height: 240px;
  align-items: flex-start;
  padding: 24px 48px;
  text-align: start;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.cooperation-model-wrapp .model-items .model-item .model-list-items ul {
  margin: 12px 0 0 30px;
}
.cooperation-model-wrapp .model-items .model-item .model-list-items ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #0e0e0e;
  margin-bottom: 15px;
}
.cooperation-model-wrapp .model-items .model-item .model-list-items ul li:before {
  content: url("../img/check-mark-icon.svg");
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-left: -30px;
  margin-right: 0.8em;
}
.cooperation-model-wrapp .model-items .model-item .best-suits-list {
  background-color: #f7f7f7;
  width: 100%;
  max-width: 465px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 225px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #0e0e0e;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.cooperation-model-wrapp .model-items .model-item .best-suits-list .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #0e0e0e;
  text-align: center;
  width: 100%;
}
.cooperation-model-wrapp .model-items .model-item .best-suits-list ul {
  margin: 12px 0 0 10px;
}
.cooperation-model-wrapp .model-items .model-item .best-suits-list ul li {
  position: relative;
  padding-left: 25px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #0e0e0e;
  margin-bottom: 10px;
}
.cooperation-model-wrapp .model-items .model-item .best-suits-list ul li:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #69b518;
  position: absolute;
  left: 0;
  top: 6px;
}

.work_together {
  color: white;
}
.work_together h2 {
  color: #0e0e0e;
  margin-bottom: 24px;
  text-align: center;
}
.work_together .section-content {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  line-height: 28px;
  color: #0e0e0e;
}
.work_together.dark-bg h2,
.work_together.dark-bg .section-content {
  color: white;
}
.work_together .table {
  row-gap: 4px;
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
}
.work_together .table .table-row {
  min-height: 126px;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  column-gap: 2px;
}
.work_together .table .table-row .table-row-title {
  align-items: center;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  font-size: 14px;
  display: flex;
  flex: 1 1 28%;
  max-width: 28%;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: start;
}
.work_together .table .table-row .table-row-title .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.work_together .table .table-row p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.work_together .table h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin: 0;
}
.work_together .table h4 {
  font-size: 18px;
  text-align: center;
  margin: 0;
  font-weight: 700;
}
.work_together .table .table-row-description {
  align-items: center;
  flex: 1 1 72%;
  max-width: 100%;
  padding: 0;
  gap: 4px;
  background: none;
  backdrop-filter: none;
  display: flex;
  font-size: 14px;
}
.work_together .table .table-row-description .column {
  flex: 1 1 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}
.work_together .table .table-row-description.header-description {
  display: flex;
  flex-direction: column;
}
.work_together .table .table-row-description.header-description .top {
  text-align: center;
  flex: 1 1 50%;
  align-items: center;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  width: 100%;
  justify-content: center;
}
.work_together .table .table-row-description.header-description .bottom {
  display: flex;
  width: 100%;
  align-items: center;
  flex: 1 1 50%;
  max-width: 100%;
  padding: 0;
  gap: 4px;
  background: none;
  backdrop-filter: none;
  display: flex;
  font-size: 14px;
}
.work_together .table .table-row-description.header-description .bottom .column {
  flex: 1 1 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-with-map {
  min-height: 556px;
  padding-top: 60px;
}
.contacts-with-map h2 {
  margin: 40px 0;
}
.contacts-with-map .offices {
  column-gap: 48px;
}
.contacts-with-map .offices .adress-wrap {
  width: 300px;
}
.contacts-with-map .offices .adress-wrap .country {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 4px;
  width: 100%;
  margin-bottom: 24px;
  border-bottom: solid 1px #0E0E0E;
}
.contacts-with-map .offices .adress-wrap .adress {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
.contacts-with-map .offices .adress-wrap .adress a {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  color: #0e0e0e;
}
.contacts-with-map .clients {
  margin-top: 48px;
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
@media (max-width: 575.98px) {
  .contacts-with-map .clients {
    margin-top: 24px;
    gap: 12px 24px;
  }
}

.blog-single .top-page-wrap .breadcrumbs-top {
  width: 100%;
  color: #bababa;
  background-color: #0e0e0e;
  position: absolute;
  top: 80px;
  padding: 10px 0;
}
@media (min-width: 992px) {
  .blog-single .top-page-wrap .breadcrumbs-top {
    top: 96px;
  }
}
.blog-single .top-page-wrap .breadcrumbs-top .list {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-single .top-page-wrap .breadcrumbs-top .list li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
  border-left: 5px solid #BABABA;
  margin: 0 10px 1px;
}
.blog-single .top-page-wrap .breadcrumbs-top .list li:not(:last-child) a {
  color: #bababa;
  font-weight: normal;
}
.blog-single .blog-single-container {
  padding-top: 0;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
  column-gap: 22px;
}
.blog-single .main-content {
  margin-top: 60px;
}
.blog-single .main-content .outline {
  padding: 24px 24px 12px;
  background-color: #f7f7f7;
  border-radius: 12px;
  margin: 0 0 24px;
}
.blog-single .main-content .outline p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 28px;
}
.blog-single .main-content h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}
.blog-single .main-content h3 {
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.blog-single .main-content h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left;
  line-height: 26px;
}
.blog-single .main-content p {
  font-size: 18px;
  line-height: 28px;
  color: #0e0e0e;
  margin-bottom: 28px;
}
.blog-single .main-content ul,
.blog-single .main-content ol {
  padding-left: 30px;
  margin-left: 0;
  margin: 0 0 30px 0;
}
.blog-single .main-content ul li,
.blog-single .main-content ol li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #0e0e0e;
}
.blog-single .main-content ul li:not(:first-child),
.blog-single .main-content ol li:not(:first-child) {
  margin-top: 12px;
}
.blog-single .main-content ul li:before,
.blog-single .main-content ol li:before {
  content: "•";
  color: #69b518;
  font-weight: 700;
  display: inline-block;
  margin-left: -1.3em;
  margin-right: 0.8em;
}
.blog-single .main-content ul li strong,
.blog-single .main-content ol li strong {
  font-weight: bold;
}
.blog-single .main-content ol {
  list-style: decimal;
}
.blog-single .main-content ol li::marker {
  font-weight: 700;
}
.blog-single .main-content ol li:before {
  display: none;
}
.blog-single .main-content img {
  margin: 48px auto 0;
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 992px) {
  .blog-single .main-content img {
    max-width: 800px;
  }
}
.blog-single .main-content .block-cta,
.blog-single .main-content .block {
  background: url(../img/call-to-2.webp) center/cover no-repeat;
  border-radius: 12px;
  margin: 48px 0 48px;
}
.blog-single .main-content .block-cta article,
.blog-single .main-content .block article {
  display: flex;
  flex-direction: column;
  padding: 33px 24px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  column-gap: 36px;
  color: #fff;
  gap: 24px;
}
@media (min-width: 992px) {
  .blog-single .main-content .block-cta article,
  .blog-single .main-content .block article {
    flex-direction: row;
  }
}
.blog-single .main-content .block-cta article .text-content h2,
.blog-single .main-content .block article .text-content h2 {
  margin: 0;
}
.blog-single .main-content .block-cta article .text-content .title,
.blog-single .main-content .block article .text-content .title {
  text-align: start;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.blog-single .main-content .block-cta article .text-content .description,
.blog-single .main-content .block article .text-content .description {
  text-align: start;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin: 6px 0 0;
  color: #fff;
}
.blog-single .main-content .block-cta article p,
.blog-single .main-content .block article p {
  margin-bottom: 0;
  flex-shrink: 0;
}
.blog-single .main-content .block-cta article a.action-button,
.blog-single .main-content .block article a.action-button {
  border-radius: 24px;
  border: 2px solid #69B518;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  padding: 14px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.blog-single .main-content .block-cta article a.action-button:hover,
.blog-single .main-content .block article a.action-button:hover {
  background-color: #8bba34;
  color: #fff;
}
.blog-single .main-content blockquote {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 24px 96px;
  background-color: #f7f7f7;
  border-radius: 12px;
  opacity: 1;
  margin: 20px auto;
  background: #f7f7f7 url(../img/quote-icon.svg) no-repeat 36px center;
}
.blog-single .main-content blockquote p {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0;
}
.blog-single .main-content table {
  width: 100%;
  border-collapse: collapse;
  max-width: 100%;
  overflow-x: auto;
  overflow-x: auto;
  display: block;
}
.blog-single .main-content table th,
.blog-single .main-content table td {
  width: 25%;
  vertical-align: top;
  padding: 16px 11px;
  border: solid 1px black;
  font-size: 16px;
  line-height: 1.2em;
}
@media (min-width: 768px) {
  .blog-single .main-content table th,
  .blog-single .main-content table td {
    font-size: 18px;
  }
}
.blog-single .main-content table th b,
.blog-single .main-content table th strong,
.blog-single .main-content table td b,
.blog-single .main-content table td strong {
  font-weight: 700;
}
.blog-single .main-content table th ul,
.blog-single .main-content table td ul {
  padding: 0;
  margin: 0;
}
.blog-single .main-content table th ul li,
.blog-single .main-content table td ul li {
  font-size: 18px;
  line-height: 20px;
  margin-left: 0.8rem;
}
.blog-single .main-content table th ul li:before,
.blog-single .main-content table td ul li:before {
  font-size: 14px;
  margin-left: -12px;
  margin-right: 6px;
}
.blog-single .main-content table th ul li:not(:last-child),
.blog-single .main-content table td ul li:not(:last-child) {
  margin-bottom: 10px;
}
.blog-single .main-content table th ul li b,
.blog-single .main-content table th ul li strong,
.blog-single .main-content table td ul li b,
.blog-single .main-content table td ul li strong {
  font-weight: 700;
}
.blog-single .main-content table th {
  color: #fff;
  background-color: #6ab616;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}
.blog-single .main-content table.blue th {
  background-color: #8dc4d9;
}
.blog-single .main-content table.dark-blue th {
  background-color: #00A3D5;
  color: black;
}
.blog-single .main-content table.white-blue th {
  background-color: #00A3D5;
  color: white;
}
.blog-single .main-content .faq {
  min-width: 100%;
}
.blog-single .main-content .faq .section-title {
  color: #0e0e0e;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.blog-single .main-content .faq .section-title .green-line {
  width: 90px;
  height: 2px;
  background: #69B518;
  border-radius: 2px;
  margin-top: 24px;
}
.blog-single .main-content .faq h2 {
  margin-top: 48px;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}
.blog-single .main-content .faq .faq-accordeon {
  margin-top: 60px;
  width: 100%;
  display: flex;
  row-gap: 12px;
}
.blog-single .main-content .faq .faq-accordeon article {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 24px;
  cursor: pointer;
  transition: 0.5s all;
}
.blog-single .main-content .faq .faq-accordeon article:hover {
  filter: brightness(90%);
}
.blog-single .main-content .faq .faq-accordeon article .answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.blog-single .main-content .faq .faq-accordeon article .answer p {
  margin: 20px 0 0 0;
}
.blog-single .main-content .faq .faq-accordeon article.is-open .answer {
  max-height: 1000px;
}
.blog-single .main-content .faq .faq-accordeon article .faq-collapse,
.blog-single .main-content .faq .faq-accordeon article .faq-expand {
  color: #69b518;
  font-size: 24px;
  font-weight: 800;
  width: 20px;
}
.blog-single .main-content .faq .faq-accordeon article h3 {
  font-size: 24px;
  line-height: 36px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.blog-header {
  display: none;
}
@media (min-width: 992px) {
  .blog-header {
    display: flex;
  }
}
.blog-header {
  padding-top: 60px;
  padding-bottom: 0;
  width: unset;
  justify-content: space-between;
}
.blog-header .contents {
  width: 300px;
  position: relative;
}
.blog-header .contents .contents-list {
  padding: 36px 0;
  border-radius: 12px;
  background: #F7F7F7;
  margin-bottom: 30px;
  position: sticky;
  display: block;
  top: 110px;
}
.blog-header .contents .contents-list h2 {
  margin-left: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}
.blog-header .contents .contents-list nav ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.blog-header .contents .contents-list nav ul li a {
  margin: 5px 0 0;
  padding: 2px 24px;
  display: block;
  color: #0e0e0e;
  text-decoration: none;
  width: 100%;
  font-weight: normal;
}
.blog-header .contents .contents-list nav ul li a:hover {
  background-color: #edf6e3;
}
.blog-header .contents .contents-list nav ul li a.active-id {
  background-color: #edf6e3;
  color: #69b518;
  position: relative;
}
.blog-header .contents .contents-list nav ul li a.active-id:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 12px;
  background-color: #69b518;
}

.block-container {
  width: 100%;
  display: flex;
  gap: 24px;
}
.block-container .author {
  display: flex;
  padding: 26px 36px;
  border-radius: 12px;
  color: #0e0e0e;
  background: #F7F7F7;
}
@media (min-width: 576px) {
  .block-container .author {
    gap: 24px;
  }
}
.block-container .author .author-icon img {
  width: 125px;
  height: 125px;
  max-width: 125px;
  display: none;
}
@media (min-width: 576px) {
  .block-container .author .author-icon img {
    display: block;
  }
}
.block-container .author .author-about .author-links {
  column-gap: 15px;
}
.block-container .author .author-about .author-links a {
  color: #fff;
  text-decoration: none;
}
.block-container .author .author-about .author-links a:hover {
  color: #69b518;
}
.block-container .author .author-about .author-links a:hover svg {
  scale: 1.1;
  transition: scale 0.2s, fill 0.2s;
  color: #69b518;
}
.block-container .author .author-about .author-links a:hover svg path {
  fill: #69b518;
}
.block-container .author .author-about .author-links .author-title {
  font-size: 18px;
  text-align: center;
  margin: 0;
  font-weight: 700;
}
.block-container .author .author-about .author-links .author-title a {
  color: #0e0e0e;
}
.block-container .author .author-about .author-links .author-title a:hover {
  color: #69b518;
}
.block-container .author .author-about .author-position {
  margin: 6px 0 0;
}
.block-container .author .author-about .author-description {
  margin: 12px 0 0;
  line-height: 24px;
}
.block-container .author .author-header.mobile {
  display: none;
}

.rating-block {
  display: none;
}
@media (min-width: 992px) {
  .rating-block {
    display: block;
  }
}
.rating-block .rating-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 300px;
  height: 100%;
}

.our-works .top-page-wrap .breadcrumbs-top {
  width: 100%;
  color: #bababa;
  background-color: #0e0e0e;
  position: absolute;
  top: 80px;
  padding: 10px 0;
}
@media (min-width: 992px) {
  .our-works .top-page-wrap .breadcrumbs-top {
    top: 96px;
  }
}
.our-works .top-page-wrap .breadcrumbs-top .list {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.our-works .top-page-wrap .breadcrumbs-top .list li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
  border-left: 5px solid #BABABA;
  margin: 0 10px 1px;
}
.our-works .top-page-wrap .breadcrumbs-top .list li:not(:last-child) a {
  color: #bababa;
  font-weight: normal;
}
.our-works .our-work-container {
  padding-top: 0;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
  column-gap: 22px;
}
.our-works .main-content {
  margin-top: 12px;
  max-width: 878px;
  overflow: hidden;
}
.our-works .main-content h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}
.our-works .main-content h3 {
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.our-works .main-content h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left;
  line-height: 26px;
}
.our-works .main-content p {
  font-size: 18px;
  line-height: 28px;
  color: #0e0e0e;
  margin-bottom: 28px;
}
.our-works .main-content ul,
.our-works .main-content ol {
  padding-left: 30px;
  margin-left: 0;
  padding-bottom: 30px;
}
.our-works .main-content ul li,
.our-works .main-content ol li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #0e0e0e;
}
.our-works .main-content ul li:not(:first-child),
.our-works .main-content ol li:not(:first-child) {
  margin-top: 12px;
}
.our-works .main-content ul li:before,
.our-works .main-content ol li:before {
  content: "•";
  color: #69b518;
  font-weight: 700;
  display: inline-block;
  margin-left: -1.3em;
  margin-right: 0.8em;
}
.our-works .main-content ul li strong,
.our-works .main-content ol li strong {
  font-weight: bold;
}
.our-works .main-content ol {
  list-style: decimal;
}
.our-works .main-content ol li::marker {
  font-weight: 700;
}
.our-works .main-content ol li:before {
  display: none;
}
.our-works .main-content img {
  margin: 48px auto 0;
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 992px) {
  .our-works .main-content img {
    max-width: 800px;
  }
}
.our-works .blog-header {
  padding-top: 60px;
  padding-bottom: 0;
  width: unset;
  justify-content: space-between;
}
.our-works .blog-header .contents-works {
  width: 300px;
}
.our-works .blog-header .contents-works .contents-list {
  padding: 36px 24px;
  border-radius: 12px;
  background: #F7F7F7;
  margin-bottom: 30px;
}
.our-works .blog-header .contents-works .contents-list h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}
.our-works .blog-header .contents-works .contents-list nav ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  margin-top: 5px;
}
.our-works .blog-header .contents-works .contents-list.technologies ul {
  padding: 0;
  margin: 5px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
}
.our-works .blog-header .contents-works .contents-list.technologies ul li {
  font-size: 14px;
  font-weight: 300;
}
.our-works .blog-header .contents-works .contents-list.technologies h3 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}

.career-single-wrapper .career-single {
  padding-top: 30px;
  row-gap: 48px;
}
@media (min-width: 992px) {
  .career-single-wrapper .career-single {
    width: 80%;
    margin: auto;
  }
}
@media (min-width: 1200px) {
  .career-single-wrapper .career-single {
    width: 60%;
  }
}
.career-single-wrapper .career-single h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-top: 48px;
  margin-bottom: 15px;
}
.career-single-wrapper .career-single h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
  margin-top: 48px;
  margin-bottom: 20px;
}
.career-single-wrapper .career-single h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
}
.career-single-wrapper .career-single p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.career-single-wrapper .career-single ul,
.career-single-wrapper .career-single ol {
  padding-left: 30px;
  margin-left: 0;
  padding-bottom: 30px;
}
.career-single-wrapper .career-single ul li,
.career-single-wrapper .career-single ol li {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #0e0e0e;
}
.career-single-wrapper .career-single ul li:not(:first-child),
.career-single-wrapper .career-single ol li:not(:first-child) {
  margin-top: 12px;
}
.career-single-wrapper .career-single ul li:before,
.career-single-wrapper .career-single ol li:before {
  content: "•";
  color: #69b518;
  font-weight: 700;
  display: inline-block;
  margin-left: -1.3em;
  margin-right: 0.8em;
}
.career-single-wrapper .career-single ul li strong,
.career-single-wrapper .career-single ol li strong {
  font-weight: bold;
}
.career-single-wrapper .career-single ol {
  list-style: decimal;
}
.career-single-wrapper .career-single ol li::marker {
  font-weight: 700;
}
.career-single-wrapper .career-single ol li:before {
  display: none;
}
.career-single-wrapper .career-single img {
  margin: 48px auto 0;
  display: block;
  max-width: 800px;
  height: auto;
  object-fit: contain;
}

.latest-post .section-title {
  text-align: center;
}
.latest-post .filter {
  display: flex;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 48px;
  font-size: 16px;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .latest-post .filter {
    flex-direction: row;
  }
}
.latest-post .filter .dropdown {
  position: relative;
}
.latest-post .filter .dropdown.dropdown-menu-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.latest-post .filter .dropdown .dropdown-btn {
  position: relative;
  font-size: 16px;
  min-width: 280px;
  text-align: left;
  padding: 10px 30px 10px 12px;
  border-radius: 12px;
  background: #F7F7F7;
  border: none;
  cursor: pointer;
}
.latest-post .filter .dropdown .dropdown-btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 47%;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #BABABA;
}
.latest-post .filter .dropdown .dropdown-btn.dropdown-menu__item-active {
  background-color: #edf6e3;
}
.latest-post .filter .dropdown .dropdown-menu {
  margin: 2px 0 0;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  font-size: 16px;
  list-style: none;
  background: #F7F7F7;
  padding: 0;
  border-radius: 12px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.latest-post .filter .dropdown .dropdown-menu .dropdown-menu__item {
  cursor: pointer;
}
.latest-post .filter .dropdown .dropdown-menu .dropdown-menu__item a {
  color: black;
  text-decoration: none;
  font-weight: 400;
  padding: 10px 30px 10px 12px;
  display: block;
}
.latest-post .filter .dropdown .dropdown-menu .dropdown-menu__item:hover {
  background-color: #edf6e3;
}
.latest-post .filter .dropdown .dropdown-menu .dropdown-menu__item.dropdown-menu__item-active {
  background-color: #edf6e3;
}
.latest-post .article-list {
  display: grid;
  margin-top: 0;
  grid-template-columns: 1fr;
  column-gap: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .latest-post .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .latest-post .article-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.latest-post .article-list a {
  flex-basis: 30%;
  flex-grow: 1;
  color: #FFF;
}
.latest-post .article-list .article-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 308px;
  color: #fff;
  padding: 24px;
  backdrop-filter: blur(12px);
  border: 4px solid;
  border-radius: 12px;
  box-sizing: border-box;
}
.latest-post .article-list .article-item:hover {
  border: 4px solid #69B518;
}
.latest-post .article-list .article-item:hover .article-title {
  color: #69B518;
}
.latest-post .article-list .article-item .article-meta {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.latest-post .article-list .article-item .article-meta span {
  padding: 2px 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  border-radius: 6px;
  background: #69B518;
  color: #FFF;
}
.latest-post .article-list .article-item .article-title {
  height: 100%;
  display: flex;
  margin: auto;
}
.latest-post .article-list .article-item .article-title span {
  font-size: 18px;
  text-align: center;
  margin: 0;
  font-weight: 700;
  line-height: 22px;
}
.latest-post .indication {
  margin-top: 48px;
  display: flex;
  gap: 15px;
  justify-content: center;
}
.latest-post .indication .indication-item {
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  border-radius: 5px;
  border: transparent;
  background-color: transparent;
  padding: 0 4px;
}
.latest-post .indication .indication-item a {
  color: #000;
  font-weight: 400;
}
.latest-post .indication .indication-item.current {
  background-color: #69b518;
  border-color: transparent;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  padding: 0 8px;
}

.author-page {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .author-page {
    margin-top: 96px;
  }
}
.author-page .author-block {
  flex-direction: column;
  align-items: center;
  row-gap: 48px;
}
@media (min-width: 992px) {
  .author-page .author-block {
    flex-direction: row;
    column-gap: 10px;
  }
}
.author-page .author-block .author-card {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .author-page .author-block .author-card {
    padding: 0 75px;
  }
}
.author-page .author-block .author-card .author-icon {
  min-width: 255px;
  padding-bottom: 24px;
}
.author-page .author-block .author-card .author-title {
  font-size: 18px;
  margin: 0;
}
.author-page .author-block .author-card .author-position {
  padding: 12px 0;
}
.author-page .author-block .author-card .author-links {
  column-gap: 12px;
  align-items: center;
}
.author-page .author-block .author-card .author-links svg {
  width: 35px;
  height: 35px;
}
@media (min-width: 992px) {
  .author-page .author-block .author-card .author-links svg {
    width: auto;
    height: auto;
  }
}
.author-page .author-block .author-card .author-links .author-mail {
  padding-top: 3px;
}
.author-page .author-block .author-about p {
  margin-bottom: 28px;
}
.author-page .author-block .author-about p:last-child {
  margin-bottom: 0;
}

footer {
  background: #1A1A1A;
  color: #FFF;
  margin-top: 60px;
}
@media (min-width: 576px) {
  footer {
    padding-top: 0;
  }
}
footer a {
  color: #FFF;
  text-decoration: none;
  font-weight: 400;
}
footer a:hover {
  color: #69B518;
}
footer .top {
  display: none;
  justify-content: space-between;
  column-gap: 10px;
  padding-bottom: 30px;
  padding-top: 24px;
}
@media (min-width: 576px) {
  footer .top {
    display: flex;
  }
}
footer .top nav {
  margin-top: 7px;
  row-gap: 12px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 576px) and (max-width: 992px) {
  footer .container.top.flex-row {
    flex-wrap: wrap;
  }
  footer .flex-column.col-1 {
    flex: 0 0 35%;
  }
  footer .flex-column.col-2 {
    flex: 0 0 62%;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
  }
  footer .flex-column.col-1,
  footer .flex-column.col-3,
  footer .flex-column.col-4,
  footer .flex-column.col-5 {
    flex: 0 0 30%;
  }
}
footer .bottom {
  background: #0E0E0E;
  width: 100%;
}
footer .bottom .links {
  display: flex;
  margin-top: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer .bottom .links {
    row-gap: 24px;
    height: 48px;
    align-items: start;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
  }
}
footer .bottom .links .icons {
  align-items: center;
  column-gap: 10px;
  display: flex;
}
footer .bottom .links .icons a {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  footer .bottom .links .icons a {
    justify-content: left;
  }
}
footer .bottom .links .credentials {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 10px;
  display: flex;
  justify-content: center;
  column-gap: 9px;
  max-width: 340px;
}
@media (min-width: 768px) {
  footer .bottom .links .credentials {
    justify-content: right;
    column-gap: 24px;
    text-align: center;
    flex-direction: row;
    max-width: 100%;
  }
}
footer .bottom .links .credentials a {
  width: 45%;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  footer .bottom .links .credentials a {
    width: fit-content;
  }
}
footer .footer-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}
footer a.footer-text:hover {
  color: #69B518;
}
footer .nav-title {
  font-weight: 600;
}
footer .offices {
  padding-bottom: 48px;
  display: block;
}
footer .offices .logo {
  margin-bottom: 32px;
}
footer .offices .column {
  row-gap: 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
}