<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

:root {
  --size: 15px;
  --headings-font-family: "zuume-edge", sans-serif; /* font-weight: 700 */
  --brush-font-family: "lumios-brush", sans-serif; /* font-weight: 400 */
  --font-family: "roc-grotesk", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --font-weight-extrabold: 700;
  --main-color: #000;
  --main-color-hover: #c1d32f; /* zelena */
  --main-bg-color-grey: #52035b; /* tmava fialova */
  --main-bg-color-grey-light: #f8f8f8; /* svetla siva */
  --main-bg-color-custom: #03095b; /* modra */
  --bg-color-red: 82;
  --bg-color-green: 3;
  --bg-color-blue: 91;
}

html {
  font-size: 18px;
}
body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
h1,
h2,
h3,
h4 {
  line-height: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: var(--main-color);
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: solid 1px;
}
a:hover,
.footer a.hi {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
a.cta_button {
  position: relative;
  overflow: hidden;
  font-weight: var(--font-weight-medium);
  color: #fff;
  line-height: 1;
  background-color: var(--main-bg-color-grey);
  border-bottom: 0;
  isolation: isolate;
}
a.cta_button__b {
  font-size: 1.66rem;
  color: var(--main-bg-color-grey);
  background-color: var(--main-color-hover);
}
a.cta_button .text {
  padding-right: 50px;
}
a.cta_button .arrow img {
  width: 20px;
  filter: invert(87%) sepia(7%) saturate(4516%) hue-rotate(14deg)
    brightness(105%) contrast(72%);
}
a.cta_button__b .arrow img {
  filter: invert(9%) sepia(66%) saturate(4853%) hue-rotate(287deg)
    brightness(85%) contrast(105%) !important;
}
a.cta_button:hover .arrow img {
  filter: invert(100%);
}
a.cta_button:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 110%;
  content: "";
  background-color: var(--main-color-hover);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
a.cta_button__b:before {
  background-color: #fff;
}
a.cta_button:hover:before {
  width: 120%;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
.box_margin {
  margin-bottom: calc(var(--size) * 2);
}
.box_margin2 {
  margin-bottom: var(--size);
}
.box_margin3 {
  margin-bottom: calc(var(--size) * 4);
}
.box_padding {
  padding-left: calc(var(--size) * 6);
  padding-right: calc(var(--size) * 6);
}
.box_padding__top {
  padding-top: calc(var(--size) * 20);
}
.box_padding__left {
  padding-left: calc((100% / 2) - 555px);
  padding-right: calc(var(--size) * 6);
}
.box_padding__right {
  padding-left: calc(var(--size) * 6);
  padding-right: calc((100% / 2) - 555px);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 6);
  padding-bottom: calc(var(--size) * 6);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.text_xl {
  font-size: 1.44rem;
  font-weight: var(--font-weight-bold);
  color: var(--main-bg-color-custom);
}
.custom-relative {
  position: absolute;
}
.row-smaller-gutters {
  margin-left: -3px;
  margin-right: -3px;
}
.row-smaller-gutters &gt; [class^="col-"],
.row-smaller-gutters &gt; [class*=" col-"] {
  padding-left: 3px;
  padding-right: 3px;
}
.list_unordered li {
  position: relative;
  padding-left: 15px;
}
.list_unordered li:before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: var(--main-color-hover);
  border-radius: 50%;
}
.container_bg__light {
  background-color: var(--main-bg-color-grey-light);
}
.container_bg__dark {
  background-color: var(--main-bg-color-grey);
}
.container_bg__custom {
  background-color: var(--main-color-hover);
}
.container_bg_img {
  top: 0;
  width: calc(100% - 15px);
  height: 100%;
}
.container_bg_img__left {
  left: 15px;
}
.container_bg_img__right {
  right: 15px;
}

.title_box {
  position: relative;
}
.title_box &gt; * {
  position: relative;
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-extrabold);
  color: var(--main-bg-color-custom);
  line-height: 1.1;
}
.text-white .title_box &gt; * {
  color: #fff;
}
.title_box :is(h1, h2) {
  font-size: calc(44px + (135 - 44) * ((100vw - 320px) / (1920 - 320)));
}
.title_box h3 {
  font-size: calc(34px + (100 - 34) * ((100vw - 320px) / (1920 - 320)));
}
.title_box h4 {
  font-size: calc(24px + (44 - 24) * ((100vw - 320px) / (1920 - 320)));
}
.title_box span,
.title_box small {
  display: block;
}
.title_box small {
  position: relative;
  font-family: var(--brush-font-family);
  font-weight: var(--font-weight-regular);
  font-size: calc(34px + (125 - 34) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color-hover);
  line-height: 1.1;
  margin-top: -0.55em;
}
.title_box h4 small {
  font-size: calc(27px + (80 - 27) * ((100vw - 320px) / (1920 - 320)));
}

/* Bg-Img */

.bg_img {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  z-index: -1;
}
.bg_img__01 {
  left: 0;
  clip-path: polygon(100% 22%, 0 0, 0 100%);
}
.bg_img__02 {
  right: 0;
  clip-path: polygon(0 22%, 100% 0, 100% 100%);
}
.bg_object:before {
  position: absolute;
  top: calc(var(--size) * 12);
  right: 0;
  width: 50%;
  max-width: 700px;
  height: 100%;
  content: "";
  background: url("../images/stroke-object.svg") right top no-repeat;
  background-size: contain;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  z-index: -10;
}

/* Animate */

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1);
  }
}
.zoomOut {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

/* Header ............................................................... */

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.1);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main_logo_wrapper {
  position: absolute;
  top: 30px;
  left: 90px;
  z-index: 1200;
}
.header.scroll .main_logo_wrapper {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main_logo img {
  width: 130px;
}
.header.scroll .main_logo img {
  width: 60px;
}
.header_nav_b {
  display: flex;
  margin-top: 15px;
}
.header.scroll .header_nav_b {
  display: none;
}
.header_nav_b a {
  font-size: 1.66rem;
  color: #fff;
  border-bottom: 0;
}
.header_nav_b a:hover {
  color: var(--main-color-hover);
}

.navigation_wrapper {
  position: relative;
}
.header_nav {
  font-size: 0.89rem;
  z-index: 1200;
}
.header.scroll .header_nav {
  display: none;
}
.header_nav a {
  color: var(--main-bg-color-custom);
  border-bottom-color: transparent;
}
.header_nav a:hover,
.header_nav a.hi {
  border-bottom-color: var(--main-bg-color-grey);
}

.mainNavigation {
  padding: 0;
}
.mainNavigation .dropdown-toggle::after {
  position: relative;
  top: 0.25em;
  margin-top: -0.355em;
  margin-left: 0.355em;
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 18px;
  color: var(--main-bg-color-custom);
  border: none;
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation .nav-item {
  margin-left: 50px;
}
.mainNavigation .nav-item:first-child {
  margin-left: 0 !important;
}
.mainNavigation a.nav-link {
  position: relative;
  font-size: 1.44rem;
  font-weight: var(--font-weight-bold);
  color: var(--main-bg-color-custom) !important;
  line-height: 46px;
  padding: 0 !important;
  overflow: hidden;
  text-transform: lowercase;
}
.mainNavigation a.nav-link:hover,
.mainNavigation a.hi {
  color: var(--main-color-hover) !important;
}

.mainNavigation .dropdown-menu {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.mainNavigation .dropdown-menu a.dropdown-item {
  font-size: 0.89rem !important;
  color: #fff;
  line-height: 30px !important;
  background-color: var(--main-bg-color-grey);
  margin-left: 0 !important;
  border-bottom: 1px solid #73137e;
  z-index: 1100;
}
.mainNavigation .dropdown-menu a.dropdown-item:last-child {
  border-bottom: 0;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover,
.mainNavigation .dropdown-menu a.hi {
  color: #fff;
  background-color: var(--main-bg-color-custom);
}

/* Dropdown Transition */

.mainNavigation .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease all;
}
.mainNavigation .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: 0.5s ease all;
}

/* Rslider ............................................................... */

.rslider_wrapper {
  position: relative;
  height: 900px;
}
.rslider_wrapper_in {
  height: 550px;
}
.rslides,
.rslides_li,
.rslider_img {
  height: 100%;
  width: 100%;
}
.rslider_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
/*
.rslider_bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(
    var(--bg-color-red),
    var(--bg-color-green),
    var(--bg-color-blue),
    1
  );
  mix-blend-mode: multiply;
}
*/
.rslider_wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: animateZ 2s forwards;
  z-index: -1;
}
@keyframes animateZ {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1);
  }
}

/* Main-Content ............................................................... */

/* News */

.news-article--main {
  height: 1045px;
}
.news-article--main a:before {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 145px;
  height: 70px;
  content: "";
  background: url("../images/arrow-object.svg") center 50% no-repeat;
  background-size: cover;
}
.article-text--main {
  position: absolute;
  bottom: 0;
  left: 0;
}
.article-text--main .date {
  border: 2px solid var(--main-color-hover);
}
.news-article--aside {
  padding-right: calc(var(--size) * 6);
}
.news-article--aside .news-article {
  height: 250px;
}
.news-article--aside .news-article:not(:last-child) {
  margin-bottom: 15px;
}
.article-image a:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.article-text .title h3 {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

/* Video */

.video_container a.img-nav {
  isolation: isolate;
}
.video_container a.img-nav &gt; img {
  z-index: -1;
}
.video_container a.img-nav .img-nav-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video_container a.img-nav .img-nav-icon img {
  width: 90px;
}
.video_container a.img-nav:hover .img-nav-icon img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Blog */

.blogWrapper .owl-stage {
  display: flex;
}
.blogWrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.blogWrapper .owl-carousel .owl-nav {
  height: 0;
  margin: 0;
}
.blogWrapper .owl-theme .owl-prev,
.blogWrapper .owl-theme .owl-next {
  position: absolute;
  bottom: -105px;
}
.blogWrapper .owl-theme .owl-prev {
  left: 0;
  transform: scaleX(-1);
}
.blogWrapper .owl-theme .owl-next {
  left: 40px;
}
.blogWrapper .owl-theme .owl-prev i,
.blogWrapper .owl-theme .owl-next i {
  width: 24px;
  height: 40px;
  color: transparent !important;
  background-image: url("../images/arrow-cta.svg");
  background-position: center 50%;
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: content-box;
  filter: invert(87%) sepia(7%) saturate(4516%) hue-rotate(14deg)
    brightness(105%) contrast(72%);
}
.blogWrapper .owl-theme .owl-prev:hover,
.blogWrapper .owl-theme .owl-next:hover {
  background-color: transparent !important;
}
.blogWrapper .owl-theme .owl-prev i:hover,
.blogWrapper .owl-theme .owl-next i:hover {
  filter: none;
}
.blogWrapper .owl-theme .owl-prev:after {
  position: absolute;
  bottom: -15px;
  left: 15px;
  width: 260px;
  height: 1px;
  content: "";
  background-color: #000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
a.blog_nav {
  font-weight: var(--font-weight-bold);
  color: var(--main-bg-color-custom);
}
a.blog_nav:hover {
  color: var(--main-color-hover);
}

/* Coaches */

a.coach {
  color: var(--main-color);
  margin-bottom: 80px;
}
a.coach:hover .coach_img img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
a.coach .coach_title {
  flex: 1;
}
a.coach .coach_title h3 {
  font-size: 1.11rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}
.general_coach .coach_title h3 {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-extrabold);
  font-size: 2.66rem;
  color: var(--main-bg-color-custom);
  line-height: 1;
}

/* Instagram */

.instagram_padding {
  padding: 60px;
}
a.instagram_img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.instagram_info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.instagram_title h3 {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-extrabold);
  font-size: calc(44px + (135 - 44) * ((100vw - 320px) / (1920 - 320)));
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 23px
    rgba(var(--bg-color-red), var(--bg-color-green), var(--bg-color-blue), 0.6);
}
.instagram_nav a {
  position: relative;
  top: -1em;
  font-weight: var(--font-weight-bold);
  font-size: 1.33rem;
  color: #fff;
  text-shadow: 0 0 10px
    rgba(var(--bg-color-red), var(--bg-color-green), var(--bg-color-blue), 0.9);
}
.instagram_nav a:hover {
  color: var(--main-color-hover);
}

/* Support-Carousel */

.supportCarousel {
  padding-left: calc(var(--size) * 6);
}
.supportCarousel .owl-stage {
  display: flex;
}
.supportCarousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.supportCarousel .owl-carousel .owl-nav {
  height: 0;
  margin: 0;
}
.supportCarousel .owl-theme .owl-prev,
.supportCarousel .owl-theme .owl-next {
  position: absolute;
  top: -140px;
}
.supportCarousel .owl-theme .owl-prev {
  right: 130px;
  transform: scaleX(-1);
}
.supportCarousel .owl-theme .owl-next {
  right: 90px;
}
.supportCarousel .owl-theme .owl-prev i,
.supportCarousel .owl-theme .owl-next i {
  width: 24px;
  height: 40px;
  color: transparent !important;
  background-image: url("../images/arrow-cta.svg");
  background-position: center 50%;
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: content-box;
  filter: invert(87%) sepia(7%) saturate(4516%) hue-rotate(14deg)
    brightness(105%) contrast(72%);
}
.supportCarousel .owl-theme .owl-prev:hover,
.supportCarousel .owl-theme .owl-next:hover {
  background-color: transparent !important;
}
.supportCarousel .owl-theme .owl-prev i:hover,
.supportCarousel .owl-theme .owl-next i:hover {
  filter: none;
}
.supportCarousel .owl-theme .owl-next:after {
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 260px;
  height: 1px;
  content: "";
  background-color: #000;
}
.support_container .support_img a:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.support_content h3 {
  font-size: 1.33rem;
  font-weight: var(--font-weight-medium);
}

/* Support-CTA */

.support_cta_wrapper {
  padding-top: 350px;
  padding-bottom: 200px;
  clip-path: polygon(36% 0, 100% 15%, 100% 85%, 74% 100%, 0 84%, 0 15%);
}
.support_cta_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Footer ............................................................... */

.footer {
  font-size: 0.89rem;
}
.footer h3 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  line-height: inherit;
}
.footer_top_logo img {
  width: 70%;
  max-width: 130px;
}
.footer_nav a {
  font-size: 1.66rem;
  color: var(--main-bg-color-custom);
  border-bottom: 0;
}
.footer_nav a:hover {
  color: var(--main-color-hover);
}

/* Partners */

.partners_group li {
  margin-left: 50px;
  margin-right: 50px;
}
.partners_group li:first-child {
  margin-left: 0;
}
.partners_group li:last-child {
  margin-right: 0;
}
.partners_group a {
  border-bottom: 0;
}

.btn {
  border-radius: 0;
}

.we_button {
  position: relative;
  z-index: 50;
}

/* Effects ............................. */

a,
a.cta_button,
a.cta_button .arrow img,
a.cta_button:before,
.mainNavigation .dropdown-menu a.dropdown-item,
.article-image a img,
.video_container a.img-nav .img-nav-icon img,
.blogWrapper .owl-theme .owl-prev i,
.blogWrapper .owl-theme .owl-next i,
a.coach .coach_img img,
a.instagram_img img,
.supportCarousel .owl-theme .owl-prev i,
.supportCarousel .owl-theme .owl-next i,
.support_container .support_img a img,
.footer_nav a {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

.panel {
	border: 1px solid #ccc;
	margin-bottom: 5px;
}

.panel-title {
	margin-top: 0px !important;
    margin-bottom: 0px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.panel-heading {
	padding: 0;
	background-color: transparent !important;
	border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom: 1px solid #ccc;
}

.panel-heading a {
    padding: 10px 15px;
    display: block;
}

.panel-group .panel {
	border-radius: 0;
}

.panel-body {
	padding: 15px;
}

.panel-body p:last-child {
	margin: 0;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  .bg_object:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .news-article--main {
    height: 901px;
  }
  .news-article--aside .news-article {
    height: 214px;
  }
}

@media screen and (max-width: 1680px) {
  html {
    font-size: 16px;
  }
  .box_padding {
    padding-left: calc(var(--size) * 5);
    padding-right: calc(var(--size) * 5);
  }
  .box_padding__left {
    padding-right: calc(var(--size) * 5);
  }
  .box_padding__right {
    padding-left: calc(var(--size) * 6);
  }
  .main_logo_wrapper {
    left: 75px;
  }
  .main_logo img {
    width: 110px;
  }
  .mainNavigation .nav-item {
    margin-left: 40px;
  }
  .rslider_wrapper {
    height: 700px;
  }
  .rslider_wrapper_in {
    height: 450px;
  }
  .news-article--main {
    height: 725px;
  }
  .news-article--aside {
    padding-right: calc(var(--size) * 5);
  }
  .news-article--aside .news-article {
    height: 170px;
  }
  .supportCarousel {
    padding-left: calc(var(--size) * 5);
  }
  .supportCarousel .owl-theme .owl-prev {
    right: 115px;
  }
  .supportCarousel .owl-theme .owl-next {
    right: 75px;
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
  a.cta_button .text {
    padding-right: 35px;
  }
  a.cta_button__b {
    font-size: 1.5rem;
  }
  a.cta_button .arrow img {
    width: 15px;
  }
  .box_margin {
    margin-bottom: var(--size);
  }
  .box_margin3 {
    margin-bottom: calc(var(--size) * 2);
  }
  .box_padding {
    padding-left: calc(var(--size) * 3);
    padding-right: calc(var(--size) * 3);
  }
  .box_padding__top {
    padding-top: calc(var(--size) * 12);
  }
  .box_padding__left {
    padding-right: calc(var(--size) * 3);
  }
  .box_padding__right {
    padding-left: calc(var(--size) * 3);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .text_xl {
    font-size: 1.28rem;
  }
  .list_unordered li {
    padding-left: 10px;
  }
  .list_unordered li:before {
    top: 7px;
    width: 4px;
    height: 4px;
  }
  .bg_img {
    width: 25%;
  }
  .bg_object:before {
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
  }
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .main_logo_wrapper {
    top: 15px;
    left: 45px;
  }
  .main_logo img {
    width: 95px;
  }
  .header.scroll .main_logo img {
    width: 50px;
  }
  .header_nav_b {
    margin-top: 10px;
  }
  .header_nav_b a {
    font-size: 1.5rem;
  }
  .header_nav {
    font-size: 0.85rem;
  }
  .mainNavigation .nav-item {
    margin-left: 30px;
  }
  .mainNavigation a.nav-link {
    font-size: 1.28rem;
    line-height: 36px;
  }
  .rslider_wrapper {
    height: 600px;
  }
  .rslider_wrapper_in {
    height: 350px;
  }
  .news-article--main {
    height: 610px;
  }
  .news-article--main a:before {
    top: 30px;
    right: 30px;
    width: 105px;
    height: 50px;
  }
  .news-article--aside {
    padding-left: 10px;
    padding-right: calc(var(--size) * 3);
  }
  .news-article--aside .news-article {
    height: 145px;
  }
  .news-article--aside .news-article:not(:last-child) {
    margin-bottom: 10px;
  }
  .video_container a.img-nav .img-nav-icon img {
    width: 60px;
  }
  .blogWrapper .owl-theme .owl-prev,
  .blogWrapper .owl-theme .owl-next {
    bottom: -90px;
  }
  .blogWrapper .owl-theme .owl-next {
    left: 35px;
  }
  .blogWrapper .owl-theme .owl-prev i,
  .blogWrapper .owl-theme .owl-next i {
    width: 17px;
    height: 28px;
  }
  .blogWrapper .owl-theme .owl-prev:after {
    bottom: -10px;
    width: 120px;
  }
  .coaches_group {
    margin-left: -10px;
    margin-right: -10px;
  }
  .coach_container {
    padding-left: 10px;
    padding-right: 10px;
  }
  a.coach {
    margin-bottom: 60px;
  }
  a.coach .coach_title h3 {
    font-size: 1.06rem;
  }
  .general_coach .coach_title h3 {
    font-size: 2.42rem;
  }
  .instagram_padding {
    padding: 40px;
  }
  .instagram_nav a {
    font-size: 1.21rem;
  }
  .supportCarousel {
    padding-left: calc(var(--size) * 3);
  }
  .supportCarousel .owl-theme .owl-prev,
  .supportCarousel .owl-theme .owl-next {
    top: -120px;
  }
  .supportCarousel .owl-theme .owl-prev {
    right: 80px;
  }
  .supportCarousel .owl-theme .owl-next {
    right: 45px;
  }
  .supportCarousel .owl-theme .owl-prev i,
  .supportCarousel .owl-theme .owl-next i {
    width: 17px;
    height: 28px;
  }
  .supportCarousel .owl-theme .owl-next:after {
    bottom: -10px;
    width: 120px;
  }
  .support_content h3 {
    font-size: 1.21rem;
  }
  .support_cta_wrapper {
    padding-top: 250px;
    padding-bottom: 130px;
  }
  .footer_top_logo img {
    max-width: 95px;
  }
  .footer_nav a {
    font-size: 1.5rem;
  }
  .partners_group li {
    margin-left: 30px;
    margin-right: 30px;
  }
  .partners_group a img {
    height: 70px;
  }
}

@media screen and (max-width: 1200px) {
  .box_padding {
    padding-left: calc(var(--size) * 2);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding__top {
    padding-top: calc(var(--size) * 6);
  }
  .box_padding__left {
    padding-left: calc((100% / 2) - 455px);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding__right {
    padding-left: calc(var(--size) * 2);
    padding-right: calc((100% / 2) - 455px);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .bg_object:before {
    top: calc(var(--size) * 6);
  }
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .main_logo_wrapper {
    top: 10px;
    left: 30px;
  }
  .header_nav_b a {
    font-size: 1.37rem;
  }
  .mainNavigation .nav-item {
    margin-left: 15px;
  }
  .mainNavigation a.nav-link {
    line-height: 32px;
  }
  .news-article--main {
    height: 550px;
  }
  .news-article--main a:before {
    top: 15px;
    right: 15px;
    width: 80px;
    height: 38px;
  }
  .news-article--aside {
    padding-right: calc(var(--size) * 2);
  }
  .news-article--aside .news-article {
    height: 130px;
  }
  .blogWrapper .owl-theme .owl-prev,
  .blogWrapper .owl-theme .owl-next {
    bottom: -60px;
  }
  .instagram_padding {
    padding: 30px;
  }
  .supportCarousel {
    padding-left: calc(var(--size) * 2);
  }
  .supportCarousel .owl-theme .owl-prev,
  .supportCarousel .owl-theme .owl-next {
    top: -90px;
  }
  .supportCarousel .owl-theme .owl-prev {
    right: 65px;
  }
  .supportCarousel .owl-theme .owl-next {
    right: 30px;
  }
}

@media screen and (max-width: 991px) {
  a.cta_button__b {
    font-size: 1.12rem;
  }
  .box_margin3 {
    margin-bottom: var(--size);
  }
  .box_padding,
  .box_padding__left,
  .box_padding__right {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 2);
    padding-bottom: calc(var(--size) * 2);
  }
  .bg_img {
    display: none;
  }
  .header {
    position: relative !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    animation: none !important;
  }
  .main_logo_wrapper {
    top: 6px !important;
    left: 15px;
    align-items: center;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .main_logo img {
    width: 56px !important;
  }
  .header_nav_b {
    display: inline-block !important;
    margin-top: 0;
    margin-left: 15px;
  }
  .header_nav_b a {
    color: var(--main-bg-color-custom);
    margin-right: 5px;
  }
  .header_nav {
    display: none;
  }
  .mainNavigation .nav-item {
    text-align: center;
    margin-left: 0;
  }
  .mainNavigation a.nav-link {
    display: inline-block;
    line-height: 24px;
    margin-left: 0;
  }
  .mainNavigation li.dropdown a.nav-link:hover span:after {
    display: block;
  }
  .mainNavigation .dropdown-menu a.dropdown-item {
    text-align: center;
  }
  .mainNavigation .dropdown-menu {
    height: 0;
    visibility: visible;
    opacity: 0;
    transform: translateY(0);
    transition: 0.5s ease all;
  }
  .mainNavigation .dropdown-menu.show {
    display: block;
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: 0.5s ease all;
  }
  .mainNavigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(3, 9, 91, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .rslider_bg:before {
    display: none;
  }
  .news-article--main {
    height: 400px;
  }
  .news-article--aside {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .news-article--aside .news-article {
    height: auto;
  }
  .supportCarousel {
    padding-left: var(--size);
  }
  .supportCarousel .owl-theme .owl-prev,
  .supportCarousel .owl-theme .owl-next {
    top: -80px;
  }
  .supportCarousel .owl-theme .owl-prev {
    right: 50px;
  }
  .supportCarousel .owl-theme .owl-next {
    right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .custom-relative {
    position: relative;
  }
  .box_padding__top {
    padding-top: 0;
  }
  .container_bg_img {
    left: 0 !important;
    right: initial !important;
    width: 100%;
    height: auto;
  }
  .bg_object:before {
    display: none;
  }
  .rslider_wrapper {
    height: 450px;
  }
  .rslider_wrapper_in {
    height: 300px !important;
  }
  .partners_group a img {
    height: 50px;
  }
  .support_cta_wrapper .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .instagram_padding {
    padding: 0;
  }
  .instagram_info {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  .instagram_title h3 {
    color: var(--main-bg-color-custom);
    text-shadow: initial;
  }
  .instagram_nav a {
    top: -0.5em;
    color: var(--main-bg-color-grey);
    text-shadow: initial;
  }
  .instagram_nav a:hover {
    color: var(--main-color-hover);
  }
  .supportCarousel {
    padding-right: var(--size);
  }
  .supportCarousel .owl-theme .owl-prev {
    right: 35px;
  }
  .supportCarousel .owl-theme .owl-next {
    right: 0;
  }
}

@media screen and (max-width: 575px) {
  a.coach {
    margin-bottom: 30px;
  }
  .support_cta_wrapper {
    padding-top: 180px;
  }
}

@media screen and (max-width: 480px) {
  .rslider_wrapper {
    height: 350px;
  }
}


/* custom */
.title_box h3 {
    font-size: calc(10px + (80 - 34) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
    font-size: calc(10px + (90 - 34) * ((100vw - 320px) / (1920 - 320)));
}

.title_box_custom h3 {
    font-size: calc(34px + (100 - 34) * ((100vw - 320px) / (1920 - 320)));
}

.title_box_custom &gt; * {
    position: relative;
    font-family: var(--headings-font-family);
    font-weight: var(--font-weight-extrabold);
    color: var(--main-bg-color-custom);
    line-height: 1.1;
  }

.text-white .title_box_custom &gt; * {
    color: #fff;
}

.partners_group li {
    margin-top: 25px;
    margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .title_box h3 .custom_fs{
    font-size: 33.555px;
  }
}

.article-text .title h3 {
  font-size: 1.5rem;
}

.arrow-top-menu{
  width: 15px !important;
}

a.cta_button_menu{
  color: var(--main-bg-color-grey) !important;
}

a.cta_button_menu_desktop{
  font-size: 1rem !important;
}

@keyframes hoverToFilter {
  0% {
    filter: invert(100%) brightness(100%);
  }
  100% {
    filter: invert(87%) sepia(7%) saturate(4516%) hue-rotate(14deg) brightness(105%) contrast(72%) !important;
  }
}

a.cta_button_menu .arrow img {
  filter: invert(9%) sepia(66%) saturate(4853%) hue-rotate(287deg) brightness(85%) contrast(105%) ;
  transition: filter 0.5s ease-in-out;
}

a.cta_button_menu:hover .arrow img {
  animation: hoverToFilter 0.5s forwards !important;
  filter: invert(87%) sepia(7%) saturate(4516%) hue-rotate(14deg) brightness(105%) contrast(72%) !important;
}

a.cta_button_menu:hover{
  color: var(--main-color-hover) !important;
}

a.cta_button_menu:before {
  background-color: var(--main-bg-color-grey);;
}</pre></body></html>