body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.cub-cont {
  padding-left: 5px;
  padding-right: 5px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 480px) {
  .cub-cont {
    width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .cub-cont {
    width: 750px;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .cub-cont {
    padding: 30px 15px;
    padding-right: 0px;
    width: 1170px;
    margin: 0 auto;
  }
}

.cub-title {
  text-align: center;
  padding-bottom: 50px;
  padding-top: 30px;
  color: #FCE38A;
  font-size: 28px;
}
@media screen and (min-width: 1200px) {
  .cub-title {
    margin-top: 0;
  }
}

.cub-is-hidden {
  display: none;
}

.cookie-box {
  position: fixed;
  bottom: 5%;
  right: 10%;
  width: 250px;
  height: 100px;
  background-color: rgb(37, 37, 37);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
}
@media screen and (min-width: 375px) {
  .cookie-box {
    bottom: 5%;
    right: 15%;
  }
}
@media screen and (min-width: 768px) {
  .cookie-box {
    bottom: 5%;
    right: 5%;
  }
}
.cookie-box div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cookie-box span {
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
}
.cookie-box button {
  width: 100px;
  height: 30px;
  background-color: #0096FF;
  color: #fff;
  border: none;
  cursor: pointer;
}

.cub-menu-button {
  position: fixed;
  top: 10px;
  right: 25px;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  z-index: 6;
  cursor: pointer;
}
.cub-menu-button .cub-icon-close-menu {
  display: none;
}
.cub-menu-button.is-opened .cub-icon-close-menu {
  display: block;
}
.cub-menu-button.is-opened .cub-icon-menu {
  display: none;
}
.cub-menu-button:hover, .cub-menu-button:focus {
  fill: var(--hover-close-bt);
}
@media screen and (min-width: 768px) {
  .cub-menu-button {
    top: 10px;
    right: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .cub-menu-button {
    top: 10px;
    right: 20px;
  }
}

.cub-mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  background-color: white;
  text-align: center;
  z-index: 5;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), to(rgba(47, 48, 58, 0.4)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.4), rgba(47, 48, 58, 0.4));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(47, 48, 58, 0.4));
}
.cub-mobile-menu.is-opened {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  top: 0;
}
@media screen and (min-width: 768px) {
  .cub-mobile-menu {
    top: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .cub-mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.cub-mb-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  list-style-type: none;
  padding: 15px 40px 15px 40px;
  margin: 0;
  text-align: start;
}
@media screen and (min-width: 768px) {
  .cub-mb-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-align: center;
  }
}
.cub-mb-nav li {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .cub-mb-nav li {
    border-right: 1px solid white;
    padding-right: 10%;
    margin-bottom: 0;
  }
}
.cub-mb-nav a {
  color: white;
  font-size: 16px;
}

.cub-icons-menu {
  fill: white;
}

.cub-header {
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cub-header__logo {
  position: absolute;
  top: 12%;
  left: 25%;
  z-index: 2;
  font-size: 28px;
  text-transform: uppercase;
  color: #0096FF;
}
@media screen and (min-width: 768px) {
  .cub-header__logo {
    margin-top: 37px;
    top: 60px;
    left: 6%;
  }
}
@media screen and (min-width: 1200px) {
  .cub-header__logo {
    top: 0px;
    left: 12%;
  }
}
.cub-header__logo span {
  color: white;
}
.cub-header__list {
  display: none;
  position: absolute;
  padding-left: 0;
  list-style: none;
  margin-top: 30px;
  z-index: 2;
  top: 0;
  left: 30%;
  font-size: 18px;
  color: white;
}
@media screen and (min-width: 768px) {
  .cub-header__list {
    margin-top: 30px;
    z-index: 2;
    top: 115px;
    left: 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .cub-header__list {
    margin-top: 30px;
    z-index: 2;
    top: 0;
    left: 30%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cub-header__list li {
  border: 1px solid #0096FF;
  padding: 10px;
  border-radius: 20px;
}
.cub-header__list li:hover, .cub-header__list li:focus {
  background-color: #0096FF;
}
.cub-header__list li:first-child {
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .cub-header__list li:first-child {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.cub-header__list a {
  color: white;
}
.cub-header__link {
  display: none;
}
@media screen and (min-width: 768px) {
  .cub-header__link {
    position: absolute;
    top: 0%;
    right: 0;
    z-index: 2;
    margin-top: 35px;
    margin-right: 2%;
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    border: 1px solid white;
    padding: 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .cub-header__link {
    margin-right: 10%;
  }
}
.cub-header__link:hover, .cub-header__link:focus {
  border-color: #0096FF;
  background-color: #0096FF;
}

.cub-banner {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), to(rgba(47, 48, 58, 0.4))), url("/cub-attach/photos/cub-main.jpg");
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.4), rgba(47, 48, 58, 0.4)), url("/cub-attach/photos/cub-main.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(47, 48, 58, 0.4)), url("/cub-attach/photos/cub-main.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cub-banner {
    height: 800px;
  }
}
.cub-banner::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.6235294118);
  position: absolute;
  height: 100px;
  width: 100%;
  bottom: 0%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .cub-banner::after {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .cub-banner::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6235294118);
    position: absolute;
    height: 100%;
    width: 30%;
    z-index: 1;
    top: 0;
    right: 0;
  }
}
.cub-banner__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 800px;
  padding: 0;
}
.cub-banner__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cub-banner__title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.cub-banner__title h1 {
  color: white;
  text-transform: uppercase;
  font-size: 48px;
  margin-top: 30px;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .cub-banner__title h1 {
    font-size: 48px;
  }
}
.cub-banner__title span {
  color: #F473B9;
  font-size: 22px;
  max-width: 200px;
}
.cub-banner__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .cub-banner__sub {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cub-banner__sub span {
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}
.cub-banner__sub span:first-child {
  margin-top: 100px;
}
.cub-banner__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0%;
  right: 0;
  z-index: 2;
  margin-bottom: 30px;
  padding-right: 10%;
  display: none;
}
@media screen and (min-width: 768px) {
  .cub-banner__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 200px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0%;
    right: 0;
    z-index: 2;
    margin-bottom: 30px;
    padding-right: 2%;
  }
}
@media screen and (min-width: 1200px) {
  .cub-banner__quantity {
    padding-right: 10%;
  }
}
.cub-banner__number {
  font-size: 40px !important;
  margin-bottom: 5px;
}
.cub-banner__year {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 900;
}

.pc-title {
  font-size: 18px !important;
}
@media screen and (min-width: 768px) {
  .pc-title {
    font-size: 48px !important;
  }
}

.cub-pc-cont {
  padding-top: 30px;
  padding-bottom: 30px;
}

.cub-about {
  padding: 120px 0;
}
.cub-about h2 {
  color: #0096FF;
  margin-bottom: 30px;
  font-size: 32px;
}
.cub-about span {
  color: #000;
  line-height: 1.5em;
  font-size: 18px;
}

.cub-adv-order {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), to(rgba(47, 48, 58, 0.4))), url("/cub-attach/photos/cub-adv.jpg");
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.4), rgba(47, 48, 58, 0.4)), url("/cub-attach/photos/cub-adv.jpg");
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(47, 48, 58, 0.4)), url("/cub-attach/photos/cub-adv.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 20px 0;
}
.cub-adv-order__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cub-adv-order__cont {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cub-adv__list {
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .cub-adv__list {
    padding-left: 0;
    width: 450px;
  }
}
@media screen and (min-width: 1200px) {
  .cub-adv__list {
    width: 600px;
  }
}
.cub-adv__list li {
  color: white;
  margin-bottom: 10px;
  font-size: 22px;
}

.cub-order {
  position: relative;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 50px;
  background: #fff;
  width: 200px;
  height: 230px;
}
@media screen and (min-width: 768px) {
  .cub-order {
    width: 300px;
    height: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .cub-order {
    width: 350px;
    height: 230px;
  }
}
.cub-order__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 0;
}
@media screen and (min-width: 1200px) {
  .cub-order__form {
    width: 400px;
  }
}
.cub-order__form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .cub-order__form label {
    width: 400px;
  }
}
.cub-order__form label span {
  color: #0096FF;
  font-size: 16px;
}
.cub-order__form input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #0096FF;
  width: 200px;
  height: 30px;
  margin-top: 10px;
  padding-bottom: 5px;
  color: #0096FF;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .cub-order__form input {
    width: 200px;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .cub-order__form input {
    width: 350px;
  }
}
.cub-order__form input:hover, .cub-order__form input:focus {
  outline: none;
}
.cub-order__form input::-webkit-input-placeholder {
  font-size: 18px;
}
.cub-order__form input::-moz-placeholder {
  font-size: 18px;
}
.cub-order__form input:-ms-input-placeholder {
  font-size: 18px;
}
.cub-order__form input::-ms-input-placeholder {
  font-size: 18px;
}
.cub-order__form input::placeholder {
  font-size: 18px;
}
.cub-order__button {
  width: 200px;
  height: 40px;
  position: absolute;
  bottom: 90px;
  right: 45px;
  cursor: pointer;
  background: #0096FF;
  border-color: transparent;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .cub-order__button {
    bottom: 100px;
    right: 100px;
  }
}
.cub-order__card {
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  top: 50px;
  left: 50px;
  width: 250px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .cub-order__card {
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .cub-order__card {
    width: 380px;
  }
}
.cub-order__card-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  position: absolute;
  top: 45%;
  color: #000;
  font-size: 22px;
  width: 180px;
  height: 100px;
  left: 20%;
}
@media screen and (min-width: 768px) {
  .cub-order__card-back {
    width: 180px;
    height: 100px;
    left: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .cub-order__card-back {
    left: -30%;
    width: 100%;
    height: 100%;
  }
}
.cub-order.cub-is-flipped {
  -webkit-transform: translateX(-100%) rotateY(-180deg);
          transform: translateX(-100%) rotateY(-180deg);
}

.cub-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0352941176)), to(rgba(136, 136, 18, 0.0549019608))), #fff;
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.0352941176), rgba(136, 136, 18, 0.0549019608)), #fff;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.0352941176), rgba(136, 136, 18, 0.0549019608)), #fff;
}
@media screen and (min-width: 768px) {
  .cub-blog {
    padding: 40px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .cub-blog {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .cub-blog img {
    width: 50%;
  }
}
.cub-blog div {
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .cub-blog div {
    width: 50%;
    padding: 0 20px;
  }
}
.cub-blog div h2 {
  color: #0096FF;
  margin-bottom: 15px;
  font-size: 22px;
}
@media screen and (min-width: 1200px) {
  .cub-blog div h2 {
    font-size: 32px;
  }
}
.cub-blog div span {
  color: #000;
  line-height: 1.5em;
  font-size: 18px;
}

.cub-models {
  padding-top: 20px;
  padding-bottom: 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0352941176)), to(rgba(136, 136, 18, 0.0549019608))), #fff;
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.0352941176), rgba(136, 136, 18, 0.0549019608)), #fff;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.0352941176), rgba(136, 136, 18, 0.0549019608)), #fff;
}
.cub-models h2 {
  font-size: 32px;
  color: #0096FF;
  text-align: center;
  margin-bottom: 30px;
}
.cub-models__list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.cub-models__list li {
  width: 300px;
  overflow: hidden;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cub-models__list li {
    width: 300px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .cub-models__list li {
    width: 300px;
  }
}
.cub-models__list li:first-child {
  margin-bottom: 15px;
}
.cub-models__sub {
  color: #000;
  font-size: 22px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cub-models__sub {
    top: 10px;
    left: 15px;
  }
}
.cub-models__sub p {
  color: #0096FF;
}
@media screen and (min-width: 768px) {
  .cub-models__sub p {
    margin-top: 10px;
  }
}

.cub-footer {
  background-color: rgb(37, 37, 37);
  padding: 20px 5px;
}
.cub-footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cub-footer__contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: start;
  }
}
.cub-footer__contacts span {
  color: white;
}
.cub-footer__contacts ul {
  list-style: none;
  padding-left: 0;
}
.cub-footer__contacts a {
  color: white;
}
.cub-footer__contacts a:hover, .cub-footer__contacts a:focus {
  color: #0096FF;
}
.cub-footer__pc ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cub-footer__pc ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: start;
  }
}
.cub-footer__pc li:first-child {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .cub-footer__pc li:first-child {
    margin-bottom: 0;
  }
}
.cub-footer__pc a {
  color: white;
}
.cub-footer__pc a:hover, .cub-footer__pc a:focus {
  color: #0096FF;
}/*# sourceMappingURL=main.css.map */