main {
  overflow: hidden;
  min-height: calc(100vh - 80px);
  margin-top: 95px;
}
@media (max-width: 990px) {
  main {
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  main {
    min-height: 100%;
  }
}

body, html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p {
  margin: 0;
  padding: 0;
}

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

img {
  color: transparent;
}

img:not([src]) {
  visibility: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.padding {
  padding: 0 15px;
}

.margin {
  margin-bottom: 120px;
}
@media (max-width: 990px) {
  .margin {
    margin-bottom: 35px;
  }
}

a, button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.overlay {
  overflow: hidden;
}

input, button, textarea {
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  font-family: "Onest", sans-serif;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

button {
  border: none;
  box-shadow: none;
  width: 100%;
  appearance: none;
  cursor: pointer;
}

ul, ol {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

input:focus, textarea:focus {
  outline: none;
}

.order-preloader {
  position: fixed;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  pointer-events: none;
  opacity: 0;
}
.order-preloader img {
  height: 65px;
  width: 65px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.order-preloader__active {
  display: block;
  pointer-events: auto;
  opacity: 1;
}

.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.header {
  background: #231F20;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
}
.header__wrap {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 990px) {
  .header__wrap {
    grid-gap: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__logo img {
  object-fit: contain;
}
@media (max-width: 990px) {
  .header__logo img {
    height: 100%;
    width: 45px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header__nav {
    display: none;
    background: #231F20;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    padding: 15px;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 990px) {
  .header__nav-active {
    display: flex;
  }
}
.header__nav ul {
  display: flex;
  align-content: center;
}
@media (max-width: 990px) {
  .header__nav ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin-top: 40px;
  }
}
.header__nav ul li {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .header__nav ul li {
    display: block;
  }
}
.header__nav ul li:hover ul {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 990px) {
  .header__nav ul li.header__submenu-open > ul {
    display: block;
  }
}
.header__nav ul li ul {
  opacity: 0;
  pointer-events: none;
  display: block;
  background: #231F20;
  position: absolute;
  padding: 10px;
  top: 110%;
  border-radius: 0 0 5px 5px;
  left: 5px;
}
@media (max-width: 990px) {
  .header__nav ul li ul {
    position: relative;
    opacity: 1;
    display: none;
    border-radius: 0;
    pointer-events: auto;
    background: transparent;
    padding: 10px 0 0 20px;
    top: 0;
    left: 0;
    margin: 10px 0 0 0;
    border-top: 1px solid #fff;
  }
}
.header__nav ul li ul::after {
  content: "";
  height: 10px;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
}
@media (max-width: 990px) {
  .header__nav ul li ul::after {
    display: none;
  }
}
.header__nav ul li ul li {
  margin-bottom: 5px;
}
.header__nav ul li ul li:last-child {
  margin-bottom: 0;
}
.header__nav ul li ul a {
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.header__nav a {
  margin: 0 10px;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  font-weight: 400;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .header__nav a {
    margin: 0;
    font-size: 20px;
    line-height: 160%;
  }
}
.header__nav a:hover {
  color: #FF4400;
}
@media (min-width: 991px) {
  .header__nav > ul > .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
  }
  .header__nav > ul > .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 12px;
    margin-left: 4px;
    background: url("../../img/arr-right.svg") center/contain no-repeat;
    flex-shrink: 0;
  }
}
.header__arr {
  display: none;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 10px;
  margin-left: -5px;
  pointer-events: none;
  transition: 0.3s;
  border: 0;
  padding: 0;
  background: transparent;
}
@media (max-width: 990px) {
  .header__arr {
    display: flex;
    width: 25px;
    height: 25px;
    pointer-events: auto;
    margin: 0;
    position: absolute;
    right: 0;
    top: 3px;
    transform: rotate(90deg);
    cursor: pointer;
  }
}
.header__arr img,
.header__arr svg {
  display: block;
  height: 12px;
  width: 7px;
}
@media (max-width: 990px) {
  .header__arr img,
  .header__arr svg {
    height: 15px;
    width: 15px;
  }
}
@media (max-width: 990px) {
  .header__arr-active {
    transform: rotate(-90deg);
  }
}
.header__phone {
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 185px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 5px;
  white-space: nowrap;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .header__phone {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 990px) {
  .header__phone span {
    display: none;
  }
}
.header__phone:hover {
  color: #FF4400;
}
.header__phone img {
  margin-right: 5px;
}
@media (max-width: 990px) {
  .header__phone img {
    margin: 0;
    height: 15px;
    width: 15px;
  }
}
.header__setting {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column-start: 3;
}
@media (max-width: 990px) {
  .header__setting {
    grid-column-start: auto;
  }
}
.header__cart {
  margin: 0 10px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
}
@media (max-width: 990px) {
  .header__cart {
    margin: 0 15px 0 15px;
  }
}
.header__cart span {
  position: absolute;
  font-size: 11px;
  line-height: 12px;
  background: #EC1418;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -9.5px;
  right: -8.5px;
  color: #fff;
  z-index: 2;
  padding: 1px;
  border-radius: 50%;
  min-height: 18px;
  min-width: 18px;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(3.5px);
  }
  50% {
    transform: translateX(-3.5px);
  }
  75% {
    transform: translateX(3.5px);
  }
  100% {
    transform: translateX(0);
  }
}
.header__call {
  display: none;
}
@media (max-width: 990px) {
  .header__call {
    display: flex;
    align-content: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: transparent;
  }
}
.header__close {
  display: none;
}
@media (max-width: 990px) {
  .header__close {
    position: absolute;
    display: block;
    top: 15px;
    right: 15px;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: transparent;
    z-index: 2;
  }
}

.page-template-catering-php .header__cart,
#page-catering .header__cart {
  display: none !important;
}

.header-hidden {
  transform: translateY(-100%);
  transition: 0.3s;
}

.banner {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 85px);
}
@media (max-width: 990px) {
  .banner {
    height: auto;
  }
}
.banner .container {
  height: 100%;
  box-sizing: border-box;
}
.banner__img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.banner__wrap {
  padding: 80px 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 990px) {
  .banner__wrap {
    padding: 160px 0;
  }
}
.banner__title {
  position: relative;
  z-index: 2;
  font-size: 64px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin: 0 auto 20px auto;
  max-width: 580px;
}
@media (max-width: 990px) {
  .banner__title {
    font-size: 30px;
    max-width: 300px;
  }
}
.banner__text {
  margin: 0 auto 20px auto;
  max-width: 580px;
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
@media (max-width: 990px) {
  .banner__text {
    font-size: 16px;
    line-height: 120%;
    max-width: 320px;
  }
}
.banner__btn {
  max-width: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #FF4400;
  z-index: 2;
  position: relative;
  font-size: 18px;
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  padding: 10px 15px;
  justify-content: center;
  transition: 0.3s;
}
.banner__btn:hover {
  background: #d43d06;
}
.banner__btn img {
  margin-left: 10px;
}

.event .tns-inner {
  overflow: hidden;
}
.event__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.event__controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.event__controls button {
  margin-left: 10px;
  height: 30px;
  width: 30px;
  background: #E4E0E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.event__controls button:hover {
  background: #FF4400;
}
.event__controls button:last-child {
  background: #FF4400;
}
.event__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #231F20;
}
@media (max-width: 990px) {
  .event__title {
    font-size: 30px;
  }
}
.event__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 990px) {
  .event__text {
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .event__text {
    max-width: 220px;
  }
}
.event__wrap {
  overflow: hidden;
  height: 335px;
}
@media (max-width: 990px) {
  .event__wrap {
    height: auto;
  }
}
.event__item {
  max-width: 420px;
}
@media (max-width: 576px) {
  .event__item {
    max-width: 100%;
  }
}
.event__item:hover .event__img img {
  transform: scale(1.2);
}
.event__img {
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .event__img {
    height: 185px;
  }
}
.event__img img {
  transition: 0.6s;
  max-width: 100%;
  height: 220px;
  width: 100%;
  box-sizing: border-box;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 990px) {
  .event__img img {
    height: 185px;
  }
}
.event__name {
  color: #231F20;
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 10px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 1.2;
  display: -webkit-box;
}
@media (max-width: 990px) {
  .event__name {
    font-size: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
  }
}
.event__info {
  color: #231F20;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 10px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
}
.event__btn {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #231F20;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  border-radius: 10px;
}
.event__btn:hover {
  background: #3f393b;
}

.about {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #FAF8F8;
}
@media (max-width: 990px) {
  .about {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.about__wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
@media (max-width: 990px) {
  .about__wrap {
    grid-gap: 20px;
  }
}
@media (max-width: 768px) {
  .about__wrap {
    grid-gap: 10px;
  }
}
.about__item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 150px;
}
@media (max-width: 768px) {
  .about__item {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.about__item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .about__item img {
    grid-row-start: 1;
  }
}
.about__item:nth-child(2n) {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 120px;
}
@media (max-width: 768px) {
  .about__item:nth-child(2n) {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.about__title {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #231F20;
}
@media (max-width: 990px) {
  .about__title {
    margin-bottom: 15px;
    font-size: 30px;
  }
}
.about__text p {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .about__text p {
    font-size: 15px;
  }
}
.about__text strong {
  font-size: 26px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 990px) {
  .about__text strong {
    font-size: 19px;
    line-height: 125%;
  }
}

.gallery__title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #231F20;
}
@media (max-width: 990px) {
  .gallery__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
.gallery__wrap {
  display: grid;
  grid-template-columns: 1fr 310px 310px;
  grid-template-rows: 280px 280px;
  grid-gap: 20px;
}
@media (max-width: 1100px) {
  .gallery__wrap {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .gallery__wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 15px;
  }
}
.gallery__item {
  overflow: hidden;
  border-radius: 10px;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__item img {
  transition: 0.45s;
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  display: block;
}
.gallery__item:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .gallery__item:nth-child(1) {
    grid-row-start: auto;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-end: auto;
  }
}

.product .tns-inner {
  overflow: hidden;
}
.product__controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__controls button {
  margin-left: 10px;
  height: 30px;
  width: 30px;
  background: #E4E0E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.product__controls button:hover {
  background: #FF4400;
}
.product__controls button:last-child {
  background: #FF4400;
}
.product__wrap {
  overflow: hidden;
  height: 333px;
}
@media (max-width: 990px) {
  .product__wrap {
    height: auto;
  }
}
.product__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.product__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #231F20;
}
@media (max-width: 990px) {
  .product__title {
    font-size: 30px;
  }
}
.product__item {
  max-width: 313px;
}
@media (max-width: 576px) {
  .product__item {
    max-width: 100%;
  }
}
.product__item:hover .product__img img {
  transform: scale(1.07);
}
.product__img {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .product__img {
    height: 170px;
  }
}
@media (max-width: 576px) {
  .product__img {
    height: 150px;
  }
}
.product__img img {
  transition: 0.5s;
  max-width: 100%;
  height: 200px;
  width: 100%;
  box-sizing: border-box;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 990px) {
  .product__img img {
    height: 170px;
  }
}
@media (max-width: 576px) {
  .product__img img {
    height: 150px;
  }
}
.product__name {
  color: #231F20;
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 10px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 1.2;
  display: -webkit-box;
}
@media (max-width: 990px) {
  .product__name {
    font-size: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
  }
}
.product__text {
  color: #231F20;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 10px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
}
.product__attr {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.product__price {
  color: #231F20;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
}
.product__article {
  color: #A7A5A6;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  margin: 0 5px;
  padding: 0 5px;
  border-left: 1px solid #A7A5A6;
  border-right: 1px solid #A7A5A6;
}
.product__size {
  color: #231F20;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
}
.product__add {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #231F20;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  border-radius: 10px;
}
.product__add:hover {
  background: #3f393b;
}

.review__title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #231F20;
}
@media (max-width: 990px) {
  .review__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
.review__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media (max-width: 990px) {
  .review__wrap {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.review__item {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #888888;
}
@media (max-width: 990px) {
  .review__item {
    padding: 10px;
  }
}
.review__top {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .review__top {
    margin-bottom: 8px;
  }
}
.review__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: #231F20;
}
@media (max-width: 990px) {
  .review__text {
    font-size: 14px;
    line-height: 120%;
  }
}
.review__img {
  margin-right: 10px;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 990px) {
  .review__img {
    margin-right: 5px;
  }
}
.review__name {
  font-size: 20px;
  font-weight: 600;
  margin-right: 10px;
  line-height: 140%;
  color: #231F20;
}
@media (max-width: 990px) {
  .review__name {
    font-size: 18px;
    margin-right: 5px;
  }
}
.review__date {
  font-size: 14px;
  font-weight: 300;
  margin-right: 10px;
  color: #888888;
  line-height: 100%;
}
@media (max-width: 990px) {
  .review__date {
    margin-right: 5px;
  }
}

.contact {
  background: #FAF8F8;
}
@media (max-width: 990px) {
  .contact {
    padding: 0;
    margin-bottom: 0;
  }
}
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 120px;
}
@media (max-width: 990px) {
  .contact__wrap {
    grid-gap: 0;
    grid-template-columns: 1fr;
  }
}
.contact__form {
  padding: 75px 0;
  max-width: 380px;
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0 auto;
}
@media (max-width: 990px) {
  .contact__form {
    padding: 30px 10px;
    grid-gap: 15px;
  }
}
@media (max-width: 576px) {
  .contact__form {
    max-width: 100%;
  }
}
.contact__input {
  position: relative;
}
.contact__input img {
  position: absolute;
  left: 7px;
  top: 10px;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 990px) {
  .contact__input img {
    top: 8px;
  }
}
.contact__input input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 10px 10px 35px;
  border-radius: 10px;
  border: 1.5px solid #7B7979;
  font-size: 16px;
  font-weight: 400;
  color: #231F20;
  background: transparent;
  transition: 0.3s;
}
.contact__input input:hover {
  border-color: #231F20;
}
.contact__input input:focus {
  border-color: #231F20;
}
.contact__input textarea {
  width: 100%;
  background: transparent;
  box-sizing: border-box;
  resize: none;
  padding: 10px;
  color: #231F20;
  border-radius: 10px;
  border: 1.5px solid #7B7979;
  font-size: 16px;
  font-weight: 400;
  height: 130px;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .contact__input textarea {
    height: 125px;
  }
}
.contact__input textarea:hover {
  border-color: #231F20;
}
.contact__input textarea:focus {
  border-color: #231F20;
}
.contact__send {
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #FF4400;
  z-index: 2;
  position: relative;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  justify-content: center;
  transition: 0.3s;
  border-radius: 10px;
}
.contact__send:hover {
  background: #d43d06;
}
.contact__send:hover img {
  transform: scale(1.3);
}
.contact__send img {
  margin-left: 10px;
  transition: 0.3s;
}
.contact__title {
  line-height: 140%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}
.contact__map iframe {
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: block;
}
@media (max-width: 990px) {
  .contact__map iframe {
    height: 325px;
  }
}

.footer {
  background: #231F20;
}
.footer__light {
  color: #fff;
}
.footer__grey {
  color: #E4E0E0;
}
.footer__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 990px) {
  .footer__title {
    font-size: 19px;
  }
}
.footer__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.footer__wrap {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  grid-gap: 70px;
  align-items: start;
}
@media (max-width: 1150px) {
  .footer__wrap {
    grid-gap: 30px;
    grid-template-columns: 2fr 1fr 2fr 1fr;
  }
}
@media (max-width: 990px) {
  .footer__wrap {
    padding: 20px 0;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
.footer__left {
  display: grid;
  grid-template-columns: 78px 1fr;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 990px) {
  .footer__left {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-template-columns: 60px 1fr;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  height: 78px;
  width: 78px;
  object-fit: cover;
}
@media (max-width: 990px) {
  .footer__logo img {
    height: 100%;
    width: 60px;
  }
}
.footer__info {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px;
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.footer__nav ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px;
}
.footer__nav a {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  transition: 0.3s;
  color: #fff;
}
.footer__nav a:hover {
  color: #d5d5d5;
}
@media (max-width: 990px) {
  .footer__right {
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
.footer__right .footer__title {
  margin-bottom: 15px;
}
.footer__contact {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px;
  margin-bottom: 40px;
}
@media (max-width: 990px) {
  .footer__contact {
    margin: 0;
  }
}
.footer__contact a {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-height: 576px) {
  .footer__contact a {
    font-size: 15px;
  }
}
.footer__contact a:hover img {
  transform: translateX(-3px);
}
.footer__contact a img {
  transition: 0.3s;
  margin-right: 5px;
}
.footer__social {
  display: flex;
  align-items: center;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.footer__social a:hover img {
  transform: scale(1.1);
}
.footer__social a img {
  transition: 0.3s;
}

.footer-copyright {
  background: #393536;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 100%;
}

.bg {
  z-index: 999;
  background: #000;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  box-sizing: border-box;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.modal-thank {
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  max-width: 420px;
  padding: 30px;
  margin: 0 auto;
  position: fixed;
  background: #fff;
  border-radius: 10px;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 990px) {
  .modal-thank {
    padding: 15px;
    max-width: 85%;
    width: 100%;
  }
}
.modal-thank__title {
  color: #FF4400;
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  margin: 0 0 25px 0;
}
@media (max-width: 990px) {
  .modal-thank__title {
    font-size: 22px;
  }
}
.modal-thank__text {
  color: #231F20;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  margin: 0 0 25px 0;
}
@media (max-width: 990px) {
  .modal-thank__text {
    font-size: 16px;
  }
}
.modal-thank__text span {
  font-weight: 600;
}
.modal-thank__close {
  font-size: 18px;
  font-weight: 600;
  max-width: 180px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  border: 2px solid #231F20;
  transition: 0.3s;
  color: #231F20;
}
@media (max-width: 576px) {
  .modal-thank__close {
    max-width: 100%;
  }
}
.modal-thank__close:hover {
  color: #fff;
  background: #231F20;
}

.modal-error {
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  max-width: 420px;
  padding: 30px;
  margin: 0 auto;
  position: fixed;
  background: #fff;
  border-radius: 10px;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 990px) {
  .modal-error {
    padding: 25px 15px;
    max-width: 85%;
    width: 100%;
  }
}
.modal-error__title {
  color: #FF4400;
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  margin: 0 0 25px 0;
}
.modal-error__close {
  font-size: 18px;
  font-weight: 600;
  max-width: 180px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  border: 2px solid #231F20;
  transition: 0.3s;
  color: #231F20;
}
@media (max-width: 576px) {
  .modal-error__close {
    max-width: 100%;
  }
}
.modal-error__close:hover {
  color: #fff;
  background: #231F20;
}

.modal-product {
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  max-width: 800px;
  padding: 15px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 990px) {
  .modal-product {
    max-width: 100%;
    width: 85%;
    padding: 10px;
  }
}
.modal-product__close {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  height: 25px;
  width: 25px;
  margin-left: auto;
}
@media (max-width: 990px) {
  .modal-product__close {
    margin-bottom: 5px;
  }
}
@media (max-width: 990px) {
  .modal-product__close img {
    height: 20px;
    width: 20px;
  }
}
.modal-product__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 20px;
}
@media (max-width: 990px) {
  .modal-product__top {
    grid-gap: 0;
    grid-template-columns: 1fr;
  }
}
.modal-product__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .modal-product__img {
    display: none;
  }
}
.modal-product__img img {
  max-width: 100%;
  height: 225px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  object-fit: contain;
}
.modal-product__title {
  color: #FF4400;
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .modal-product__title {
    font-size: 22px;
  }
}
.modal-product__text {
  color: #231F20;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .modal-product__text {
    margin-bottom: 10px;
  }
}
.modal-product__price {
  color: #231F20;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .modal-product__price {
    margin-bottom: 10px;
  }
}
.modal-product__setting {
  display: grid;
  grid-template-columns: 3fr 95px;
  grid-gap: 10px;
}
@media (max-width: 576px) {
  .modal-product__setting {
    grid-template-columns: 3fr 1fr;
  }
}
.modal-product__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #231F20;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .modal-product__cart {
    padding: 5px;
  }
}
.modal-product__cart:hover {
  background: #3f393b;
}
.modal-product__coll {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-product__coll input {
  width: 35px;
  height: 35px;
  text-align: center;
  box-shadow: none;
  appearance: none;
  border-radius: 10px;
  color: #231F20;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #231F20;
  line-height: 100%;
}
@media (max-width: 768px) {
  .modal-product__coll input {
    width: 40px;
    height: 30px;
    margin: 0 5px;
  }
}
.modal-product__coll input[type=number]::-webkit-inner-spin-button,
.modal-product__coll input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.modal-product__coll button {
  width: 20px;
  height: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  display: flex;
  color: #231F20;
  box-shadow: none;
  appearance: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .modal-product__coll button {
    height: 25px;
    width: 30px;
    font-size: 18px;
  }
}
.modal-product__group-wrapper {
  margin-top: 10px;
  max-height: 180px;
  overflow-y: auto;
}
@media (max-width: 1200px) {
  .modal-product__group-wrapper {
    max-height: 160px;
  }
}
@media (max-width: 990px) {
  .modal-product__group-wrapper {
    max-height: 180px;
  }
}
.modal-product__group-wrapper-2 .modal-product__attr-img {
  margin: 0 auto 5px auto;
  height: 55px;
  width: 55px;
  object-fit: contain;
}
.modal-product__group-wrapper-2 .modal-product__attr-wrap {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 990px) {
  .modal-product__group-wrapper-2 .modal-product__attr-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
.modal-product__require:first-child {
  padding-top: 0;
  margin-top: 0;
  border: none;
}
.modal-product__error {
  color: #FF4400;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  grid-column-start: 1;
  display: none;
  grid-column-end: 3;
}
@media (max-width: 990px) {
  .modal-product__error {
    margin-top: 15px;
    font-size: 14px;
    line-height: 22px;
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
.modal-product__require {
  padding-top: 10px;
  margin-top: 15px;
  border-top: 2px solid #FF4400;
}
@media (max-width: 990px) {
  .modal-product__require {
    margin-top: 5px;
  }
}
.modal-product__attr-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
}
@media (max-width: 990px) {
  .modal-product__attr-wrap {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 576px) {
  .modal-product__attr-wrap {
    display: flex;
    overflow-x: auto;
    padding-bottom: 15px;
    grid-gap: 0;
  }
}
.modal-product__attr {
  padding: 5px;
  border: 1px solid #231F20;
  display: flex;
  border-radius: 5px;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .modal-product__attr {
    padding: 3px;
  }
}
@media (max-width: 576px) {
  .modal-product__attr {
    margin-right: 10px;
  }
}
.modal-product__attr:hover {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
  border-color: #FF4400;
}
.modal-product__attr p:last-child {
  margin: 0;
}
.modal-product__attr-active {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.4);
  border-color: #FF4400;
}
@media (max-width: 576px) {
  .modal-product__attr:last-child {
    margin-right: 0;
  }
}
.modal-product__attr-name {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
}
@media (max-width: 990px) {
  .modal-product__attr-name {
    margin-bottom: 5px;
  }
}
.modal-product__attr-title {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
}
@media (max-width: 990px) {
  .modal-product__attr-title {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .modal-product__attr-title {
    white-space: nowrap;
  }
}
.modal-product__attr-text {
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
}
@media (max-width: 990px) {
  .modal-product__attr-text {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .modal-product__attr-text {
    white-space: nowrap;
  }
}

.modal-time {
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  max-width: 500px;
  padding: 15px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 990px) {
  .modal-time {
    max-width: 85%;
    width: 100%;
  }
}
.modal-time__close {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  height: 25px;
  width: 25px;
  margin-left: auto;
}
.modal-time__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.modal-time__icon img, .modal-time__icon svg {
  height: 30px;
  width: 30px;
}
.modal-time__title {
  color: #FF4400;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .modal-time__title {
    font-size: 22px;
  }
}
.modal-time__text {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  max-width: 360px;
  margin: 0 auto 20px auto;
}

.modal-catering {
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  max-width: 450px;
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 990px) {
  .modal-catering {
    max-width: 100%;
    width: 85%;
    padding: 15px;
  }
}
.modal-catering__close {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 25px;
  width: 25px;
  margin-left: auto;
}
@media (max-width: 990px) {
  .modal-catering__close {
    margin-bottom: 5px;
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 990px) {
  .modal-catering__close img {
    height: 20px;
    width: 20px;
  }
}
.modal-catering__cart {
  max-height: 160px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 7px;
  margin-bottom: 15px;
}
@media (max-height: 576px) {
  .modal-catering__cart {
    max-height: 225px;
  }
}
.modal-catering__deleted {
  position: absolute;
  right: 10px;
  top: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 20px;
  width: 20px;
}
.modal-catering__deleted::before {
  content: "";
  background: url("../../img/deleted.svg");
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  display: block;
}
.modal-catering__item {
  padding: 0 20px 0 10px;
  position: relative;
}
.modal-catering__item::before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background: #000;
  left: 1px;
  top: 8px;
}
.modal-catering__additional {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
  color: #231F20;
}
.modal-catering__additional span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  padding: 2px 5px;
  margin: 0 4px 4px 0;
  border: 1px solid grey;
  border-radius: 15px;
}
.modal-catering__name {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.modal-catering__name span {
  font-weight: 600;
}
.modal-catering__price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
  font-size: 20px;
  color: #231F20;
  line-height: 1;
  font-weight: 600;
}
.modal-catering__price span {
  margin-left: 5px;
}
.modal-catering__label {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  margin-bottom: 10px;
  color: #231F20;
}
.modal-catering__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.modal-catering__input {
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 10px;
  border: 1.5px solid #7B7979;
  font-size: 16px;
  font-weight: 400;
  color: #231F20;
  background: transparent;
  transition: 0.3s;
}
.modal-catering__input:hover {
  border-color: #231F20;
}
.modal-catering__input:focus {
  border-color: #231F20;
}
.modal-catering__coll {
  grid-column-start: 1;
  grid-column-end: 3;
}
.modal-catering__name {
  grid-column-start: 1;
  grid-column-end: 3;
}
.modal-catering__send {
  grid-column-start: 1;
  grid-column-end: 3;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #FF4400;
  z-index: 2;
  position: relative;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  justify-content: center;
  transition: 0.3s;
  border-radius: 10px;
}
.modal-catering__send:hover {
  background: #d43d06;
}
.modal-catering__send-preload {
  color: transparent;
}
.modal-catering__send-preload::before {
  content: "";
  background: url("../../img/order-preloader.svg");
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.catering-fixed {
  position: fixed;
  right: 35px;
  bottom: 45px;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  background: #FF4400;
  box-shadow: 0 0 10px #FF4400, 0 0 20px #FF4400;
  animation: pulse 2s infinite ease-in-out;
}
@media (max-width: 990px) {
  .catering-fixed {
    right: 20px;
    bottom: 20px;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 68, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 68, 0, 0.9);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 68, 0, 0.6);
  }
}

.catering-fixed-disabled {
  pointer-events: none;
  box-shadow: none;
  opacity: 0.4;
  background: grey;
  animation: none;
}

.toast-green {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  position: fixed;
  right: 0;
  z-index: 99;
  top: 20%;
  padding: 12px;
  color: #fff;
  background: #10b981;
  border-left: 6px solid #047857;
  transition: 0.4s;
  transform: translateX(100%);
}

.toast-active {
  opacity: 1;
  transform: translateX(0);
}

.bg-active {
  opacity: 0.75;
  pointer-events: auto;
}

.scroll-none {
  overflow: hidden;
}

.modal-active {
  opacity: 1;
  pointer-events: auto;
}

.preloader {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 9;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.preloader::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0.9;
  background: #fff;
  width: 100%;
  max-width: 100%;
}
.preloader img {
  height: 150px;
  width: 150px;
  position: relative;
  z-index: 9;
}

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}

.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}



/*# sourceMappingURL=home.css.map */
