* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 360px;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Sans-serif;
  font-size: 17px;
  color: #fff;
  line-height: 23px;
  font-weight: 400;
  margin: 0;
}

._container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

@keyframes bounceEffect {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-20px);
  }
  70% {
    transform: translateY(10px);
  }
  85% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #112743;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
}
.header._hide {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .header__nav {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    background-color: #112743;
    z-index: 99;
  }
  .header__nav._active {
    opacity: 1;
    visibility: visible;
  }
}
.header__menu-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 20px;
  height: 20px;
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  .header__menu-btn {
    display: none;
  }
}
.header__menu-btn .open {
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
}
.header__menu-btn .close {
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  opacity: 0;
  visibility: hidden;
}
.header__menu-btn._active .open {
  opacity: 0;
  visibility: hidden;
}
.header__menu-btn._active .close {
  opacity: 1;
  visibility: visible;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .header__menu {
    flex-direction: column;
  }
}
.header__menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.3px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease 0s;
}
.header__menu li a:hover {
  border-color: #ffe500;
  color: #ffe500;
}
@media (max-width: 767px) {
  .header__menu li a {
    width: 100%;
    max-width: 100%;
  }
}
.header__menu li.current-menu-item a {
  border-color: #ffe500;
  color: #ffe500;
}
@media (max-width: 767px) {
  .header__menu li {
    width: 100%;
    max-width: 100%;
  }
}

.footer__row-01 {
  background-image: linear-gradient(180deg, #04467c 0%, #00aeff 100%);
  padding: 33px 0 15px 0;
}
.footer__row-01 .footer__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .footer__row-01 .footer__wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.footer__wrapper {
  max-width: 1152px;
  padding: 0 16px;
  margin: 0 auto;
}
.footer__col {
  width: 33.3333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer__col {
    width: 100%;
    padding: 30px 0;
  }
  .footer__col:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}
.footer__title {
  font-size: 17px;
  line-height: 23px;
  letter-spacing: 0.3px;
}
.footer__author {
  width: 167px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease 0s;
}
.footer__img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__img-link:hover img {
  transform: scale(1.1);
}
.footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  line-height: 26px;
  width: 100%;
  color: #fff;
}
.footer__contact:nth-child(1) {
  font-weight: 600;
}
.footer__contact svg {
  fill: #fff;
  width: 22px;
}
.footer__socials {
  margin: 5px 0 0 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer__social {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.0705882353);
  border-radius: 100px;
  transition: transform 0.6s ease-in-out;
}
.footer__social svg {
  width: 34px;
  fill: #fff;
}
.footer__social:hover {
  animation: bounceEffect 1.3s ease-in-out;
}
.footer__code {
	width: 185px;
height: 185px;
object-fit: cover;
  transition: all 0.3s ease 0s;
}
.footer__copy {
  background-color: #1f3f67;
  padding: 15px 20px;
  text-align: center;
  color: #fff;
}
.footer__menu li:nth-child(1) {
  background-color: #173456;
}
.footer__menu li:nth-child(2) {
  background-color: #122d4b;
}
.footer__menu li:nth-child(3) {
  background-color: #122744;
}
.footer__menu li a {
  padding: 7px 20px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  text-transform: uppercase;
  color: #fff;
  font-size: 17px;
  line-height: 23px;
  transition: all 0.3s ease 0s;
}
.footer__menu li a:hover {
  color: #ffe500;
}

.home-hero__body {
  position: relative;
}
.home-hero__link {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(19, 26, 35, 0.768627451);
  cursor: pointer;
  border-radius: 15px;
}
.home-hero__link svg {
  fill: #8af903;
  width: 30px;
}
@media (max-width: 767px) {
  .home-hero__link {
    bottom: 92px;
    right: 20px;
    left: auto;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    transform: translate(0, 0);
  }
}

.home-main {
  padding: 50px 0;
}
.home-main__title {
  font-size: 50px;
  line-height: 1.3em;
  text-align: center;
  font-weight: 600;
  color: #f08100;
  text-transform: uppercase;
}
@media (max-width: 1180px) {
  .home-main__title {
    font-size: calc(27px + 23 * (100vw - 360px) / 820);
  }
}
.home-main__content {
  margin: 35px 0 0 0;
}
.home-main__row-01 {
  display: flex;
  -moz-column-gap: 43px;
       column-gap: 43px;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (max-width: 992px) {
  .home-main__row-01 {
    flex-direction: column-reverse;
    gap: 25px;
  }
}
.home-main__col-01 {
  width: 37%;
}
@media (max-width: 992px) {
  .home-main__col-01 {
    width: 100%;
  }
}
.home-main__text {
  color: #242e3a;
  font-size: 17px;
  line-height: 23px;
}
.home-main__text p:not(:last-child) {
  margin-bottom: 15px;
}
.home-main__col-02 {
  width: 63%;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home-main__col-02 {
    width: 100%;
  }
}
.home-main__image-01 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.home-main__image-01 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out;
  width: 115%;
  height: 115%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .home-main__image-01 img {
    position: static;
    width: 100%;
    height: 100%;
    transform: translate(0, 0);
  }
}
.home-main__row-02 {
  margin: 30px 0 0 0;
  display: flex;
  -moz-column-gap: 43px;
       column-gap: 43px;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (max-width: 992px) {
  .home-main__row-02 {
    flex-direction: column;
    gap: 25px;
  }
}
.home-main__col-03 {
  overflow: hidden;
  width: 50%;
}
@media (max-width: 992px) {
  .home-main__col-03 {
    width: 100%;
  }
}
.home-main__image-02 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.home-main__image-02 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out;
  width: 115%;
  height: 115%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .home-main__image-02 img {
    position: static;
    width: 100%;
    height: 100%;
    transform: translate(0, 0);
  }
}
.home-main__col-04 {
  width: 50%;
}
@media (max-width: 992px) {
  .home-main__col-04 {
    width: 100%;
  }
}

.policy-hero {
  padding: 50px 0;
  min-height: calc(100vh - 50px);
}
.policy-hero__title {
  color: #242e3a;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 43px;
  line-height: 1.3em;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 1180px) {
  .policy-hero__title {
    font-size: calc(32px + 11 * (100vw - 360px) / 820);
  }
}
@media (max-width: 992px) {
  .policy-hero__title {
    max-width: 100%;
  }
}
.policy-hero__content p {
  margin: 8px 0 16px;
  color: #242e3a;
  font-size: 17px;
  line-height: 23px;
}
.policy-hero__content h3 {
  font-size: 27px;
  line-height: 1.3em;
  color: #242e3a;
  text-transform: uppercase;
}
.policy-hero__content ul {
  padding: 0;
  margin: 0 0 0 40px;
}
.policy-hero__content ul li {
  list-style: disc;
  color: #242e3a;
  font-size: 17px;
  line-height: 23px;
}
.policy-hero__content .custom-autors {
  margin: 40px 0 0 0;
}
.policy-hero__content .custom-autors p {
  text-align: center;
}
.policy-hero__content .custom-autors p a {
  color: #c36;
  font-size: 27px;
  line-height: 33px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease 0s;
}
.policy-hero__content .custom-autors p a:hover {
  color: #242e3a;
}

.post-hero {
  min-height: 100vh;
  position: relative;
  padding: 80px 0 50px 0;
  background-image: url("/wp-content/uploads/2025/02/6_ilulL7C-1.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.post-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-image: linear-gradient(0deg, #fead1d 0%, #0041a8 100%);
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .post-hero::before {
    opacity: 0.8;
  }
}
.post-hero:hover::before {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .post-hero {
    padding: 150px 0 50px 0;
    background-image: url("/wp-content/uploads/2025/02/Mother_Ukraine_2025_mob.webp");
    background-position: 52% 0;
  }
}
.post-hero__body {
  position: relative;
  z-index: 30;
}
.post-hero__title {
  font-size: 60px;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 1180px) {
  .post-hero__title {
    font-size: calc(37px + 23 * (100vw - 360px) / 820);
  }
}
.post-hero__content {
  margin: 30px 0 0 0;
}
.post-hero__row-01 {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .post-hero__row-01 {
    flex-direction: column;
    gap: 20px;
  }
}
.post-hero__col-01 {
  width: 340px;
  min-width: 340px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .post-hero__col-01 {
    width: 100%;
    min-width: 320px;
  }
}
.post-hero__col-01 .separator {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 5px;
}
.post-hero__image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1000px;
  width: 225px;
  height: 220px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.post-hero__image:hover {
  transform: scale(1.05);
}
.post-hero__candle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-hero__col-02 {
  width: 100%;
}
.post-hero__col-02 p:not(:last-child) {
  margin-bottom: 15px;
}
.post-hero__text {
  font-size: 17px;
  line-height: 22px;
  color: #fff;
}
.post-hero__row-02 {
  margin: 47px 0 0 0;
  height: 700px;
  overflow: auto;
}
.post-hero__row-02::-webkit-scrollbar {
  background: transparent;
  width: 3px;
}
.post-hero__row-02::-webkit-scrollbar-track {
  background: transparent;
}
.post-hero__row-02::-webkit-scrollbar-thumb {
  background-color: #94a1b2;
}
@media (min-width: 1921px) {
  .post-hero__row-02 {
    height: 700px;
    overflow: auto;
  }
}
@media (max-width: 992px) {
  .post-hero__row-02 {
    margin: 20px 0 0 0;
  }
}
.post-hero__row-02 p {
  color: #fff;
  font-size: 17px;
  line-height: 23px;
}
.post-hero__row-02 p:not(:last-child) {
  margin-bottom: 15px;
}
.post-hero__row-02 iframe {
  width: 100%;
  min-height: 709px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .post-hero__row-02 iframe {
    min-height: 230px;
  }
}
.post-hero__row-02 .wp-block-columns {
  margin: 0 0 40px 0;
}
.post-hero__dates {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-hero__date {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
}

.heroes-hero {
  padding: 80px 0 90px 0;
  background-image: url("/wp-content/uploads/2025/02/Mother_Ukraine_2025-1-1.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}
@media (min-width: 1921px) {
  .heroes-hero {
    padding: 65px 0 90px 0;
  }
}
.heroes-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-image: linear-gradient(0deg, #fead1d 0%, #0041a8 100%);
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .heroes-hero::before {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .heroes-hero {
    padding: 65px 0 90px 0;
  }
}
.heroes-hero__body {
  position: relative;
  z-index: 30;
}
.heroes-hero__title {
  font-size: 40px;
  line-height: 1.2em;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1180px) {
  .heroes-hero__title {
    font-size: calc(27px + 13 * (100vw - 360px) / 820);
  }
}
.heroes-hero__content {
  position: relative;
}
.heroes-hero__cities {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.heroes-hero__cities select {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 19px;
  line-height: 24px;
  border-radius: 8px;
  padding: 5px 12px;
  cursor: pointer;
}
.heroes-hero__cities select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 27px !important;
  background-image: url("/wp-content/uploads/2025/02/iconoir_nav-arrow-down.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 12px !important;
  background-position: 91% center !important;
}
.heroes-hero__cities input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #f9f9f9 inset !important;
}
.heroes-hero__cities .selected-city {
  font-size: 19px;
  font-weight: 600;
}
.heroes-hero__search {
  display: flex;
  align-items: center;
}
.heroes-hero__result {
  width: calc(100% - 53px);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  background-color: #242e3a;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 99;
  transition: all 0.3s ease 0s;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 10px;
  max-height: 770px;
  overflow: auto;
}
.heroes-hero__result::-webkit-scrollbar {
  background: transparent;
  width: 3px;
}
.heroes-hero__result::-webkit-scrollbar-track {
  background: transparent;
}
.heroes-hero__result::-webkit-scrollbar-thumb {
  background-color: #94a1b2;
}
.heroes-hero__result._active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .heroes-hero__result {
    max-height: 400px;
  }
}
.heroes-hero__result .loader {
  display: flex;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  animation: rotate 5s linear infinite;
}
.heroes-hero__result .loader img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(150%) brightness(90%);
}
.heroes-hero__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 20px;
  /* max-height: 937px; */
  max-height: 730px;
  overflow: auto;
  padding: 0 20px 0 0;
  margin: 25px 0 0 0;
}
@media (min-height: 1081px) {
  .heroes-hero__items {
    max-height: 1150px;
  }
}
.heroes-hero__items::-webkit-scrollbar {
  background: transparent;
  width: 3px;
}
.heroes-hero__items::-webkit-scrollbar-track {
  background: transparent;
}
.heroes-hero__items::-webkit-scrollbar-thumb {
  background-color: #94a1b2;
}
@media (max-width: 767px) {
  .heroes-hero__items {
    padding: 0;
  }
}
.heroes-hero__item {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 55%);
  border: 1px solid #fff;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}
.heroes-hero__item:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.heroes-hero__item:hover .heroes-hero__poster {
  transform: scale(1.05);
}
.heroes-hero__label {
  font-size: 21px;
  line-height: 1.2em;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.heroes-hero__label:hover {
  transform: scale(1.05);
}
.heroes-hero__poster {
  width: 155px;
  height: 185px;
  border-radius: 35px;
  transition: all 0.3s ease 0s;
  position: relative;
}
.heroes-hero__poster img {
  width: 155px;
  height: 185px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 35px;
}
.heroes-hero__candle {
  position: absolute;
  bottom: 0;
  right: -20px;
  max-width: 35px;
  max-height: 52px;
}
.heroes-hero__dates {
  margin: 15px 0;
  padding: 0 22px 9px 22px;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 19px;
  line-height: 1.2em;
  font-weight: 600;
}
.heroes-hero__city {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.heroes-hero__search-input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px 0 0 15px;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 22px;
}
.heroes-hero__search-input::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  color: #cdcdcd;
  font-size: 17px;
  line-height: 22px;
}
.heroes-hero__search-input::placeholder {
  font-family: "Roboto", sans-serif;
  color: #cdcdcd;
  font-size: 17px;
  line-height: 22px;
}
.heroes-hero__btn {
  display: flex;
  width: 53px;
  height: 42px;
  border-radius: 0 15px 15px 0;
  background-color: #112743;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.heroes-hero__btn svg {
  fill: #fff;
  width: 18px;
}
.heroes-hero__clear {
  width: 50px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background-color: #fff;
}
.heroes-hero__clear svg {
  fill: #9f9f9f;
  width: 18px;
}
.heroes-hero__clear .wrapper {
  opacity: 0;
  visibility: hidden;
}
.heroes-hero__clear._active .wrapper {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */