@font-face { font-family: 'Roboto-Black'; src: url('Roboto-Black.ttf'); } /* 900 */
@font-face { font-family: 'Roboto-Bold'; src: url('Roboto-Bold.ttf'); } /* 700 */
@font-face { font-family: 'Roboto-Medium'; src: url('Roboto-Medium.ttf'); } /* 500 */
@font-face { font-family: 'Roboto-Regular'; src: url('Roboto-Regular.ttf'); } /* 400 */
@font-face { font-family: 'Roboto-Italic'; src: url('Roboto-Italic.ttf'); } /* 400 */
@font-face { font-family: 'Roboto-Light'; src: url('Roboto-Light.ttf'); } /* 300 */

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto-Regular', Arial, sans-serif;
    color: #000000;
    background-color: #000000;
    /**/
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently
                                not supported by any browser */
    
}
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px 2px #040404;
    background-color: #ffffff;
    transition: background-color .6s ease-in-out;
}
body::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 3px;
}
body::-webkit-scrollbar-thumb:hover {
    background: #ffc3bd; 
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0
}

.container {
    position: relative;
    max-width: 1200px;
    width: calc(100% - 120px);
    margin: 0 auto;
}

/* HEADER */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    background-color: #000000;
    border-bottom: solid 1px #ee1705;
    z-index: 10;
}
header #logo {
    position: absolute;
    top: 15px;
    left: 0;
    height: 50px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}
header nav {
    position: absolute;
    top: 15px;
    right: 0;
    height: 50px;
}
header nav .main-menu {
    list-style: none;
    font-size: 16px;
    height: 50px;
    padding: 0;
    margin: 0;
}
header nav li {
    display: inline-block;
    margin: 24px 10px 0;
}
header .main-menu a {
    font-family: 'Roboto-Medium';
    text-decoration: none;
    color: #ffffff;
    transition: color .6s ease-in-out;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}
header .main-menu a:visited {
    color: #ffffff;
}
header .main-menu a:hover {
    color: #ee1705;
}
header .main-menu a:active {
    color: #ee1705;
}
header .main-menu a.current {
    color: #c7c7c7;
    cursor: default;
}
header #mobileMenu {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    height: 26px;
    width: 32px;
}
header #mobileMenu div {
    position: absolute;
    height: 2px;
    width: 32px;
    box-sizing: border-box;
    border-bottom: solid 2px #ffffff;
    transition: border-color .3s ease-in-out;
}
header #mobileMenu .mobile-menu-top-line {
    top: 0;
    right: 0;
}
header #mobileMenu .mobile-menu-middle-line {
    top: 12px;
    right: 0;
}
header #mobileMenu .mobile-menu-bottom-line {
    top: 24px;
    right: 0;
}

/* MAIN SLIDER */
#mainSlider {
    position: relative;
    width: 100%;
    height: calc(100vw / 16 * 8);
    overflow: hidden;
}
#mainSlider img {
    position: absolute;
    display: block;
    width: auto;
    height: 100%;
    opacity: 1;
    transition: opacity 1.8s ease-in-out;
}
#mainSlider .slider-text-box {
    position: relative;
    height: 100%;
    text-align: left;
    color: #ffffff;
    animation: 1.8s ease-in-out innerSliderTextBox;
    opacity: 1;
    left: 0;
}
@keyframes innerSliderTextBox { from { opacity: 0; left: 180px; } to { opacity: 1; left: 0; } }
#mainSlider h1 {
    position: absolute;
    top: 60%;
    font-family: 'Roboto-Bold';
    font-size: 60px;
}
#mainSlider h2 {
    position: absolute;
    top: calc(60% - 30px);
    font-family: 'Roboto-Light';
    font-size: 20px;
}
#mainSlider .main-slider-red-line {
    position: absolute;
    top: calc(60% + 90px);
    width: 30%;
    box-sizing: border-box;
    height: 4px;
    background-color: #ee1705;
    border-radius: 2px;
}
#mainSlider span {
    position: absolute;
    top: calc(60% + 110px);
    font-family: 'Roboto-Italic';
    font-size: 16px;
}

/* PAGE TITLE */
h1.page-title {
    display: block;
    width: 100%;
    height: 300px;
    text-align: center;
    font-family: 'Roboto-Bold';
    font-size: 50px;
    color: #ffffff;
    line-height: 300px;
}

/* CONTENT */
main {
    min-height: calc(100vh - 110px);
    margin-top: 80px;
    z-index: 1;
    opacity: 1;
    animation: 1.8s ease-in-out innerContent;
}
@keyframes innerContent { from { opacity: 0; } to { opacity: 1; } }

.page-description {
    box-sizing: border-box;
    width: 70%;
    margin: 100px 15%;
    padding: 50px 50px 40px;
    text-align: center;
    font-family: 'Roboto-Black';
    font-size: 20px;
    background-color: #ffffff;
}
.page-description span {
    display: block;
    margin-top: 25px;
    font-family: 'Roboto-Italic';
    font-size: 18px;
    background-color: #ffffff;
}

/* karate kids images and text */
.main-animated-h3 {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.main-animated-h3-text {
    display: inline-block;
    text-align: center;
    padding: 0 30px;
}
.main-animated-h3-text h3 {
    font-family: 'Roboto-Medium';
    text-transform: uppercase;
    font-size: 18px;
    color: #5a5a5a;
}
.main-animated-h3-image-1 {
    display: inline-block;
    width: 160px;
    height: 160px;
    background-image: url(../src/sparing/karate-girl-0.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    animation: 12s ease-in-out infinite sparing-girl;
}
@keyframes sparing-girl { 
     0% { background-image: url(../src/sparing/karate-girl-0.png); opacity: 1;}

    13% { background-image: url(../src/sparing/karate-girl-0.png); opacity: 1; }
    16% { background-image: url(../src/sparing/karate-girl-0.png); opacity: 0; }
    17% { background-image: url(../src/sparing/karate-girl-1.png); opacity: 0; }
    20% { background-image: url(../src/sparing/karate-girl-1.png); opacity: 1; }

    33% { background-image: url(../src/sparing/karate-girl-1.png); opacity: 1; }
    36% { background-image: url(../src/sparing/karate-girl-1.png); opacity: 0; }
    37% { background-image: url(../src/sparing/karate-girl-2.png); opacity: 0; }
    40% { background-image: url(../src/sparing/karate-girl-2.png); opacity: 1; }

    53% { background-image: url(../src/sparing/karate-girl-2.png); opacity: 1; }
    56% { background-image: url(../src/sparing/karate-girl-2.png); opacity: 0; }
    57% { background-image: url(../src/sparing/karate-girl-3.png); opacity: 0; }
    60% { background-image: url(../src/sparing/karate-girl-3.png); opacity: 1; }

    73% { background-image: url(../src/sparing/karate-girl-3.png); opacity: 1; }
    76% { background-image: url(../src/sparing/karate-girl-3.png); opacity: 0; }
    77% { background-image: url(../src/sparing/karate-girl-4.png); opacity: 0; }
    80% { background-image: url(../src/sparing/karate-girl-4.png); opacity: 1; }

    93% { background-image: url(../src/sparing/karate-girl-4.png); opacity: 1; }
    96% { background-image: url(../src/sparing/karate-girl-4.png); opacity: 0; }
    97% { background-image: url(../src/sparing/karate-girl-0.png); opacity: 0; }
}
.main-animated-h3-image-2 {
    display: inline-block;
    width: 160px;
    height: 160px;
    background-image: url(../src/sparing/karate-boy-0.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    animation: 12s ease-in-out infinite sparing-boy;
}
@keyframes sparing-boy { 
    0% { background-image: url(../src/sparing/karate-boy-0.png); opacity: 1;}

   20% { background-image: url(../src/sparing/karate-boy-0.png); opacity: 1; }
   23% { background-image: url(../src/sparing/karate-boy-0.png); opacity: 0; }
   24% { background-image: url(../src/sparing/karate-boy-1.png); opacity: 0; }
   27% { background-image: url(../src/sparing/karate-boy-1.png); opacity: 1; }

   40% { background-image: url(../src/sparing/karate-boy-1.png); opacity: 1; }
   43% { background-image: url(../src/sparing/karate-boy-1.png); opacity: 0; }
   44% { background-image: url(../src/sparing/karate-boy-2.png); opacity: 0; }
   47% { background-image: url(../src/sparing/karate-boy-2.png); opacity: 1; }

   60% { background-image: url(../src/sparing/karate-boy-2.png); opacity: 1; }
   63% { background-image: url(../src/sparing/karate-boy-2.png); opacity: 0; }
   64% { background-image: url(../src/sparing/karate-boy-3.png); opacity: 0; }
   67% { background-image: url(../src/sparing/karate-boy-3.png); opacity: 1; }

   80% { background-image: url(../src/sparing/karate-boy-3.png); opacity: 1; }
   83% { background-image: url(../src/sparing/karate-boy-3.png); opacity: 0; }
   84% { background-image: url(../src/sparing/karate-boy-0.png); opacity: 0; }
   87% { background-image: url(../src/sparing/karate-boy-0.png); opacity: 1; }
}

/* STATIC */
.static-block {
    background-color: #ffffff;
}

.top-shadow {
    box-shadow: inset 0 3px 7px 0 #000000;
}

.content-text-box {
    box-sizing: border-box;
    width: 49%;
    background-color: #ffffff;
    padding: 50px;
    margin-top: 150px;
    margin-bottom: 25px;
    display: inline-block;
    vertical-align: bottom;
}
.content-text-box h4 {
    font-family: 'Roboto-Black';
    font-size: 20px;
    color: #000000;
}
.content-text-box p {
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}
.content-text-box .post {
    font-family: 'Roboto-Italic';
    font-size: 15px;
    line-height: 20px;
}
.content-text-box .post a {
    font-family: 'Roboto-Italic';
    text-decoration: none;
}
.content-text-box a {
    color: #360000;
}
.content-text-box a:hover {
    color: #ee1705;
}
button {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    font-family: 'Roboto-Bold';
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 24px;
    color: #ffffff;
    line-height: 20px;
    background-color: #000000;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 0 #777777;
    transition: bottom .3s ease-in-out, box-shadow .3s ease-in-out;
}
button:hover {
    bottom: 3px;
    box-shadow: 0px 3px 9px 3px #777777;
}

.content-text-box .to-center {
    text-align: center;
}
.content-text-box .big-font {
    margin-top: 27px;
    font-family: 'Roboto-Bold';
    font-size: 18px;
}
.content-text-box ul {
    margin-left: 12px;
    padding: 0;
}
.content-text-box li {
    line-height: 25px;
    margin-bottom: 12px;
}
.content-text-box .call-to-action {
    margin-top: 12px;
    text-align: center;
    font-family: 'Roboto-Italic';
    font-size: 18px;
}

/* contacts page */
.contacts-text-box, .contacts-map-box {
    display: inline-block;
    box-sizing: border-box;
    vertical-align: bottom;
    margin: 150px 0 50px;
    width: 49%;
    height: 420px;
    background-color: #000000;
    color: #ffffff;
}
.contacts-text-box {
    padding: 50px;
}
.contacts-map-box {
    padding: 0;
}
.contacts-text-box h4 {
    font-family: 'Roboto-Bold';
    font-size: 25px;
    text-align: center;
    color: #ffffff;
}
.contacts-photo, .contacts-text {
    display: inline-block;
    width: 49%;
    vertical-align: bottom;
}
.contacts-photo img {
    max-width: 100%;
}
.contacts-text-box .sub-title {
    margin: 20px 0 10px;
    font-size: 20px;
    color: #8c8c8c;
}
.contacts-text-box .post {
    font-family: 'Roboto-Italic';
}
.contacts-text-box a {
    height: 25px;
    font-size: 16px;
    font-family: 'Roboto-Bold';
    text-decoration: none;
    color: #ffffff;
    transition: color .3s ease-in-out;
}
.contacts-text-box a:hover {
    color:#c70000;
}
.contacts-text-box a img {
    position: relative;
    bottom: 0;
    width: auto;
    height: 30px;
    margin: 20px 20px 0 0;
    vertical-align: middle;
    filter: invert(1);
    transition: bottom .3s ease-in-out;
}
.contacts-text-box a img.phone {
    height: 20px;
    margin: 0 10px 0 0;
}
.contacts-text-box a:hover img {
    bottom: 3px;
}
/**/
.float-right {
    float: right;
}
.content-image-box {
    display: inline-block;
    width: 49%;
    box-sizing: border-box;
    vertical-align: bottom;
    text-align: center;
}

/* entry */
.entry-right {
    opacity: 0;
    transform: translateX(50%);
}

.entry-left {
    opacity: 0;
    transform: translateX(-50%);
}

.element-show {
    opacity: 1;
    transition: all 1.2s ease;
    transform: translateX(0%);
}

/* trener */
.content-image-box .trainer {
    position: relative;
    margin-top: 100px;
    margin-bottom: 25px;
    z-index: 0;
}
.content-image-box .trainer.right{
    position: relative;
    margin-top: 100px;
    margin-bottom: 25px;
    margin-left: -200px;
    z-index: 0;
}
.content-text-box.trainer {
    position: relative;
    margin-bottom: 150px;
    z-index: 1;
}

/* PARALLAX */
.parallax-block {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* BLOCKS */
.block-title {
    font-family: 'Roboto-Black';
    font-size: 25px;
    text-align: center;
}
.block-post-title {
    font-family: 'Roboto-Bold';
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

/* 4 blocks */
.wrapper-4-blocks {
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-around;
    align-items: center;

    margin-top: 100px; 
    margin-bottom: 25px;
}
.wrapper-4-blocks--content, .wrapper-4-blocks--image {
    width: 50%;
    height: 400px;
}
.wrapper-4-blocks--content {
    position: relative;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 50px;
}
.wrapper-4-blocks--content li {
    line-height: 25px;
    padding-bottom: 25px;
}
.wrapper-4-blocks--content .special-icons li {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    list-style-type: none;
    padding-bottom: 2px;
    font-family: 'Roboto-Bold';
    font-size: 18px;
}
.wrapper-4-blocks--content .special-icons {
    margin: 0;
    padding: 20px 0 0 0;
}
.wrapper-4-blocks--content .special-icons li span {
    display: block;
    font-family: 'Roboto-Light';
    font-size: 16px;
    padding-left: 22px;
}
.wrapper-4-blocks--content .special-icons li:before {
    content: "✰ ";
    vertical-align: bottom;
    font-size: 20px;
}
.wrapper-4-blocks--content button {
    position: absolute;
    bottom: 40px;
    right: 100px;
    font-family: 'Roboto-Bold';
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 24px;
    color: #ffffff;
    line-height: 20px;
    background-color: #000000;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 0 #777777;
    transition: bottom .3s ease-in-out, box-shadow .3s ease-in-out;
}
.wrapper-4-blocks--content button:hover {
    bottom: 53px;
    box-shadow: 0px 3px 9px 3px #777777;
}
.wrapper-4-blocks--content .big-italic {
    text-align: center;
    font-family: 'Roboto-Italic';
    font-size: 20px;
    font-weight: 600;
}
.wrapper-4-blocks--image {
    overflow: hidden;
}
.wrapper-4-blocks--image img {
    width: 100%;
}

.wrapper-4-blocks .icon-item {
    line-height: 22px;
    margin-bottom: 20px;
}
.wrapper-4-blocks .icon-item .item-title {
    font-family: 'Roboto-Bold';
}
.wrapper-4-blocks .icon-item .item-details {
    display: block;
    margin-top: 7px;
    font-family: 'Roboto-Italic';
}

/* 1 block */
.wrapper-1-block {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-top: 100px;
    margin-bottom: 25px;
    padding: 50px;
    background-color: #ffffff;
}

/* 1 block accordion */
.accordion-description {
    display: inline-block;
    margin-top: 25px;
    width: 29%;
    vertical-align: top;
    font-size: 18px;
    color: #000000;
    font-family: 'Roboto-Bold';
    line-height: 22px;
}
.accordion-description .title-description, .accordion .title-description {
    margin-bottom: 10px;
    font-family: 'Roboto-Regular';
}
.accordion-description .italic-description {
    margin-top: 10px;
    font-family: 'Roboto-Italic';
}
.accordion {
    display: inline-block;
    margin-top: 25px;
    width: 69%;
    line-height: 22px;
}

.accordion #questions li {
    font-family: 'Roboto-Medium';
    font-size: 18px;
    margin-bottom: 15px;
    cursor: pointer;
}
.accordion #questions li.open {
    font-weight: 700;
    cursor: default;
}
.accordion #questions li::marker {
    font-family: 'Roboto-Bold';
}
.accordion #questions li div {
    font-family: 'Roboto-Regular';
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
}
.accordion #questions li.open div {
    max-height: 2000px;
    padding: 10px 5px;
    border-left: solid 1px #5a5a5a;
    border-bottom: solid 1px #5a5a5a;
    transition: max-height 1.2s ease-in-out;
}

/* contacts */
.contacts {
    margin: 25px auto 0;
    text-align: center;
    font-size: 30px;
    font-family: 'Roboto-Bold';
}
.contacts a {
    height: 50px;
    text-decoration: none;
    color:#000000;
    transition: color .3s ease-in-out;
}
.contacts a:hover {
    color:#ee1705;
}
.contacts img {
    position: relative;
    bottom: 0;
    width: auto;
    height: 50px;
    margin: 10px 20px 0;
    vertical-align: middle;
    transition: bottom .3s ease-in-out;
}
.contacts img.phone {
    margin: 0 20px 10px 0;
}
.contacts a:hover img {
    bottom: 3px;
}

/* gallery*/
.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    margin-bottom: 25px;
}
.gallery-wrapper div {
    position: relative;
    bottom: 0;
    width: 30%;
    height: 360px;
    margin: 5px;
    background-color: #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    transition: bottom .3s ease-in-out;
}
.gallery-wrapper div:hover {
    bottom: 3px;
}
.gallery-wrapper div.full-screen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-size: contain;
    z-index: 100;
}
.gallery-wrapper div.full-screen::before {
    content: '×';
    position: absolute;
    right: 12px;
    top: 0px;
    font-size: 80px;
    color: #ffffff;
    z-index: 90;
}

/* publikacii */
.articles-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    margin-bottom: 25px;
}
.articles-list-wrapper a {
    display: block;
    position: relative;
    bottom: 0;
    width: 45%;
    height: 300px;
    margin: 10px;
    background-color: #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: bottom .3s ease-in-out;
}
.articles-list-wrapper a:hover {
    bottom: 3px;
}
.articles-list-wrapper a span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 10px;
    font-family: 'Roboto-Bold';
    text-align: center;
    font-size: 20px;
    color: #c7c7c7;
    background-color: #000000cc;
    transition: color .3s ease-in-out;
}
.articles-list-wrapper a:hover span {
    color: #ffffff;
}
.more-articles {
    margin: 50px 0 10px;
    text-align: center;
    font-family: 'Roboto-Bold';
    font-size: 25px;
}
.article-content {
    margin: 50px 0 25px;
    box-sizing: border-box;
    width: 100%;
    padding: 50px;
    background-color: #ffffff;
}
.article-content p {
    text-indent: 50px;
}
.article-content .full-width {
    margin: 0;
    padding: 0;
    width: 100%;
}
.article-content .float-left {
    margin: 5px 15px 5px 0;
    max-width: 50%;
    float: left;
}
.article-content .float-right {
    margin: 5px 0 5px 15px;
    max-width: 50%;
    float: right;
}

/* sitemap */
.sitemap-links {
    margin: 150px 0 25px;
    box-sizing: border-box;
    padding: 50px;
    background-color: #ffffff;
}
.sitemap-links ul li {
    margin-bottom: 10px;
}
.sitemap-links ul li a {
    color: #000000;
    font-size: 20px;
    text-decoration: none;
    transition: color .3s ease-in-out;
    cursor: pointer;
}
.sitemap-links ul li a:hover {
    color: #ee1705;
}
.sitemap-links ul ul li {
    margin-bottom: 10px;
}
.sitemap-links ul ul li a {
    color: #3b3b3b;
    font-size: 20px;
    text-decoration: none;
    transition: color .3s ease-in-out;
    cursor: pointer;
}
.sitemap-links ul ul li a:hover {
    color: #ee1705;
}

/* callBox */
#callBox {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    position: fixed;
    text-align: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000cc;
    color: #ffffff;
    opacity: 0;
    transition: opacity .6s ease-in-out;
    z-index: 100;
}
#callBox::before {
    content: '×';
    position: absolute;
    right: 12px;
    top: 0px;
    font-size: 80px;
    color: #ffffff;
    z-index: 90;
}
#callBox .callBox-block {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
    color: #000000;
    font-size: 20px;
}
#callBox .callBox-title {
    margin: 20px 0 10px;
    font-family: 'Roboto-Bold';
    font-size: 25px;
}
#callBox .callBox-name {
    font-family: 'Roboto-Regular';
    margin-bottom: 25px;
}
#callBox a {
    text-decoration: none;
    font-family: 'Roboto-Bold';
    font-size: 20px;
    color: #000000;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}
#callBox img.phone {
    height: 40px;
    margin: 0 20px 0 0;
    vertical-align: middle;
}
#callBox img {
    height: 50px;
    margin: 25px;
}
#callBoxButton {
    position: fixed;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
    right: 0;
    bottom: 100px;
    padding: 5px;
    background-color: #ffffff;
    border-radius: 35px 0 0 35px;
    box-shadow: 0 0 5px 3px #000000;
    animation: 1.8s start-show-call-button ease-in;
    z-index: 20;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}
@keyframes start-show-call-button {0% {opacity: 0;} 66.6% {opacity: 0;} 100% {opacity: 1;}}
#callBoxButton img {
    width: 60px;
    animation: 6s animate-call-button infinite ease-in-out;
    transform: rotate(30deg);
}
@keyframes animate-call-button {
    60% {transform: rotate(30deg);}
    70% {transform: rotate(0deg);}
    80% {transform: rotate(30deg);}
    90% {transform: rotate(0deg);}
    100% {transform: rotate(30deg);}
}

/* FOOTER */
footer {
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    background-color: #000000;
    border-top: solid 1px #ee1705;
    z-index: 1;
}
footer .footer-box {
    display: inline-block;
    box-sizing: border-box;
    padding: 50px 25px 25px;
    width: 32%;
    vertical-align: top;
    font-family: 'Roboto-Regular';
    font-size: 16px;
}
footer .footer-box h5 {
    margin-bottom: 20px;
    font-family: 'Roboto-Bold';
    font-size: 20px;
}
footer li {
    list-style-type: none;
    list-style-type: none;
    padding-bottom: 3px;
}
footer li:before {
        content: "➤ ";
        font-size: 12px;
        vertical-align: middle;
}
footer a {
    text-decoration: none;
    color: #ffffff;
    transition: color .3s ease-in-out;
}
footer a:hover {
    color: #ee1705;
}
footer .bold {
    font-family: 'Roboto-Bold';
}
footer .contacts {
    margin-top: 15px;
    text-align: left;
    font-family: 'Roboto-Bold';
    font-size: 20px;
}
footer .contacts a {
    color: #ffffff;
}
footer .contacts img {
    filter: invert(1);
    height: 30px;
    margin: 15px 15px 0 0;
}
footer .contacts img.phone {
    height: 25px;
    margin: 0 10px 0 0;
}
footer .footer-copyright-container {
    box-sizing: border-box;
    padding: 20px 10px;
    text-align: center;
}
footer .toTopButton {
    position: absolute;
    right: 10px;
    bottom: 15px;
    width: 30px;
    height: 30px;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    font-size: 32px;
    border: solid 2px #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color .3s ease-in-out
}
footer .toTopButton:hover {
    border-color: #ee1705;
}

@media (max-width: 1280px) {
    body {
        scroll-behavior: smooth;
    }
    header nav {
        display: none;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        position: fixed;
        text-align: center;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000000cc;
        opacity: 0;
        transition: opacity .6s ease-in-out;
        z-index: 100;
    }
    header nav::before {
        content: '×';
        position: absolute;
        right: 12px;
        top: 0;
        font-size: 80px;
        color: #ffffff;
    }
    header nav .main-menu {
        height: auto;
        list-style: none;
        font-size: 16px;
        max-width: 280px;
        width: 60%;
        padding: 20px;
        background-color: #000000;
        border: solid 2px #ffffff;
        border-radius: 10px;
    }
    header nav .main-menu li {
        display: block;
        margin: 24px;
    }
    header #mobileMenu {
        display: block;
    }
    .container {
        max-width: 700px;
        width: calc(100% - 60px);
    }
    /**/
    #mainSlider h1 {
        font-size: 40px;
    }
    #mainSlider h2 {
        top: calc(60% - 20px);
        font-size: 16px;
    }
    #mainSlider .main-slider-red-line {
        top: calc(60% + 60px);
    }
    #mainSlider span {
        top: calc(60% + 70px);
        font-size: 12px;
    }
    /**/
    .main-animated-h3 {
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 25px 0;
    }
    .content-image-box img {
        width: -webkit-fill-available;
    }

    /* trener */
    .content-image-box.trainer {
        vertical-align: top;
    }
    .content-image-box .trainer {
        position: static;
        margin-top: 100px;
        margin-bottom: 25px;
    }
    .content-image-box .trainer.right{
        position: static;
        margin-top: 100px;
        margin-bottom: 25px;
        margin-left: 0;
    }
    .content-text-box.trainer {
        position: static;
        margin-top: 100px;
        margin-bottom: 25px;
    }
    
    /* contacts page */
    .contacts-text-box {
        margin: 150px 0 0;
        width: 100%;
        height: auto;
    }
    .contacts-map-box {
        margin: 0 0 25px 0;
        width: 100%;
        height: 400px;
    }
    .contacts-photo img {
        max-width: 100%;
    }

    /* gallery*/
    .gallery-wrapper div {
        width: 45%;
        height: 300px;
    }

    /* publikacii */
    .articles-list-wrapper a {
        width: 600px;
    }

    .articles-list-wrapper a span {
        color: #ffffff;
    }

    .wrapper-4-blocks {
        display: block;
        margin: 50px auto;
    }
    .wrapper-4-blocks--content, .wrapper-4-blocks--image {
        width: 100%;
        height: auto;
    }
    footer .footer-box {
        width: 100%;
    }
}

@media (max-width: 780px) {
    /**/
    #mainSlider h1 {
        top: 30%;
        font-size: 30px;
    }
    #mainSlider h2 {
        top: calc(30% - 40px);
        font-size: 16px;
    }
    #mainSlider .main-slider-red-line {
        top: calc(30% + 80px);
        width: 40%;
        height: 4px;
        border-radius: 2px;
    }
    #mainSlider span {
        top: calc(30% + 90px);
        font-size: 12px;
    }
    /**/
    h1.page-title {
        box-sizing: border-box;
        height: auto;
        min-height: 200px;
        font-size: 40px;
        line-height: 50px;
        padding: 50px 0;
    }
    .main-animated-h3-text h3 {
        font-size: 14px;
    }
    .container {
        width: calc(100% - 40px);
    }
    .content-text-box, .content-image-box, .accordion-description, .accordion {
        width: 100%;
        margin-top: 20px;
    }

    /* trener */
    .content-image-box.trainer {
        vertical-align: baseline;
    }
    .content-image-box .trainer {
        position: static;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .content-image-box .trainer.right{
        position: static;
        margin-top: 0;
        margin-bottom: 10px;
    }
    .content-text-box.trainer {
        position: static;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    /* contacts page */
    .contacts-text-box {
        margin: 25px 0 0;
    }
    .contacts-map-box {
        width: 100%;
        height: 300px;
    }
    .contacts-text-box h4 {
        font-size: 20px;
    }
    .contacts-photo, .contacts-text {
        width: 100%;
    }
    .contacts-text-box .sub-title {
        margin: 20px 0 10px;
        font-size: 15px; /**/
    }
    .contacts-text-box .post {
        margin-top: 50px;
    }
    .contacts-text-box a {
        height: 15px;
        font-size: 15px;
    }
    .contacts-text-box a img {
        height: 20px;
        margin: 10px 10px 0 0;
    }
    .contacts-text-box a img.phone {
        height: 15px;
        margin: 0 5px 0 0;
    }

    .parallax-block {
        background-attachment: unset;
        background-repeat: repeat;
    }
    .wrapper-4-blocks--content .special-icons {
        margin-bottom: 20px;
    }
    .wrapper-4-blocks--content .special-icons li {
        width: 100%;
        margin-bottom: 10px;
    }
    .wrapper-4-blocks--content button {
        position: static;
        display: block;
        margin: 0 auto;
    }
    .questions-contact-title, .contacts {
        font-size: 20px;
    }
    .contacts img {
        margin: 15px;
        height: 35px;
    }
    .contacts img.phone {
        margin: 0 10px 0 0;
        height: 25px;
    }

    /* gallery*/
    .gallery-wrapper div {
        width: 100%;
        height: 400px;
    }

    /* publikacii */
    .articles-list-wrapper a {
        width: 100%;
        height: 240px;
    }
    .articles-list-wrapper a span {
        font-size: 15px;
    }
    .article-content .float-left, .article-content .float-right {
        max-width: 100%;
    }

    #callBox .callBox-block {
        font-size: 15px;
    }
    #callBox a {
        font-size: 15px;
    }
    #callBox img.phone {
        width: 20px;
        margin: 0 10px 0;
    }
    #callBox img {
        width: 35px;
        margin: 15px;
    }

    /* sitemap */
    .sitemap-links {
        margin: 25px 0;
    }

    footer .footer-box .contacts{
        font-size: 18px;
    }
}

@media (max-width: 390px) {
    .page-description {
        width: 100%;
        margin: 25px 0;
    }
    .questions-contact-title, .contacts {
        font-size: 15px;
    }
    .contacts img {
        margin: 10px;
        height: 35px;
    }
    .gallery-wrapper div {
        width: 100%;
        height: 220px;
    }
    .more-articles {
        margin: 25px 0 0;
        font-size: 20px;
    }
    .sitemap-links {
        padding: 25px;
    }
    footer .contacts img {
        margin: 15px 10px 0 0;
    }
}