@import "lightbox.min.css";
@font-face {
  font-family: "Rubik-Light";
  src: url("../fonts/Rubik-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rubik-Regular";
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rubik-Bold";
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
input, textarea, button {
  outline: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Rubik-Regular";
  font-size: 16px;
  color: #67676E;
}
img {
  max-width: 100%;
}
*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
}

input[type=text], input[type=email], textarea {
  border-radius: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  position: relative;
  width: 1024px;
  margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
  .container {
    width: 870px;
  }
}
@media only screen and (max-width: 840px) {
  .container {
    width: 100%;
    padding: 0 25px;
  }
}

.container-2 {
  position: relative;
  width: 1170px;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container-2 {
    width: 1024px;
  }
}
@media only screen and (max-width: 1100px) {
  .container-2 {
    width: 970px;
  }
}
@media only screen and (max-width: 840px) {
  .container-2 {
    width: 100%;
    padding: 0 25px;
  }
}

main {
  flex: 1;
  overflow: hidden;
}
main.no-main {
  display: flex;
}
main.no-main .main {
  min-height: auto;
  flex: 1;
}
main .main {
  /*min-height: 100vh;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  main .main {
    min-height: auto;
  }
}

.page-title {
  font-family: "Rubik-Light";
  font-size: 42px;
  color: #F05A28;
  text-transform: uppercase;
  text-align: center;
  margin: 30px 0;
}
@media only screen and (max-width: 1100px) {
  .page-title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 840px) {
  .page-title {
    font-size: 24px;
    margin: 15px 0;
  }
}

.orange-btn {
  background: #F05A28;
  border-radius: 10px;
  padding: 15px 25px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  cursor: pointer;
  transition: all 350ms ease-in-out;
  text-align: center;
}
.orange-btn:hover {
  background-color: #E3430E;
}
@media only screen and (max-width: 840px) {
  .orange-btn {
    font-size: 12px;
  }
}

.checkmark {
  cursor: pointer;
  top: 0;
  transform: rotate(0deg);
  transition: all 0.7s ease-in-out;
  transform-origin: 50% 50%;
}

.checkmark span {
  position: relative;
  display: block;
  width: 35px;
  height: 3.5px;
  margin-bottom: 7px;
  background-color: #035baa;
}

.checkmark span:first-child, .checkmark span:nth-child(2), .checkmark span:last-child {
  top: 0;
  transform: rotate(0deg);
  transition: 0.7s ease-in-out;
}

.checkmark.active {
  position: relative;
  transform: rotate(360deg);
  transform-origin: 50% 50%;
  transition: all 0.7s ease-in-out;
}

.checkmark.active span:first-child {
  top: 11.6666666667px;
  transform: rotate(45deg);
  transition: 0.7s ease-in-out;
}

.checkmark.active span:nth-child(2) {
  top: 1.1666666667px;
  transform: rotate(-45deg);
  transition: 0.7s ease-in-out;
}

.checkmark.active span:last-child {
  top: -9.2105263158px;
  transform: rotate(-45deg);
  transition: 0.7s ease-in-out;
}

header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
header .container-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 0;
  z-index: 1;
}
@media only screen and (max-width: 840px) {
  header .container-2 {
    padding: 25px;
  }
}
header .container-2 .logo {
  width: 270px;
}
@media only screen and (max-width: 840px) {
  header .container-2 .logo {
    width: 150px;
  }
}
header .container-2 .logo img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 840px) {
  header .container-2 .nav-menu {
    display: none;
  }
}
header .container-2 .nav-menu ul {
  display: flex;
}
header .container-2 .nav-menu ul li {
  margin-right: 35px;
}
header .container-2 .nav-menu ul li:last-child {
  margin-right: 0;
}
header .container-2 .nav-menu ul li:hover a {
  color: #FFA88B;
}
header .container-2 .nav-menu ul li.active a {
  border: 1px solid #fff;
  border-radius: 10px;
}
header .container-2 .nav-menu ul li a {
  font-size: 20px;
  color: #fff;
  padding: 10px 15px;
}
header .container-2 .nav-menu-mob {
  background-image: url("../../images/mob-menu-bg.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% 90%;
  width: 100%;
  height: 100vh;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: all 350ms ease-in-out;
}
@media only screen and (max-width: 374px) {
  header .container-2 .nav-menu-mob {
    background-size: 100% 100%;
  }
}
header .container-2 .nav-menu-mob.active {
  transform: translateX(0);
}
header .container-2 .nav-menu-mob.active body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 840px) {
  header .container-2 .nav-menu-mob {
    display: block;
  }
}
header .container-2 .nav-menu-mob .menu {
  display: flex;
  flex-direction: column;
  margin: 35px 0;
}
header .container-2 .nav-menu-mob .menu li {
  padding: 30px 0;
  border-top: 1px solid #fff;
}
@media only screen and (max-width: 374px) {
  header .container-2 .nav-menu-mob .menu li {
    padding: 20px 0;
  }
}
header .container-2 .nav-menu-mob .menu li:last-child {
  border-bottom: 1px solid #fff;
}
header .container-2 .nav-menu-mob .menu li:hover a {
  color: #FFA88B;
}
header .container-2 .nav-menu-mob .menu li a {
  font-size: 24px;
  color: #fff;
  padding: 10px 15px;
}
@media only screen and (max-width: 374px) {
  header .container-2 .nav-menu-mob .menu li a {
    font-size: 20px;
  }
}
header .container-2 .nav-menu-mob .social {
  padding: 0 25px;
}
header .container-2 .nav-menu-mob .social .address {
  font-size: 14px;
  line-height: 1.4;
  color: #FFFFFF;
}
header .container-2 .nav-menu-mob .social .address a {
  color: #FFFFFF;
}
header .container-2 .nav-menu-mob .social ul {
  display: flex;
  margin-bottom: 25px;
}
@media only screen and (max-width: 374px) {
  header .container-2 .nav-menu-mob .social ul {
    margin-bottom: 10px;
  }
}
header .container-2 .nav-menu-mob .social ul li {
  margin-right: 15px;
  transition: all 350ms ease-in-out;
}
header .container-2 .nav-menu-mob .social ul li:last-child {
  margin: 0;
}
header .container-2 .nav-menu-mob .social ul li:hover a svg path {
  fill: #FFA88B;
}
header .container-2 .nav-menu-mob .social ul li a svg {
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 374px) {
  header .container-2 .nav-menu-mob .social ul li a svg {
    width: 30px;
    height: 30px;
  }
}
header .container-2 .nav-menu-mob .logo {
  padding: 25px;
  display: block;
}
@media only screen and (max-width: 840px) {
  header .container-2 .nav-menu-mob .logo {
    width: 215px;
  }
}
header .container-2 .mob-menu-btn {
  display: none;
}
@media only screen and (max-width: 840px) {
  header .container-2 .mob-menu-btn {
    display: block;
  }
}
header .container-2 .mob-menu-btn span {
  background-color: #fff;
}

.slogan {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 840px) {
  .slogan {
    min-height: 60vh;
  }
}
.slogan .container-2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1;
}
@media only screen and (max-height: 680px) {
  .slogan .container-2 {
    padding: 3.5em 1.5em;
  }
}
.slogan .container-2 .slider-btn {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .slider-btn {
    width: 55%;
  }
}
.slogan .container-2 .slider-btn .orange-btn {
  margin: 0 auto;
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .slider-btn .orange-btn {
    font-size: 10px;
    padding: 15px 10px;
  }
}
.slogan .container-2 .slogan-slider {
  width: 500px;
  text-align: center;
  margin-bottom: 75px;
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .slogan-slider {
    width: 100%;
  }
}
.slogan .container-2 .slogan-slider .slogan-head {
  font-size: 24px;
  color: #414141;
  text-transform: uppercase;
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .slogan-slider .slogan-head {
    font-size: 14px;
  }
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .slogan-slider .item .item-head {
    font-size: 10px;
  }
}
.slogan .container-2 .slogan-slider .item .item-cont {
  margin: 25px 0;
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .slogan-slider .item .item-cont {
    padding: 0 25px;
  }
}
.slogan .container-2 .slogan-slider .item .item-cont img {
  width: 75%;
}
.slogan .container-2 .slogan-slider .swiper-button-next, .slogan .container-2 .slogan-slider .swiper-button-prev {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 27.9px;
  height: 19.12px;
  transition: all 350ms ease-in-out;
}
.slogan .container-2 .slogan-slider .swiper-button-next {
  background-image: url("../../images/next.svg");
}
.slogan .container-2 .slogan-slider .swiper-button-next:hover {
  background-image: url("../../images/next-orange.svg");
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .slogan-slider .swiper-button-next {
    right: 0;
  }
}
.slogan .container-2 .slogan-slider .swiper-button-prev {
  background-image: url("../../images/prev.svg");
}
.slogan .container-2 .slogan-slider .swiper-button-prev:hover {
  background-image: url("../../images/prev-orange.svg");
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .slogan-slider .swiper-button-prev {
    left: 0;
  }
}
.slogan .container-2 .tastamat-bnr {
  margin-left: 200px;
  margin-top: 100px;
}
@media only screen and (max-width: 1100px) {
  .slogan .container-2 .tastamat-bnr {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .tastamat-bnr {
    width: 45%;
    margin-left: 15px;
    margin-top: 0;
  }
}

.slogan .slogan-text {
  text-align: center;
}

.slogan-btn {
  display: inline-block;
  margin: 50px auto 0;
}

.slogan .container-2 .tastamat-bnr img {
  width: 100%;
  height: 70vh;
}
@media only screen and (max-width: 840px) {
  .slogan .container-2 .tastamat-bnr img {
    height: 100%;
  }
}
.slogan .slogan-text .ekenom {
  font-size: 44px;
  color: #414141;
}
@media only screen and (max-width: 840px) {
  .slogan .slogan-text .ekenom {
    font-size: 16px;
    text-align: center;
  }
}
.slogan .slogan-text .tenge {
  font-size: 120px;
  font-weight: 600;
  color: #F05A28;
  display: flex;
  height: 125px;
}
@media only screen and (max-width: 840px) {
  .slogan .slogan-text .tenge {
    font-size: 42px;
    text-align: center;
    height: auto;
  }
}
.slogan .slogan-text .tenge sup {
  font-size: 18px;
  color: #67676E;
  font-weight: 500;
  margin-top: 25px;
}
@media only screen and (max-width: 840px) {
  .slogan .slogan-text .tenge sup {
    font-size: 10px;
    text-align: center;
    margin-top: 5px;
  }
}
.slogan .slogan-text .tenge .orange {
  color: #F05A28;
}
.slogan .slogan-text span {
  font-size: 18px;
  color: #67676E;
  text-align: right;
  display: block;
}
@media only screen and (max-width: 840px) {
  .slogan .slogan-text span {
    font-size: 8px;
  }
}
.slogan .slogan-text .delivery {
  font-size: 42px;
  color: #414141;
  text-align: center;
}
@media only screen and (max-width: 840px) {
  .slogan .slogan-text .delivery {
    font-size: 16px;
    text-align: center;
  }
}
.slogan .slogan-text .in-tastaman {
  font-size: 36px;
  text-align: center;
  color: #F05A28;
}
@media only screen and (max-width: 840px) {
  .slogan .slogan-text .in-tastaman {
    font-size: 14px;
  }
}
.slogan .slogan-text .razmewat, .slogan .slogan-text .usebya {
  font-size: 42px;
  color: #414141;
  text-align: center;
}
@media only screen and (max-width: 840px) {
  .slogan .slogan-text .razmewat, .slogan .slogan-text .usebya {
    font-size: 16px;
  }
}
.slogan .slogan-text .cond {
  font-size: 28px;
  color: #414141;
  text-align: center;
  margin-top: 10px;
}
@media only screen and (max-width: 840px) {
  .slogan .slogan-text .cond {
    font-size: 10px;
    text-align: center;
  }
}
.slogan .slogan-text img {
  margin: 15px 0;
  width: 100%;
}
.slogan .orange-vector {
  background-image: url("../../images/orange-vector.svg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  width: 68%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 840px) {
  .slogan .orange-vector {
    width: 80%;
    background-position: top;
    background-image: url("../../images/orange-vector-mob.svg");
  }
}
.slogan .blue-vector {
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25%;
  height: 60%;
  position: absolute;
  left: 0;
  bottom: 50px;
}
@media only screen and (max-width: 840px) {
  .slogan .blue-vector {
    display: none;
  }
}

.calculate {
  margin: 50px 0;
}
@media only screen and (max-width: 840px) {
  .calculate {
    margin: 25px 0;
  }
}
.calculate .container {
  width: 900px;
}
@media only screen and (max-width: 840px) {
  .calculate .container {
    width: 100%;
    padding: 0 25px;
  }
}
.calculate .simple-title {
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #67676E;
}
@media only screen and (max-width: 840px) {
  .calculate .simple-title {
    font-size: 18px;
  }
}
.calculate .simple-orange-title {
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #F05A28;
  margin-top: 17px;
}
@media only screen and (max-width: 840px) {
  .calculate .simple-orange-title {
    font-size: 12px;
  }
}
.calculate .count-order {
  font-family: "Rubik-Light";
  font-size: 54px;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  color: #F05A28;
  margin-top: 20px;
}
@media only screen and (max-width: 840px) {
  .calculate .count-order {
    font-size: 40px;
  }
}
.calculate .count-order .num {
  text-decoration: underline;
  text-decoration-color: #F05A28;
  margin-right: 15px;
}
.calculate .count-order .num input {
  font-family: "Rubik-Bold";
  font-size: 56px;
  text-transform: uppercase;
  color: #67676E;
  border: 0;
  width: 110px;
  display: flex;
}
@media only screen and (max-width: 840px) {
  .calculate .count-order .num input {
    width: 90px;
    font-size: 45px;
  }
}
.calculate .content {
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 840px) {
  .calculate .content {
    margin: 25px 0;
  }
}
.calculate .content .col {
  width: 30%;
}
.calculate .content .col .tit {
  font-size: 24px;
  text-align: center;
  color: #67676E;
  min-height: 75px;
  text-transform: uppercase;
}
@media only screen and (max-width: 840px) {
  .calculate .content .col .tit {
    font-size: 16px;
  }
}
.calculate .content .col .tit img {
  width: 70px;
}
.calculate .content .col .item {
  min-height: 100px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 840px) {
  .calculate .content .col .item {
    margin-bottom: 0;
    min-height: 85px;
  }
}
.calculate .content .col .item .title {
  font-size: 80px;
  text-align: center;
  color: #67676E;
  font-weight: 600;
}
@media only screen and (max-width: 840px) {
  .calculate .content .col .item .title {
    font-size: 36px;
  }
}
.calculate .content .col3 .item .title {
  color: #F05A28;
}
.calculate .content .col2 .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.calculate .content .col2 .item .item-image img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 840px) {
  .calculate .content .col2 .item .item-image img {
    width: 50%;
    margin: 0 auto;
  }
}
.calculate .content .col2 .item .title {
  font-size: 20px;
  font-weight: 500;
  margin-top: 15px;
}
@media only screen and (max-width: 840px) {
  .calculate .content .col2 .item .title {
    font-size: 12px;
    margin-top: 7px;
  }
}

.advantage {
  position: relative;
  margin-bottom: 50px;
}
.advantage .items {
  display: flex;
  flex-wrap: wrap;
}
.advantage .items .item {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media only screen and (max-width: 840px) {
  .advantage .items .item {
    width: 100%;
  }
  .advantage .items .item:first-child {
    margin-top: 15px;
  }
  .advantage .items .item:last-child {
    margin-bottom: 0;
  }
}
.advantage .items .item .item-img {
  width: 25%;
}
@media only screen and (max-width: 840px) {
  .advantage .items .item .item-img {
    width: 30%;
  }
}
.advantage .items .item .item-img img {
  width: 100%;
  display: block;
}
.advantage .items .item .item-cont {
  width: 60%;
}
.advantage .items .item .item-cont .title {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media only screen and (max-width: 840px) {
  .advantage .items .item .item-cont .title {
    font-size: 18px;
  }
}
.advantage .items .item .item-cont .desc {
  font-weight: 300;
  font-size: 14px;
}

.profitable {
  position: relative;
}
.profitable .container {
  width: 900px;
}
@media only screen and (max-width: 840px) {
  .profitable .container {
    width: 100%;
    padding: 0 25px;
  }
}
.profitable .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 840px) {
  .profitable .items {
    flex-direction: column;
  }
}
.profitable .items .item {
  width: 27%;
}
@media only screen and (max-width: 840px) {
  .profitable .items .item {
    width: 100%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 25px;
  }
}
.profitable .items .item .item-img {
  height: 175px;
}
@media only screen and (max-width: 840px) {
  .profitable .items .item .item-img {
    width: 30%;
    margin-right: 10%;
    height: auto;
  }
  .profitable .items .item .item-img img {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 840px) {
  .profitable .items .item .item-cont {
    width: 60%;
  }
}
.profitable .items .item .item-cont .title {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media only screen and (max-width: 840px) {
  .profitable .items .item .item-cont .title {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.profitable .items .item .item-cont .desc {
  font-size: 14px;
  padding-right: 50px;
  font-family: "Rubik-Light";
}
@media only screen and (max-width: 840px) {
  .profitable .items .item .item-cont .desc {
    padding-right: 0;
    font-size: 12px;
  }
}

.search-tastamat .container {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 840px) {
  .search-tastamat .container {
    flex-direction: column;
    align-items: center;
  }
}
.search-tastamat .container .orange-btn {
  padding: 15px;
}
@media only screen and (max-width: 840px) {
  .search-tastamat .container .orange-btn {
    width: 90%;
    text-align: center;
  }
}
.search-tastamat .container .orange-btn.more {
  padding: 15px 50px;
  margin-left: 35px;
  background-color: transparent;
  border: 1px solid #F05A28;
  color: #F05A28;
  transition: all 350ms ease-in-out;
}
.search-tastamat .container .orange-btn.more:hover {
  background-color: #F5F5F5;
}
@media only screen and (max-width: 840px) {
  .search-tastamat .container .orange-btn.more {
    margin: 15px 0 0;
  }
}

.get-product {
  margin: 50px 0;
}
@media only screen and (max-width: 840px) {
  .get-product .container {
    padding: 0;
  }
}
.get-product .video {
  position: relative;
  width: 900px;
  height: 465px;
  margin: 0 auto;
}
@media only screen and (max-width: 840px) {
  .get-product .video {
    width: 100%;
    height: 220px;
  }
}
.get-product .video video {
  width: 100%;
  height: 100%;
}
.get-product .video .play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.get-product .video .dark {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

@media only screen and (max-width: 840px) {
  .three-steps {
    margin-bottom: 35px;
  }
}
.three-steps .items {
  /*display: flex;*/
  /*justify-content: space-between;
  align-items: flex-end;*/
}
.three-steps .items .item {
  /*width: 30%;*/
}
@media only screen and (max-width: 840px) {
  .three-steps .items .item {
    margin-bottom: 50px;
  }
}
.three-steps .items .item .item-image {
  margin-left: 50px;
  margin-bottom: 45px;
  height: 155px;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 840px) {
  .three-steps .items .item .item-image {
    height: 145px;
  }
}
.three-steps .items .item .item-cont {
  display: flex;
}
.three-steps .items .item .item-cont .count {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-weight: bold;
  font-size: 22px;
  color: #F2F2F2;
  margin-right: 20px;
}
.three-steps .items .item .item-cont .content .title {
  font-size: 24px;
  font-weight: 600;
  color: #67676E;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 15px;
}
.three-steps .items .item .item-cont .content .desc {
  font-size: 14px;
  color: #67676E;
}

.just .swiper-wrapper {
  align-items: flex-end;
}
.just .items {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.just .items .item {
  /* width: 30%;*/
}
@media only screen and (max-width: 840px) {
  .just .items .item {
    margin-bottom: 40px;
  }
}
.just .items .item .item-image {
  margin-left: 50px;
  margin-bottom: 50px;
  display: flex;
}
.just .items .item .item-cont {
  display: flex;
}
.just .items .item .item-cont .count {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-weight: bold;
  font-size: 22px;
  color: #F2F2F2;
  margin-right: 20px;
}
.just .items .item .item-cont .content .title {
  font-size: 20px;
  font-weight: 600;
  color: #67676E;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 15px;
}
.just .items .item .item-cont .content .desc {
  font-size: 14px;
  color: #67676E;
  font-family: "Rubik-Light";
  padding-right: 35px;
}

.find-tastamat .sub-title {
  text-align: center;
  font-size: 18px;
  color: #67676E;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .sub-title {
    font-size: 16px;
  }
}
.find-tastamat .sub-title a {
  color: #F05A28;
  text-decoration: underline;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .sub-title a {
    width: 100%;
    display: inline-block;
  }
}
.find-tastamat .masonry {
  margin: 35px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.find-tastamat .tabs {
  display: flex;
  justify-content: center;
}
.find-tastamat .tabs li a {
  font-family: "Rubik-Light";
  font-size: 16px;
  display: block;
  background: transparent;
  border: 1px solid #C4C4C4;
  color: #67676E;
  padding: 10px 45px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .tabs li a {
    padding: 10px 25px;
  }
}
.find-tastamat .tabs li a:hover {
  background: #F5F5F5;
}
.find-tastamat .tabs li.active a {
  background: #F05A28;
  color: #fff;
  border: 0;
  border: 1px solid #F05A28;
}
.find-tastamat .tabs li:first-child a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.find-tastamat .tabs li:last-child a {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.find-tastamat .tab_container {
  margin: 0;
  width: 100%;
}
.find-tastamat .search {
  display: flex;
  justify-content: center;
  margin: 35px 0 75px;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .search {
    flex-wrap: wrap;
    margin-bottom: 35px;
  }
}
.find-tastamat .search .form-select, .find-tastamat .search .form-search {
  padding: 15px;
  outline: none;
}
.find-tastamat .search .form-group {
  position: relative;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .search .form-group {
    width: 100%;
    margin-bottom: 25px;
  }
}
.find-tastamat .search .form-group img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.find-tastamat .search .form-select {
  font-family: "Rubik-Regular";
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 1px solid #DADADA;
  font-size: 16px;
  color: #67676E;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 15px;
  padding-right: 20px;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .search .form-select {
    width: 100%;
    border-radius: 10px;
  }
}
.find-tastamat .search .form-search {
  width: 425px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid #DADADA;
  border-left: 0;
  font-size: 16px;
  color: #8C8C8C;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .search .form-search {
    width: 75%;
    border-left: 1px solid #DADADA;
    border-radius: 10px;
  }
}
.find-tastamat .search .form-search-btn {
  width: 80px;
  padding: 25px;
  border-radius: 10px;
  background-color: #37A0E5;
  background-image: url("../../images/search-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  margin-left: 15px;
  transition: all 350ms ease-in-out;
  cursor: pointer;
}
.find-tastamat .search .form-search-btn:hover {
  background-color: #248CD0;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .search .form-search-btn {
    width: 20%;
    margin-left: 10px;
  }
}
.find-tastamat .not-found {
  text-align: center;
  padding: 0 25px;
}
.find-tastamat .not-found .simple-title {
  font-size: 30px;
  color: #F05A28;
  margin: 30px 0;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .not-found .simple-title {
    font-size: 24px;
  }
}
.find-tastamat .not-found .simple-desc {
  font-size: 24px;
  color: #373737;
  margin: 25px 0;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .not-found .simple-desc {
    font-size: 20px;
  }
}
.find-tastamat .not-found .orange-btn {
  display: inline-block;
  cursor: pointer;
}
.find-tastamat .list .items {
  display: flex;
  flex-wrap: wrap;
}
.find-tastamat .list .items .swiper-slide {
  height: auto;
  border-left: 1px solid #DADADA;
  margin-bottom: 45px;
  padding-left: 3%;
}
.find-tastamat .list .items .swiper-slide:nth-child(6n+1) {
  border: 0;
}
.find-tastamat .list .items .swiper-slide:nth-child(6n+2) {
  border: 0;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .list .items .swiper-slide {
    padding-left: 5%;
  }
  .find-tastamat .list .items .swiper-slide:nth-child(6n+1) {
    border-left: 1px solid #DADADA;
  }
  .find-tastamat .list .items .swiper-slide:nth-child(6n+2) {
    border-left: 1px solid #DADADA;
  }
  .find-tastamat .list .items .swiper-slide:nth-child(1) {
    border-left: 0;
    padding-left: 0;
  }
}
.find-tastamat .list .items .item {
  /*width: 33.3%;*/
}
@media only screen and (max-width: 840px) {
  .find-tastamat .list .items .item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.find-tastamat .list .items .item .title {
  font-size: 10px;
  color: #67676E;
  text-transform: uppercase;
}
.find-tastamat .list .items .item .desc {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #373737;
}
.find-tastamat .list .items .item .address {
  font-size: 18px;
  color: #F05A28;
  margin: 10px 0 20px;
  font-weight: 600;
}
.find-tastamat .list .items .item .street {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #373737;
}
.find-tastamat .list .items .item .on-maps {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  color: #B2B2B5;
  margin: 10px 0 20px;
  display: block;
}
.find-tastamat .list .items .item .on-maps i {
  margin-right: 7px;
}
.find-tastamat .list .items .item .to-order {
  font-size: 10px;
  color: #373737;
  margin: 20px 0 10px;
}
.find-tastamat .list .items .item .index {
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #F05A28;
  font-weight: 600;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .map-cont {
    padding: 0;
  }
}
.find-tastamat .yandexMap {
  width: 100%;
  height: 500px;
  display: block;
  z-index: 1111;
}
.find-tastamat .yandexMap > ymaps {
  width: 100%;
  height: 500px;
}
@media only screen and (max-width: 840px) {
  .find-tastamat .yandexMap {
    height: 300px;
  }
  .find-tastamat .yandexMap > ymaps {
    height: 300px;
  }
}
.find-tastamat .ymaps-2-1-73-balloon {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.find-tastamat .ymaps-2-1-73-balloon__layout {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.find-tastamat .ymaps-2-1-73-balloon__content {
  margin: 0 !important;
  padding: 0 !important;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.find-tastamat .ballon-body {
  padding: 16px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media (min-width: 534px) {
  .find-tastamat .ballon-body {
    width: 240px;
    padding: 25px;
  }
}
.find-tastamat .ballon-body .id {
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #F05A28;
  margin-bottom: 20px;
  font-weight: 600;
}
.find-tastamat .ballon-body .title {
  font-size: 10px;
  color: #67676E;
  text-transform: uppercase;
}
.find-tastamat .ballon-body .address {
  font-size: 16px;
  color: #F05A28;
  font-weight: 600;
}
.find-tastamat .ballon-body .street {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #373737;
  margin: 15px 0;
}
.find-tastamat .ballon-body .desc {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #373737;
}
.find-tastamat .ymaps-2-1-73-balloon__close-button {
  background: url("../../images/close-button.svg") center no-repeat;
  opacity: 1;
}

[class^="ymaps-"][class*="-balloon__content"] > ymaps  {
  height: auto !important;
}

.case {
  margin: 50px 0;
}
@media only screen and (max-width: 840px) {
  .case {
    margin: 25px 0;
  }
}
.case .container {
  padding: 0;
}
.case .container .page-title {
  margin: 15px 35px;
}
.case .case-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  width: 85%;
}
@media only screen and (max-width: 840px) {
  .case .case-slider .item {
    width: 100%;
  }
}
.case .case-slider .item .item-img img {
  display: block;
  width: 100%;
}
.case .case-slider .item .item-title {
  font-size: 20px;
  color: #67676E;
  margin-top: 25px;
}
.case .swiper-button-next, .case .swiper-button-prev {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 27.9px;
  height: 19.12px;
  transition: all 350ms ease-in-out;
}
@media only screen and (max-width: 840px) {
  .case .swiper-button-next, .case .swiper-button-prev {
    display: none;
  }
}
.case .swiper-button-next {
  background-image: url("../../images/next.svg");
}
.case .swiper-button-next:hover {
  background-image: url("../../images/next-orange.svg");
}
.case .swiper-button-prev {
  background-image: url("../../images/prev.svg");
}
.case .swiper-button-prev:hover {
  background-image: url("../../images/prev-orange.svg");
}

.close {
  background-image: url("../../images/close-button.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 25px;
  right: 25px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  background: #fff;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease-out;
  transform: translateY(45px) translateX(-50%);
  border-radius: 40px;
  text-align: center;
  padding: 65px 0;
}
@media only screen and (max-width: 840px) {
  .modal {
    width: 95%;
    padding: 65px 20px;
    transform: translateY(-50%);
  }
}
.modal h2 {
  font-size: 30px;
  color: #373737;
  margin-bottom: 50px;
  font-weight: 500;
}
@media only screen and (max-width: 840px) {
  .modal h2 {
    font-size: 20px;
  }
}
.modal .form-group input {
  width: 300px;
  border: 1px solid #DADADA;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 16px;
  color: #8C8C8C;
  padding: 15px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 840px) {
  .modal .form-group input {
    width: 100%;
  }
}
.modal .orange-btn {
  border: 0;
  padding: 15px 35px;
  margin-top: 50px;
}

.active {
  visibility: visible;
  opacity: 1;
}

.active + .modal {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) translateX(-50%);
}

.our-partners {
  margin: 50px 0;
}
@media only screen and (max-width: 840px) {
  .our-partners {
    margin: 25px 0;
  }
}
.our-partners .container {
  display: flex;
  flex-direction: column;
  margin: 50px auto;
}
@media only screen and (max-width: 840px) {
  .our-partners .container {
    margin: 25px 0;
  }
}
.our-partners .container .partners {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 840px) {
  .our-partners .container .partners {
    flex-direction: column;
  }
}
@media only screen and (max-width: 840px) {
  .our-partners .container .partners .right {
    margin-bottom: 0;
  }
}
.our-partners .container .partners .left, .our-partners .container .partners .right {
  width: 45%;
}
@media only screen and (max-width: 840px) {
  .our-partners .container .partners .left, .our-partners .container .partners .right {
    width: 100%;
    margin-bottom: 35px;
  }
}
.our-partners .container .partners .left .simple-title, .our-partners .container .partners .right .simple-title {
  font-size: 16px;
  text-align: center;
  color: #373737;
  margin-bottom: 15px;
}
.our-partners .container .partners .left .items, .our-partners .container .partners .right .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 840px) {
  .our-partners .container .partners .left .items, .our-partners .container .partners .right .items {
    margin-top: 0;
  }
}
.our-partners .container .partners .left .items .item, .our-partners .container .partners .right .items .item {
  width: 50%;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
}
@media only screen and (max-width: 840px) {
  .our-partners .container .partners .left .items .item, .our-partners .container .partners .right .items .item {
    margin-bottom: 25px;
  }
}
.our-partners .container .partners .left .items .item img, .our-partners .container .partners .right .items .item img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .our-partners .container .partners .left .items .item, .our-partners .container .partners .right .items .item {
    width: 45%;
  }
}
.our-partners .container .more {
  border: 1px solid #F05A28;
  padding: 7.5px 20px;
  border-radius: 10px;
  font-size: 14px;
  color: #F05A28;
  margin: 0 auto;
  transition: all 350ms ease-in-out;
}
.our-partners .container .more:hover {
  background-color: #F5F5F5;
}
.our-partners .container .more .arrow-right {
  margin-left: 5px;
}
.our-partners .container .more-aa {
  margin-bottom: 25px;
  display: none;
}
@media only screen and (max-width: 840px) {
  .our-partners .container .more-aa {
    display: block;
  }
}

.our-solutions {
  margin: 50px 0;
}
@media only screen and (max-width: 840px) {
  .our-solutions {
    margin: 25px 0;
  }
}
@media only screen and (max-width: 840px) {
  .our-solutions .container {
    padding: 0;
  }
}
.our-solutions .container .items {
  display: flex;
  flex-wrap: wrap;
  margin: 45px 0;
}
.our-solutions .container .items .item {
  /* width: 33.3%;*/
  padding-right: 3%;
  padding-left: 3%;
  position: relative;
}
@media only screen and (max-width: 840px) {
  .our-solutions .container .items .item {
    margin-bottom: 40px;
  }
}
.our-solutions .container .items .item::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 1px;
  background-color: #DADADA;
  top: 0;
  left: 0;
}
.our-solutions .container .items .item:nth-child(3n+1)::after {
  content: unset;
}
.our-solutions .container .items .item .simple-title {
  font-size: 10px;
  color: #67676E;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.our-solutions .container .items .item .title {
  font-weight: 600;
  font-size: 18px;
  color: #F05A28;
  text-transform: uppercase;
}
.our-solutions .container .items .item .desc {
  font-size: 14px;
  color: #414141;
  margin: 15px 0;
  font-family: "Rubik-Light";
}
.our-solutions .container .items .item ul {
  margin-bottom: 15px;
}
.our-solutions .container .items .item ul .orange-title {
  font-size: 14px;
  color: #F05A28;
  font-weight: 600;
  margin-bottom: 10px;
}
.our-solutions .container .items .item ul li {
  font-size: 14px;
  color: #414141;
  font-family: "Rubik-Light";
}
.our-solutions .container .items .item .orange-btn {
  padding: 10px 15px;
  display: inline-block;
  margin-top: 25px;
}
@media only screen and (max-width: 840px) {
  .our-solutions .container .items .item .orange-btn {
    padding: 10px;
  }
}

.questions {
  margin: 50px 0;
}
@media only screen and (max-width: 840px) {
  .questions {
    margin: 25px 0;
  }
}
.questions .page-title {
  margin-bottom: 10px;
}
.questions .subtitle {
  font-size: 14px;
  color: #67676E;
  font-family: "Rubik-Light";
  margin-bottom: 25px;
}
.questions .content {
  display: flex;
  margin-top: 45px;
}
@media only screen and (max-width: 840px) {
  .questions .content {
    flex-direction: column;
  }
}
.questions .content .items {
  margin: 50px 0;
}
@media only screen and (max-width: 840px) {
  .questions .content .items {
    margin: 20px 0;
  }
}
.questions .content .left {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 840px) {
  .questions .content .left {
    width: 100%;
  }
}
.questions .content .left .page-title {
  text-align: left;
}
.questions .content .left .items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 840px) {
  .questions .content .left .items {
    flex-direction: column;
  }
}
.questions .content .left .items .midd {
  width: 50%;
}
@media only screen and (max-width: 840px) {
  .questions .content .left .items .midd {
    width: 100%;
  }
}
.questions .content .left .items .item {
  margin-bottom: 20px;
}
.questions .content .left .items .item img {
  margin-right: 10px;
}
.questions .content .left .items .item .title {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #67676E;
  text-transform: uppercase;
}
@media only screen and (max-width: 840px) {
  .questions .content .left .items .item .title {
    text-decoration: underline;
    text-decoration-color: #67676E;
  }
}
.questions .content .right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.questions .content .fullWidth {
  width: 100%;
}
.questions .content .right .page-title {
  text-align: right;
}
.questions .content .fullWidth .page-title {
  text-align: center;
}
@media only screen and (max-width: 840px) {
  .questions .content .right .page-title {
    text-align: center;
  }
}
.questions .content .right .items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width: 840px) {
  .questions .content .right {
    width: 100%;
  }
  .questions .content .right .items {
    align-items: center;
  }
}
.questions .content .fullWidth .items {
  align-items: center;
}
.questions .content .right .items .item {
  margin-bottom: 20px;
}
.questions .content .right .items .item img {
  margin-right: 10px;
}
.questions .content .right .items .item .title {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #67676E;
}
.questions .warning {
  font-size: 14px;
  color: #67676E;
}
.questions .warning .red {
  color: #F05A28;
}
@media only screen and (max-width: 840px) {
  .questions .warning {
    font-size: 10px;
  }
}

footer {
  padding: 75px 0;
  background: linear-gradient(90.44deg, #319BE4 26.44%, #59BEED 99.95%);
}
footer .container-2 {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 840px) {
  footer .container-2 {
    align-items: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 840px) {
  footer .container-2 .logo {
    margin-bottom: 35px;
  }
}
footer .container-2 .address {
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
}
@media only screen and (max-width: 840px) {
  footer .container-2 .address {
    text-align: center;
    margin-bottom: 35px;
  }
}
footer .container-2 .address a {
  color: #FFFFFF;
}
@media only screen and (max-width: 840px) {
  footer .container-2 .menu {
    text-align: center;
    margin-bottom: 35px;
  }
}
footer .container-2 .menu li {
  margin-bottom: 10px;
  transition: all 350ms ease-in-out;
}
footer .container-2 .menu li:hover a {
  color: #FFA88B;
}
footer .container-2 .menu li a {
  font-size: 18px;
  color: #FFFFFF;
}
footer .container-2 .social .simple-title {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 15px;
}
footer .container-2 .social ul {
  display: flex;
}
footer .container-2 .social ul li {
  margin-right: 15px;
  transition: all 350ms ease-in-out;
}
footer .container-2 .social ul li:last-child {
  margin: 0;
}
footer .container-2 .social ul li:hover a svg path {
  fill: #FFA88B;
}
footer .container-2 .social ul li a {
  display: block;
}
footer .container-2 .social ul li a svg {
  width: 26px;
}
@media only screen and (max-width: 840px) {
  footer .container-2 .social ul li a svg {
    width: 35px;
  }
}

.swiper-pagination {
  text-align: center !important;
  bottom: -25px;
  width: 100%;
  display: none;
}
@media only screen and (max-width: 840px) {
  .swiper-pagination {
    display: block;
  }
}

.swiper-pagination-bullet {
  width: 9px !important;
  height: 9px !important;
}

.swiper-pagination-bullet-active {
  background: #EA4F55 !important;
}

.big-blue {
  background-image: url("../../images/big-blue.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 2000px;
  width: 100%;
  position: absolute;
  top: 70vh;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
@media only screen and (max-width: 840px) {
  .big-blue {
    height: 1500px;
  }
}

.lockers {
  height: 512px;
  overflow: auto;
}

.lockers .item {
  width: 33.333%;
  padding: 0 1em;
  margin: 1em 0;
  border-left: 1px solid rgba(178, 178, 178, 0.5);
}


@media only screen and (min-width: 769px) {
  .lockers .item:nth-of-type(1), .item:nth-of-type(4) {
    border-left-color: transparent;
  }
}
@media only screen and (max-width: 768px) {
  .lockers {
    height: 472px;
  }
  .lockers .item {
    width: 50%;
  }
  .lockers .item:nth-of-type(2n + 1) {
    border-left-color: transparent;
  }
}
@media only screen and (max-width: 460px) {
  .lockers .item {
    width: 100%;
    border: 0;
  }
}

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