body, html {
    margin: 0;
    padding: 0;
}

body {
    color: #4c5255;
    font: 400 16px / 1.5 "MyriadPro-Regular", sans-serif;
    background-color: #000;
}

*
{
    box-sizing: border-box;
    outline: none;
}
/* -------------------------------------------------------------------- */
/* ------------------------------ fonts ------------------------------- */
/* -------------------------------------------------------------------- */
@font-face {
    font-family: "MyriadPro-Bold";
    src:
            url("fonts/MyriadPro-Bold.eot?#iefix") format("embedded-opentype"),
            url("fonts/MyriadPro-Bold.ttf"),
            url("fonts/MyriadPro-Bold.woff") format("woff"),
            url("fonts/MyriadPro-Bold.otf") format("opentype");
    font-style:  normal;
    font-weight: normal;
}

@font-face {
    font-family: "MyriadPro-Regular";
    src:
            url("fonts/MyriadPro-Regular.eot?#iefix") format("embedded-opentype"),
            url("fonts/MyriadPro-Regular.ttf"),
            url("fonts/MyriadPro-Regular.woff") format("woff"),
            url("fonts/MyriadPro-Regular.otf") format("opentype");
    font-style:  normal;
    font-weight: normal;
}
/* -------------------------------------------------------------------- */
/* ----------------------------- headers ------------------------------ */
/* -------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin:  0;
    padding: 0;
}

h1 {
    font-size: 36px;
}

h2,
h3 {
    background: #FAFAFA;
    border-bottom: 2px solid #CC0000;
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
}

h4 {
    font-weight: bold;
}

h5 {
    font-size: 12px;
}

h6 {
    font-size: 10px;
}

/* -------------------------------------------------------------------- */
/* ------------------------------ links ------------------------------- */
/* -------------------------------------------------------------------- */
a,
a:visited {
    color: #CC0000;
    text-decoration: none;
    transition: 0.6s;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: underline;
}

a:visited {
    color: #800080;
}
/* -------------------------------------------------------------------- */
/* -------------------------- form elements --------------------------- */
/* -------------------------------------------------------------------- */
input, select, textarea, button {
    border: none;
    border-radius: 0;
    line-height: inherit;
    padding: 0;
    margin:  0;
    -webkit-appearance: none;
}

label {
    font-weight: normal;
    line-height: inherit;
    padding: 0;
    margin:  0;
}

input[type=hidden],
::-ms-clear,
::-ms-reveal {
    display: none;
}

textarea {
    resize: none;
}

/* -------------------------------------------------------------------- */
/* ------------------------------ tables ------------------------------ */
/* -------------------------------------------------------------------- */
table {
    border-collapse: collapse;
    padding: 0;
    margin:  0;
}

table td,
table th {
    border-top:    1px solid #B6C0C6;
    border-bottom: 1px solid #B6C0C6;
    padding: 5px 10px;
    margin: 0;
}
/* -------------------------------------------------------------------- */
/* ------------------------------ others ------------------------------ */
/* -------------------------------------------------------------------- */
ul {
    padding: 0;
    margin:  0 0 0 20px;
}

li {
    list-style-type: none;
    padding: 0;
    margin:  0;
}

p {
    padding: 0 0 20px 0;
    margin:  0;
    text-align: justify;
}

figure {
    margin: 0;
}

/* -------------------------------------------------------------------- */
/* ------------------------- DEFAULT STYLES --------------------------- */
/* -------------------------------------------------------------------- */

.btn {
    background-color: #CC0000;
    color: #FFF;
    letter-spacing: 1px;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid #cc0000;
    transition: all 0.5s;
}

.btn:hover {
    background-color: #fff;
    color: #cc0000;
    cursor: pointer;
    transition: all 0.5s;
}

.save-price {
    width: 85%;
    position: absolute;
    top: 20px;
    left: 20px;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    opacity: 0;
    transition: opacity 0.5s;
}

.save-price::before {
    content: "";
    border-left: 1px solid #fff;
    display: block;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.save-price::after {
    content: "";
    border-left: 1px solid #fff;
    display: block;
    height: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.price-btn {
    background-color: transparent;
    color: #FFF;
    border-radius: 3px;
    text-transform: uppercase;
    padding: 5px;
    border: none;
}

.main-title {
    font: 700 24px / 18px "MyriadPro-Bold", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 3px solid #cc0000;
    border-bottom: 3px solid #cc0000;
    position: relative;
    display: inline-block;
    padding: 32px 20px;
    margin-bottom: 40px;
    background-color: transparent;
}

.main-title::before {
    content: "";
    border-left: 3px solid #cc0000;
    display: block;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.main-title::after {
    content: "";
    border-left: 3px solid #cc0000;
    display: block;
    height: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.main-title .title-right-side {
    color: #cc0000;
}

/* -------------------------------------------------------------------- */
/* --------------------------- MAIN SLIDER ---------------------------- */
/* -------------------------------------------------------------------- */

.wrapper {
    height: 100%;
}

.bud-center-slider > .section .column-left,
.bud-center-slider > .section .column-right {
    width: 50%;
    color: #000;
}

.bud-center-slider > .section .fp-tableCell {
    display: flex;
    flex-wrap: wrap;
}

.bud-center-slider > .section .column,
.bud-center-slider > .section .column.top {
    height: 100%;
    background-size: cover;
}

.bud-center-slider > .section .column.top .container {
    height: 100%;
}

.bud-center-slider > .section .column.top {
    background: url("img/shpola-top-main.jpg") no-repeat;
    background-size: cover;
    width: 100%;
}

.first-scroll-pict {
    background: url("img/left-slide-1.jpg") no-repeat;
}

.second-scroll-pict {
    background: url("img/right-slide-1.jpg") no-repeat;
}

.third-scroll-pict {
    background: url("img/left-slide-2.jpg") no-repeat;
}

.fouth-scroll-pict {
    background: url("img/right-slide-2.jpg") no-repeat;
}

.five-scroll-pict {
    background: url("img/shpola-bg-location.jpg") no-repeat;
}

.bud-center-slider > .section .column img {
    max-width: 100%;
    height: auto;
}

.bud-center-slider > .section .column-left {
    transition: all 0.5s ease 0s;
    transform: translateY(100%);
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.bud-center-slider > .section .column-right {
    transition: all 0.5s ease 0s;
    transform: translateY(-100%);
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.bud-center-slider > .section .column-left .inner-data-box {
    margin-right: 30px;
}

.bud-center-slider > .section .column-right .inner-data-box {
    margin-left: 30px;
}

.bud-center-slider > .section .column:not(.five-scroll-pict):hover .inner-data-box {
    opacity: 1;
    transition: opacity 0.5s;
    cursor: pointer;
}

.bud-center-slider > .section.active {
    z-index: 1;
}

.bud-center-slider > .section.active.section-fixed-top {
    animation: fadeInFromNone 1s ease-out;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.bud-center-slider > .section.active .column-left,
.bud-center-slider > .section.active .column-right {
    transform: translateY(0);
}

.bud-center-slider > .section.active~.section .column-left {
    transform: translateY(-100%);
}

.bud-center-slider > .section.active~.section .column-right {
    transform: translateY(100%);
}

.bud-center-slider {
    transform: translate3d(0px, 0px, 0px) !important;
}

.bud-center-slider > .section {
    position: absolute;
    top: 0;
    left: 0;
}

/* -------------------------------------------------------------------- */
/* ------------------------------ HEADER ------------------------------ */
/* -------------------------------------------------------------------- */

.header-title {
    line-height: 36px;
    color: red;
    text-transform: uppercase;
    display: block;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.header-text {
    color: red;
    font-size: 36px;
    line-height: 36px;
    display: block;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.bud-center-slider > .section .column .header img {
    width: 120px;
    position: relative;
    bottom: 20px;
}

.bud-center-slider > .section:not(.section-fixed-top) .column:not(.five-scroll-pict)::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.bud-center-slider > .section:not(.section-fixed-top) .column:not(.five-scroll-pict):hover::before {
    content: '';
    opacity: 1;
    transition: opacity 0.5s;
    cursor: pointer;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header-inner {
    background: url("img/shpola-bg.png") center no-repeat;
    background-size: contain;
    width: 800px;
    min-height: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-text-info {
    font-size: 17px;
    padding: 0 60px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.header-buttons {
    margin-top: 20px;
}

.header-buttons .red-btn {
    display: inline-block;
    background-color: red;
    border-radius: 4px;
    border: 2px solid red;
    padding: 7px 30px;
    margin-right: 10px;
    color: #FFF;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.5s;
}

.header-buttons .red-btn:hover {
    text-decoration: none;
    background-color: #fff;
    border: 2px solid red;
    color: red;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
}

/* -------------------------------------------------------------------- */
/* ------------------- АНИМИРОВАННАЯ СТРЕЛОЧКА ------------------------ */
/* -------------------------------------------------------------------- */

.arrow-anchor {
    background-color: transparent;
    height: 120px;
    width: 60px;
    display: flex;
    justify-content: center;
    border: 3px solid #FFF;
    border-radius: 100px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto 30px;
    text-align: center;
    animation: circle 1.5s linear 0s infinite normal running;
    z-index: 999;
    transform: rotate(0);
    transition: transform 0.5s;
}

.arrow-anchor .arrow-anchor-icon {
    font-size: 28px;
    color: #FFF;
    bottom: -70px;
    position: absolute;
    animation: arrowRotate 1.5s linear 0s infinite normal running;
    cursor: pointer;
}

@keyframes circle {
    0%   {bottom: 0;}
    75%  {bottom: 30px;}
    100% {bottom: 0;}
}

@keyframes circleBottomRed {
    0%   {bottom: 0;}
    75%  {bottom: 65px;}
    100% {bottom: 0;}
}

@keyframes arrowRotate {
    0%   {height: 110px;}
    10%  {height: 120px;}
    50%  {height: 140px;}
    75%  {height: 160px;}
    90%  {height: 120px;}
    100% {height: 110px;}
}

@keyframes arrowRotateNeutralUp {
    0%   {top: 5px;}
    75%  {top: 15px;}
    100% {top: 5px;}
}

@keyframes arrowRotateNeutralDown {
    0%   {bottom: 5px;}
    75%  {bottom: 15px;}
    100% {bottom: 5px;}
}

.section.first.active ~ .arrow-anchor {
    animation: circle 1.5s linear 0s infinite normal running;
    transform: rotate(-180deg);
    transition: transform 0.5s;
}

.section.last.active ~ .arrow-anchor {
    border: 3px solid red;
    animation: circle 1.5s linear 0s infinite normal running;
    transform: rotate(-180deg);
    transition: transform 0.5s;
}

.section.last.active ~ .arrow-anchor .arrow-anchor-icon.up {
    color: red;
    display: block;
    transform: rotate(-180deg);
    bottom: 0;
    top: -70px;
    animation: circleBottomRed 1.5s linear 0s infinite normal running;
}

.section.first.active ~ .arrow-anchor .arrow-anchor-icon.up,
.section.last.active ~ .arrow-anchor .arrow-anchor-icon.down {
    display: none;
}

.section.first.active ~ .arrow-anchor .arrow-anchor-icon.down {
    transform: rotate(180deg);
    bottom: 0;
    top: -70px;
}

.section.center.active ~ .arrow-anchor .arrow-anchor-icon.up {
    top: 0;
    bottom: auto;
    display: block;
    animation: arrowRotateNeutralUp 1.5s linear 0s infinite normal running;
}

.section.center.active ~ .arrow-anchor .arrow-anchor-icon.down {
    animation: arrowRotateNeutralDown 1.5s linear 0s infinite normal running;
}

.section.center.active ~ .arrow-anchor:hover .arrow-anchor-icon.up,
.section.center.active ~ .arrow-anchor:hover .arrow-anchor-icon.down,
.section.last.active ~ .arrow-anchor:hover .arrow-anchor-icon.up,
.section.last.active ~ .arrow-anchor:hover,
.section.first.active ~ .arrow-anchor:hover,
.arrow-anchor .arrow-anchor-icon:hover,
.arrow-anchor:hover {
    animation-play-state: paused;
}

/* -------------------------------------------------------------------- */
/* --------------------------- ПАГИНАЦИЯ ------------------------------ */
/* -------------------------------------------------------------------- */

#fp-nav ul li a span,
#fp-nav ul li:hover a span {
    width: 40px;
    height: 6px;
    background-color: #FFF;
    margin: 10px 0;
    transition: 0.4s;
    border-radius: 0;
    top: 0;
    bottom: 0;
}

#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span {
    width: 60px;
    border-radius: 0;
    height: 6px;
    margin: 0;
    left: -20px;
    top: auto;
    bottom: 0;
}

#fp-nav ul li a.active + .fp-tooltip {
    opacity: 1;
    overflow: visible;
    right: auto;
    left: -20px;
    top: -13px;
    font-size: 16px;
    font-weight: bold;
    transition: opacity 0.5s;
}

/* -------------------------------------------------------------------- */
/* ------------------ ВНУТРЕННИЕ БЛОКИ СЛАЙДЕРА ----------------------- */
/* -------------------------------------------------------------------- */

.inner-data-box {
    opacity: 0;
    position: absolute;
    color: #FFF;
    z-index: 1;
    width: 350px;
    border: 2px solid #FFF;
    padding: 12px;
    text-align: center;
    transition: opacity 0.5s;
}

.inner-data-box h2 {
    text-transform: uppercase;
    background-color: transparent;
    font-size: 30px;
    border: none;
    padding: 0;
    margin: 0;
}

.inner-data-box.black {
    opacity: 1;
    padding: 0;
}

.inner-data-box.black .inner-data-box-map {
    border: 2px solid #333;
    padding: 20px 10px;
    color: #333;
    margin-bottom: 20px;
}

.inner-data-box.black .section-title {
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.address-inner-txt .address-inner-obl,
.address-inner-txt .other-address {
    display: block;
}

.product-data-inner-address img {
    width: 30px;
    max-height: 50px;
}

.address-inner-txt .address-inner-obl {
    border-bottom: 1px solid #333;
    letter-spacing: 0;
    display: inline-block;
}

.product-data-inner-address {
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0;
}

/* -------------------------------------------------------------------- */
/* ------------------------------ КАРТА ------------------------------- */
/* -------------------------------------------------------------------- */

.address-inner-txt {
    text-align: left;
    width: 180px;
}

.map-canvas {
    width: 100%;
    height: 100%;
}

.social-footer-block .icon {
    color: #333;
    font-size: 60px;
    margin-right: 10px;
    transition: color 0.5s;
}

.social-footer-block .icon:hover {
    color: red;
    transition: color 0.5s;
}

.social-footer-block a {
    display: block;
}

.inner-data-box.social-data {
    border: none;
    color: #333;
    opacity: 1;
    padding: 0;
}

.inner-data-box.social-data h3 {
    text-transform: uppercase;
    border: none;
    font-size: 24px;
    padding: 0;
}

.social-footer-block {
    display: flex;
    justify-content: center;
}

.logo-footer {
    font-size: 24px;
    text-transform: uppercase;
    color: #333;
    font-weight: bold;
    display: block;
    width: 100%;
    margin-top: 10px;
}

.logo-footer:hover,
.logo-footer:active,
.logo-footer:visited {
    color: #333;
}

/* -------------------------------------------------------------------- */
/* ------------------------------ MEDIA ------------------------------- */
/* -------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
    .bud-center-slider > .section .column-left,
    .bud-center-slider > .section .column-right {
        width: 100%;
        justify-content: center;
    }

    .bud-center-slider > .section.last .column-left,
    .bud-center-slider > .section.last .column-right {
        align-items: flex-start;
        height: 50%;
    }

    .inner-data-box,
    .bud-center-slider > .section:not(.section-fixed-top) .column:not(.five-scroll-pict)::before {
        opacity: 1;
    }

    .inner-data-box.black {
        width: 100%;
    }

    .inner-data-box.black .inner-data-box-map {
        border: none;
        padding: 10px;
        margin-bottom: 0;
    }

    .product-data-inner-address img {
        display: none;
        padding: 0;
    }

    .bud-center-slider > .section .column-left .inner-data-box {
        margin-right: 0;
    }

    .product-data-inner-address {
        justify-content: center;
        width: calc(100% / 3);
    }

    .section.last .column.column-right {
        order: -1;
    }

    .inner-data-box-map .product-data-inner {
        display: flex;
    }

    .inner-data-box.black .section-title {
        font-size: 21px;
        line-height: 21px;
    }

    .inner-data-box.social-data .section-title {
        font-size: 16px;
        margin: 0;
    }
    
    .logo-footer {
        display: none;
    }

    .social-footer-block .icon {
        font-size: 30px;
    }

    .section.center.active ~ .arrow-anchor .arrow-anchor-icon.up,
    .section.center.active ~ .arrow-anchor .arrow-anchor-icon.down,
    .section.last.active ~ .arrow-anchor .arrow-anchor-icon.up,
    .section.last.active ~ .arrow-anchor,
    .section.first.active ~ .arrow-anchor,
    .arrow-anchor .arrow-anchor-icon,
    .arrow-anchor {
        animation-play-state: paused;
    }

    .section.first.active ~ .arrow-anchor,
    .section.last.active ~ .arrow-anchor {
        height: 60px;
    }

    .section.last.active ~ .arrow-anchor {
        border: 3px solid #333;
        left: auto;
        right: 10%;
    }

    .section.center.active ~ .arrow-anchor {
        left: auto;
        right: 10%;
    }

    .section.last.active ~ .arrow-anchor .arrow-anchor-icon.up {
        height: 114px;
        color: #333;
    }

    .product-data-inner-address {
        margin: 0;
    }

    .inner-data-box.social-data {
        width: 100%;
        border-top: 1px solid #333;
        padding: 15px 0;
    }

    .header-inner {
        width: 100%;
    }

    .header .header-text-info {
        font-size: 14px;
        padding: 0 45px;
        margin-top: 0;
        line-height: 16px;
        text-align: center;
    }

    .header .header-title {
        font-size: 25px;
        line-height: 25px;
    }

    .header .header-text {
        font-size: 23px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .bud-center-slider > .section .column .header img {
        width: 70px;
    }

    .header-buttons .red-btn {
        padding: 2px 20px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .header-buttons {
        margin-top: 9px;
    }
}

@media screen and (max-width: 480px) {
    .header-inner {
        width: 650px;
    }

    .header .header-text-info {
        font-size: 14px;
        max-width: 320px;
        padding: 0 15px;
    }

    .inner-data-box {
        width: 280px;
    }

    .inner-data-box.black .section-title {
        font-size: 16px;
        line-height: 16px;
    }

    .address-inner-txt .address-inner-obl {
        border-bottom: 1px solid #333;
        letter-spacing: 0;
        display: inline-block;
        font-size: 14px;
        line-height: 14px;
        font-weight: bold;
        text-align: center;
        height: 40px;
        padding: 10px 5px;
    }

    .address-inner-txt .address-inner-obl,
    .address-inner-txt .other-address {
        font-size: 14px;
        line-height: 14px;
        padding: 5px 15px;
        text-align: center;
    }

    .product-data-inner-address:not(:last-child) {
        border-right: 1px solid #333;
    }

    .inner-data-box.black .inner-data-box-map,
    .inner-data-box.social-data {
        padding: 10px 0;
    }

    .inner-data-box.social-data .section-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .bud-center-slider > .section.last .column-left {
        align-items: center;
    }

    .section.center.active ~ .arrow-anchor {
        left: auto;
        right: 10%;
        height: 80px;
    }

    .bud-center-slider > .section.last .column-left {
        align-items: flex-start;
    }

    .bud-center-slider > .section.last .column-left {
        height: 40%;
    }

    .bud-center-slider > .section.last .column-right {
        /*height: 60%;*/
    }
}

@media screen and (max-height: 640px) {
    .bud-center-slider > .section.last .column-left {
        /*height: 50%;*/
    }

    .bud-center-slider > .section.last .column-right {
        /*height: 50%;*/
    }

    .address-inner-txt .address-inner-obl,
    .address-inner-txt .other-address {
        padding: 5px;
    }
}


