:root {
  --green: #74B908;
  --dark: #101217;
  --grey: #E4E4E4;
}

/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: #fff;
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px 5px #747474;
  box-shadow: 0 0 20px 5px #747474;
}

a {
  font-size: 20px;
  text-decoration: underline;
  color: var(--green);
  transition: all 0.3s ease-in;
}

.telegram {
  color: #blue;
}

a:hover {
  color: #2DAA55;
}

ul li {
  list-style-position: inside;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A49;
  margin-bottom: 10px;
}
ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A49;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A49;
}

strong {
  font-weight: 700;
}

h1.page-title {
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  color: #4A4A49;
  margin-bottom: 50px;
  font-family: 'Ubuntu', sans-serif;
}

.breadcrumbs {
  padding: 30px 0;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: #BEC4C7;
  font-weight: 400;
}
.breadcrumbs a,
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs span.current-item {
  color: #BEC4C7;
}

.container {
  max-width: 1650px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 13px 40px;
  height: fit-content;
  background: var(--green);
  border-radius: 10px;
  outline: none;
  font-family: 'Ubuntu', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in;
  text-align: center;
}
.btn:hover {
  color: #fff;
  background-color: #4A4A49;
  border-color: #4A4A49;
}
.btn:focus {
  letter-spacing: normal;
}
.btn.invert {
  background-color: transparent;
  color: #000;
  border: 1px solid #959595;
  padding: 9px 30px;
}
.btn.invert:hover {
  color: #fff;
  background-color: var(--green);
  border-color: var(--green);
}

#main,
#primary {
  min-height: 83vh;
}

/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.navigation.pagination .page-numbers {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #4A4A49;
  margin: 0 10px;
}
.navigation.pagination .page-numbers.current {
  font-weight: 700;
  color: #2DAA55;
}
.navigation.pagination a.prev {
  margin-right: 100px;
  margin-left: -100px;
}
.navigation.pagination a.prev svg path {
  transition: fill .3s ease-in;
}
.navigation.pagination a.next {
  margin-right: -100px;
  margin-left: 100px;
}
.navigation.pagination a.next svg path {
  transition: fill .3s ease-in;
}
.navigation.pagination a.next,
.navigation.pagination a.prev {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: transparent;
  transition: background-color .3s ease-in;
}
.navigation.pagination a.next:hover,
.navigation.pagination a.prev:hover {
  background-color: #2DAA55;
}
.navigation.pagination a.next:hover svg path,
.navigation.pagination a.prev:hover svg path {
  fill: #fff;
}

.menu-holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}
.menu-holder.main {
  align-items: stretch;
  margin-right: 30px;
}
.menu-holder.main:before {
  content: '';
  height: auto;
  background-color: #fff;
  width: 1px;
  order: 0;
  display: flex;
}
.menu-holder.main li:first-child {
  order: -1;
}
.menu-holder li {
  list-style-type: none;
  margin-bottom: 0;
}
.menu-holder li a {
  color: #FFF;
  font-size: 14px;
  line-height: 24px;
  /* 171.429% */
}
.menu-holder li a:hover {
  color: var(--green);
}

/*============ HEADER =================*/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
}
#header.painted .header__bot {
  padding: 15px 0;
}
#header .header__top {
  background-color: #000;
  padding: 8px 0;
}
#header .header__bot {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(7.5px);
  padding: 25px 0;
  transition: padding .3s ease-in;
}
#header .header__bot .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#header .header__bot .logo-holder {
  display: flex;
  max-width: 130px;
  margin-right: 50px;
}
#header .header__bot .logo-holder svg {
  width: 100%;
  object-fit: contain;
  height: auto;
}
#header .header__bot .socials {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
#header .header__bot .socials .soc {
  display: flex;
  width: 22px;
  height: 22px;
}
#header .header__bot .socials .soc svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#header .header__bot .socials .soc svg path {
  transition: fill .3s ease-in;
}
#header .header__bot .socials .soc:hover svg path {
  fill: var(--green);
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 22px;
  width: 22px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
#header .burger.open_menu span {
  background-color: #fff;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease-in;
  border-radius: 5px;
}
#header .burger.open_menu:hover span {
  color: var(--green);
}
#header .burger.open_menu.clicked {
  background-color: transparent;
}
#header .burger.open_menu.clicked span {
  background-color: var(--green);
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--dark);
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  cursor: pointer;
}
#header #mobile-mnu .mobile-mnu__top {
  width: 100%;
  padding: 10px 15px;
  border-bottom: 3px solid #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header #mobile-mnu .menu-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  /* 150% */
}
#header #mobile-mnu .menu-holder {
  padding: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#header #mobile-mnu .menu-holder.main {
  background-color: #262A32;
  padding: 15px 15px 30px;
}
#header #mobile-mnu .menu-holder.main:before {
  height: 1px;
  width: 100%;
  background-color: #fff;
}
#header #mobile-mnu .menu-holder.main li a {
  font-size: 16px;
}
#header #mobile-mnu .menu-holder.additional li a {
  font-size: 14px;
}
#header #mobile-mnu .menu-holder li a {
  color: #FFF;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background-color: var(--dark);
  padding: 50px 0;
}
#footer .menu-holder {
  margin-bottom: 30px;
}
#footer .notify,
#footer .mark {
  color: #FFF;
  font-size: 12px;
  line-height: 18px;
  /* 150% */
}
#footer .notify {
  margin-bottom: 10px;
}
#footer .copyrights {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  height: auto;
  width: 600px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 9999;
  padding: 35px;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 40px;
  font-weight: 750;
  color: #2DAA55;
  transform: rotate(45deg);
  cursor: pointer;
}
.theme-modal .title {
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  color: #4A4A49;
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 30px;
}
.theme-modal .subtitle {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  color: #4A4A49;
  font-family: 'Ubuntu', sans-serif;
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1025px) {
  /*========= BASE CONFIG ==========*/
  .menu-holder {
    gap: 10px 20px;
  }

  /*============ HEADER =========*/
}
@media (max-width: 769px) {
  /*============ HEADER ============*/
  #header .header__top {
    display: none;
  }
  #header .header__bot {
    padding: 15px 0;
  }
  #header .header__bot .container {
    align-items: flex-end;
  }
  #header .menu-holder {
    display: none;
  }
  #header .burger.open_menu {
    display: flex;
    margin-right: 15px;
  }
}
@media (max-width: 498px) {
  /*========= HEADER =========*/
  #header .header__bot a.logo-holder {
    max-height: 30px;
    margin-right: 10px;
  }
  #header .burger.open_menu {
    margin-right: 0;
  }

  /*============ FOOTER ==========*/
  #footer .menu-holder {
    margin-bottom: 50px;
  }
  #footer .menu-holder.additional {
    display: none;
  }
  #footer .menu-holder.main {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
  }
  #footer .menu-holder.main:before {
    height: 1px;
    width: 100%;
  }
  #footer .menu-holder li a {
    font-size: 18px;
  }
  #footer .copyrights {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
}

/*# sourceMappingURL=main.css.map */
