<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.navbar.headroom--pinned {
  transform: translateY(0%);
  transition: transform 200ms linear;
}
.navbar.headroom--unpinned {
  transform: translateY(-100%);
  transition: transform 200ms linear;
}
.navbar.headroom {
  will-change: transform;
  transition: 0.3s;
}
.navbar.headroom--top {
  transition: 0.3s;
}
.navbar.headroom--not-top {
  position: fixed;
  top: 0;
  background: var(--body-color);
}

.admin-bar .headroom--not-top {
  top: 32px;
}

/*	---------------------------------------------------*/
/*	------ SEARCH */
/*	---------------------------------------------------*/
.icon_search {
  cursor: pointer;
}

.search_full {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}
.search_full form {
  width: 700px;
  display: inline-flex;
  height: 200px;
  position: relative;
}
.search_full input {
  position: absolute;
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  padding: 15px 0px;
  top: calc(50% - 120px);
  font-size: 80px;
  outline: none;
  transition: 0.3s;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 100%;
}
.search_full input:hover {
  border-bottom: 2px solid var(--theme-color);
}
.search_full input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.search_full input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.search_full input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}
.search_full input:focus {
  border-bottom: 2px solid var(--theme-color);
  transition: 0.3s;
}
.search_full i {
  position: absolute;
  right: 100px;
  top: 100px;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
}
.search_full .search_state_open i {
  transform: translate(0, 0);
  opacity: 1;
}

.search_state_open.search_full {
  visibility: visible;
  opacity: 1;
}

/*	---------------------------------------------------*/
/*	------ LOGO */
/*	---------------------------------------------------*/
.site_name {
  position: relative;
}

.headroom--not-top .sticky_logo {
  display: block !important;
}

@media (min-width: 992px) {
  .logo img {
    display: block;
  }

  .mobile_logo, .sticky_logo_mobile, .sticky_logo {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .logo img {
    display: none !important;
  }

  .logo img.mobile_logo {
    display: block !important;
  }

  .headroom--not-top .sticky_logo {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .sticky_menu.headroom--not-top .logo .mobile_logo {
    display: none !important;
  }
  .sticky_menu.headroom--not-top .logo img.sticky_logo_mobile {
    display: block !important;
  }
}
.elementor-html .sticky_logo {
  display: none;
}

/*	---------------------------------------------------*/
/*	------ FOOTER */
/*	---------------------------------------------------*/
footer.not_spacing_top {
  margin-top: 0px;
}

/*	---------------------------------------------------- */
/*	------ ASTROON LAYOUT */
/*	---------------------------------------------------*/
.astroon_main_container {
  margin-left: auto;
  margin-left: auto;
}

div[class^=astroon-cols-], div[class*=" astroon-cols-"] {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -15px;
  margin-top: -15px;
}
div[class^=astroon-cols-] &gt; *, div[class*=" astroon-cols-"] &gt; * {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
  box-sizing: border-box;
}

.astroon-cols-1 &gt; * {
  width: 100%;
}

.astroon-cols-2 &gt; * {
  width: 50%;
}
@media (max-width: 1199.98px) {
  .astroon-cols-2 &gt; * {
    width: 100%;
  }
}

.astroon-cols-3 &gt; * {
  width: 33.3%;
}
@media (max-width: 1199.98px) {
  .astroon-cols-3 &gt; * {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .astroon-cols-3 &gt; * {
    width: 100%;
  }
}

.astroon-cols-4 &gt; * {
  width: 25%;
}

.astroon-cols-5 &gt; * {
  width: 20%;
}

.astroon-cols-6 &gt; * {
  width: 16.6%;
}

@media (max-width: 1199.98px) {
  .astroon-cols-4 &gt; *, .astroon-cols-5 &gt; *, .astroon-cols-6 &gt; * {
    width: 33.3%;
  }
}
@media (max-width: 991.98px) {
  .astroon-cols-4 &gt; *, .astroon-cols-5 &gt; *, .astroon-cols-6 &gt; * {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .astroon-cols-4 &gt; *, .astroon-cols-5 &gt; *, .astroon-cols-6 &gt; * {
    width: 100%;
  }
}

.astroon-cols-1-3 &gt; *:first-child {
  width: 35%;
}
.astroon-cols-1-3 &gt; *:not(:first-child) {
  width: 21.6%;
}

.astroon-cols-3-1 &gt; *:last-child {
  width: 35%;
}
.astroon-cols-3-1 &gt; *:not(:last-child) {
  width: 21.6%;
}

.astroon-cols-1-4 &gt; *:first-child {
  width: 30%;
}
.astroon-cols-1-4 &gt; *:not(:first-child) {
  width: 17.5%;
}

.astroon-cols-4-1 &gt; *:last-child {
  width: 30%;
}
.astroon-cols-4-1 &gt; *:not(:last-child) {
  width: 17.5%;
}

.astroon-cols-2-1-2 &gt; *:not(:nth-child(3)) {
  width: 17.5%;
}
.astroon-cols-2-1-2 &gt; *:nth-child(3) {
  width: 30%;
}

.astroon-cols-1-3-1 &gt; *:not(:first-child), .astroon-cols-1-3-1 &gt; *:not(:last-child) {
  width: 16.6%;
}
.astroon-cols-1-3-1 &gt; *:first-child, .astroon-cols-1-3-1 &gt; *:last-child {
  width: 25%;
}

@media (max-width: 1199.98px) {
  .astroon-cols-1-3 &gt; *:first-child, .astroon-cols-1-3 &gt; *:not(:last-child), .astroon-cols-1-3 &gt; *:last-child, .astroon-cols-3-1 &gt; *:first-child, .astroon-cols-3-1 &gt; *:not(:last-child), .astroon-cols-3-1 &gt; *:last-child, .astroon-cols-1-4 &gt; *:first-child, .astroon-cols-1-4 &gt; *:not(:last-child), .astroon-cols-1-4 &gt; *:last-child,
.astroon-cols-4-1 &gt; *:first-child,
.astroon-cols-4-1 &gt; *:not(:last-child),
.astroon-cols-4-1 &gt; *:last-child, .astroon-cols-2-1-2 &gt; *:first-child, .astroon-cols-2-1-2 &gt; *:not(:last-child), .astroon-cols-2-1-2 &gt; *:last-child, .astroon-cols-1-3-1 &gt; *:first-child, .astroon-cols-1-3-1 &gt; *:not(:last-child), .astroon-cols-1-3-1 &gt; *:last-child {
    width: 33.3%;
  }
}
@media (max-width: 991.98px) {
  .astroon-cols-1-3 &gt; *:first-child, .astroon-cols-1-3 &gt; *:not(:last-child), .astroon-cols-1-3 &gt; *:last-child, .astroon-cols-3-1 &gt; *:first-child, .astroon-cols-3-1 &gt; *:not(:last-child), .astroon-cols-3-1 &gt; *:last-child, .astroon-cols-1-4 &gt; *:first-child, .astroon-cols-1-4 &gt; *:not(:last-child), .astroon-cols-1-4 &gt; *:last-child,
.astroon-cols-4-1 &gt; *:first-child,
.astroon-cols-4-1 &gt; *:not(:last-child),
.astroon-cols-4-1 &gt; *:last-child, .astroon-cols-2-1-2 &gt; *:first-child, .astroon-cols-2-1-2 &gt; *:not(:last-child), .astroon-cols-2-1-2 &gt; *:last-child, .astroon-cols-1-3-1 &gt; *:first-child, .astroon-cols-1-3-1 &gt; *:not(:last-child), .astroon-cols-1-3-1 &gt; *:last-child {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .astroon-cols-1-3 &gt; *:first-child, .astroon-cols-1-3 &gt; *:not(:last-child), .astroon-cols-1-3 &gt; *:last-child, .astroon-cols-3-1 &gt; *:first-child, .astroon-cols-3-1 &gt; *:not(:last-child), .astroon-cols-3-1 &gt; *:last-child, .astroon-cols-1-4 &gt; *:first-child, .astroon-cols-1-4 &gt; *:not(:last-child), .astroon-cols-1-4 &gt; *:last-child,
.astroon-cols-4-1 &gt; *:first-child,
.astroon-cols-4-1 &gt; *:not(:last-child),
.astroon-cols-4-1 &gt; *:last-child, .astroon-cols-2-1-2 &gt; *:first-child, .astroon-cols-2-1-2 &gt; *:not(:last-child), .astroon-cols-2-1-2 &gt; *:last-child, .astroon-cols-1-3-1 &gt; *:first-child, .astroon-cols-1-3-1 &gt; *:not(:last-child), .astroon-cols-1-3-1 &gt; *:last-child {
    width: 100%;
  }
}

/*	---------------------------------------------------*/
/*	------ NIVBAR TOGGLER */
/*	---------------------------------------------------*/
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 1199.98px) {
  .navbar .navbar-toggler {
    outline: none;
    transition: 0.3s;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
/*	---------------------------------------------------*/
/*	------ WORDPRESS CORE */
/*	---------------------------------------------------*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*	---------------------------------------------------*/
/*	------ BLOG */
/*	---------------------------------------------------*/
.content {
  margin-left: auto;
  margin-right: auto;
}
.content .main_page {
  flex: 1;
  min-width: 40%;
}
.content.spacing_top {
  margin-top: -120px;
}

.post_standart .bottom_inf, .title_head .bottom_inf {
  flex-wrap: wrap;
}
.post_standart .bottom_inf &gt; *, .title_head .bottom_inf &gt; * {
  margin-right: 30px;
  padding-top: 5px;
}
.post_standart .bottom_inf &gt; *:last-child, .title_head .bottom_inf &gt; *:last-child {
  margin-right: 0px;
}
.post_standart .bottom_inf &gt; *:first-child, .title_head .bottom_inf &gt; *:first-child {
  margin-right: auto;
}

.astroon-cols-1 .post_standart .wrap_astroon_post .post_img, .astroon-cols-1 .post_standart .wrap_astroon_post .video_frame {
  overflow: hidden;
  max-height: 500px;
}
.astroon-cols-1 .post_standart .wrap_astroon_post .video_frame {
  height: 500px;
}

.astroon-cols-2 .post_standart .wrap_astroon_post span.icon_standart_post, .astroon-cols-2 .post_standart .wrap_astroon_post span.icon_quote, .astroon-cols-2 .post_standart .wrap_astroon_post span.icon_link, .astroon-cols-2 .post_standart .wrap_astroon_post span.icon_sticky.icon_sticky_full, .astroon-cols-2 .proj .wrap_astroon_post span.icon_standart_post, .astroon-cols-2 .proj .wrap_astroon_post span.icon_quote, .astroon-cols-2 .proj .wrap_astroon_post span.icon_link, .astroon-cols-2 .proj .wrap_astroon_post span.icon_sticky.icon_sticky_full, .astroon-cols-3 .post_standart .wrap_astroon_post span.icon_standart_post, .astroon-cols-3 .post_standart .wrap_astroon_post span.icon_quote, .astroon-cols-3 .post_standart .wrap_astroon_post span.icon_link, .astroon-cols-3 .post_standart .wrap_astroon_post span.icon_sticky.icon_sticky_full, .astroon-cols-3 .proj .wrap_astroon_post span.icon_standart_post, .astroon-cols-3 .proj .wrap_astroon_post span.icon_quote, .astroon-cols-3 .proj .wrap_astroon_post span.icon_link, .astroon-cols-3 .proj .wrap_astroon_post span.icon_sticky.icon_sticky_full, .astroon-cols-4 .post_standart .wrap_astroon_post span.icon_standart_post, .astroon-cols-4 .post_standart .wrap_astroon_post span.icon_quote, .astroon-cols-4 .post_standart .wrap_astroon_post span.icon_link, .astroon-cols-4 .post_standart .wrap_astroon_post span.icon_sticky.icon_sticky_full, .astroon-cols-4 .proj .wrap_astroon_post span.icon_standart_post, .astroon-cols-4 .proj .wrap_astroon_post span.icon_quote, .astroon-cols-4 .proj .wrap_astroon_post span.icon_link, .astroon-cols-4 .proj .wrap_astroon_post span.icon_sticky.icon_sticky_full {
  min-height: 200px;
}
.astroon-cols-2 .post_standart .wrap_astroon_post .post_img, .astroon-cols-2 .post_standart .wrap_astroon_post .video_frame, .astroon-cols-2 .proj .wrap_astroon_post .post_img, .astroon-cols-2 .proj .wrap_astroon_post .video_frame, .astroon-cols-3 .post_standart .wrap_astroon_post .post_img, .astroon-cols-3 .post_standart .wrap_astroon_post .video_frame, .astroon-cols-3 .proj .wrap_astroon_post .post_img, .astroon-cols-3 .proj .wrap_astroon_post .video_frame, .astroon-cols-4 .post_standart .wrap_astroon_post .post_img, .astroon-cols-4 .post_standart .wrap_astroon_post .video_frame, .astroon-cols-4 .proj .wrap_astroon_post .post_img, .astroon-cols-4 .proj .wrap_astroon_post .video_frame {
  overflow: hidden;
  max-height: 300px;
}

.latest_posts.astroon-cols-2 .post_standart .wrap_astroon_post .post_img, .latest_posts.astroon-cols-2 .post_standart .wrap_astroon_post .video_frame, .latest_posts.astroon-cols-2 .proj .wrap_astroon_post .post_img, .latest_posts.astroon-cols-2 .proj .wrap_astroon_post .video_frame, .latest_posts.astroon-cols-3 .post_standart .wrap_astroon_post .post_img, .latest_posts.astroon-cols-3 .post_standart .wrap_astroon_post .video_frame, .latest_posts.astroon-cols-3 .proj .wrap_astroon_post .post_img, .latest_posts.astroon-cols-3 .proj .wrap_astroon_post .video_frame, .latest_posts.astroon-cols-4 .post_standart .wrap_astroon_post .post_img, .latest_posts.astroon-cols-4 .post_standart .wrap_astroon_post .video_frame, .latest_posts.astroon-cols-4 .proj .wrap_astroon_post .post_img, .latest_posts.astroon-cols-4 .proj .wrap_astroon_post .video_frame {
  max-height: initial;
  height: auto;
}
.latest_posts.astroon-cols-2 .proj .wrap_astroon_post .post_img, .latest_posts.astroon-cols-2 .proj .wrap_astroon_post .video_frame, .latest_posts.astroon-cols-3 .proj .wrap_astroon_post .post_img, .latest_posts.astroon-cols-3 .proj .wrap_astroon_post .video_frame, .latest_posts.astroon-cols-4 .proj .wrap_astroon_post .post_img, .latest_posts.astroon-cols-4 .proj .wrap_astroon_post .video_frame {
  max-height: 250px;
}

.attachment-template-default .main_page {
  padding: 0px 15px;
}
.attachment-template-default .attachment img {
  width: 100%;
  height: auto;
}</pre></body></html>