/********************   top   ********************/
.top {
  padding: 12px 0px;
  border-bottom: 1px solid #e5e1d7;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.top_mobile {
  display: none; }

.top-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.top-menu li + li {
  margin-left: 25px; }

.top-menu a {
  font-size: 14px;
  color: black;
  line-height: 1.714;
  position: relative; }

.top-menu a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #61a95e;
  left: 0px;
  bottom: 0px;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.top-menu a:hover:after {
  width: 100%;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.top-menu a:hover {
  color: #61a95e;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s; }

.top-phone {
  position: relative;
  padding-left: 22px; }

.top-phone:after {
  content: "";
  position: absolute;
  background-image: url(../images/icons/phone.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 0px;
  width: 12px;
  height: 12px; }

.top-phone a {
  display: block;
  font-size: 14px;
  color: #252525;
  line-height: 1.429;
  position: relative; }

.top-phone a + a {
  margin-left: 2px; }

.top-phone a:after {
  content: ",";
  position: relative;
  font-size: 14px;
  color: #252525;
  line-height: 1.429; }

.top-phone a + a:after {
  display: none; }

.top-mail {
  position: relative;
  padding-left: 29px;
  margin-left: 38px; }

.top-mail:after {
  content: "";
  position: absolute;
  background-image: url(../images/icons/mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 6px;
  left: 0px;
  width: 12px;
  height: 10px; }

.top-mail a {
  display: block;
  font-size: 14px;
  color: #757269;
  line-height: 1.714;
  position: relative; }

.top-mail a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #757269;
  left: 0px;
  bottom: 4px;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.top-mail a:hover:after {
  width: 0%;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.top-mail a:hover, .top-phone a:hover {
  color: #61a95e; }

.top-social {
  margin-left: 30px; }

.top-social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 15px;
  width: 20px; }

.top-social__link img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.top-social__link:hover img {
  opacity: .6;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.top-social__link + .top-social__link {
  margin-left: 10px; }

/********************   header   ********************/
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header__top {
  background-color: #faf6eb;
  border-bottom: 1px solid #e7e3db; }

.header__content {
  padding: 20px 0px 15px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header-logo {
  font-size: 20px;
  color: #303030;
  font-weight: 600;
  line-height: 1.2; }

.header-logo img {
  width: 63px;
  height: 84px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 30px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header-logo small {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header-logo span {
  display: block;
  font-size: 30px;
  font-weight: 700; }

.header__box {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.header-search {
  position: relative;
  width: 300px;
  margin-right: 30px; }

.header-search__field {
  font-family: 'Circe', sans-serif;
  width: 100%;
  height: 45px;
  background-color: #FFF;
  border: 1px solid #c1beb5;
  border-radius: 5px;
  padding: 5px 20px;
  font-size: 16px;
  color: #303030;
  line-height: 1.5;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header-search__field::-webkit-input-placeholder {
  color: #c0bbae; }

.header-search__field::-moz-placeholder {
  color: #c0bbae; }

.header-search__field:-moz-placeholder {
  color: #c0bbae; }

.header-search__field:-ms-input-placeholder {
  color: #c0bbae; }

.header-search__btn {
  position: absolute;
  top: calc(50% - 12.5px);
  right: 11px;
  width: 23px;
  height: 23px;
  background-color: transparent;
  font-size: 0px;
  background-image: url(../images/icons/search.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
  cursor: pointer;
  border: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header__cabinet {
  display: block;
  width: 28px;
  height: 27px;
  margin-right: 30px;
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.header__cabinet img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.header__cabinet:hover {
  opacity: .6;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.header__bascet {
  position: relative;
  display: block;
  width: 25px;
  height: 26px; }

.header__bascet img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.header__bascet:hover img {
  opacity: .6;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.header__bascet span {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 22px;
  height: 18px;
  background-color: #61a95e;
  border-radius: 3px;
  font-size: 14px;
  color: white;
  font-weight: 600;
  line-height: 1.714;
  top: -8px;
  right: -10px; }

/********************   header__bottom   ********************/
.header__bottom {
  padding: 10px 0px;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(39, 39, 39, 0.15);
  box-shadow: 0px 7px 10px 0px rgba(39, 39, 39, 0.15);
  position: relative;
  background-color: #FFF;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header__location {
  position: relative;
  padding-left: 20px; }

.header__location:before {
  content: "";
  position: absolute;
  background-image: url(../images/icons/location.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 0px;
  width: 13px;
  height: 16px; }

.menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.menu li + li {
  margin-left: 40px; }

.menu a, .header__location {
  font-size: 12px;
  color: #4a4842;
  text-transform: uppercase;
  line-height: 2;
  position: relative;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s; }

.menu a:after, .header__location:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #61a95e;
  left: 0px;
  bottom: 0px;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.menu a:hover:after, .menu li.active a:after, .header__location:hover:after {
  width: 100%;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.menu a:hover, .menu li.active a, .header__location:hover {
  color: #61a95e;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s; }

.header__location:after {
  left: 20px;
  bottom: 2px; }

.header__location:hover:after {
  width: calc(100% - 20px);
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.header.active {
  top: -49px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header.active .header-logo img {
  width: 27px;
  height: 38px;
  margin-right: 13px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header.active .header-logo small {
  font-size: 0px;
  position: absolute; }

.header.active .header-logo span {
  font-size: 20px; }

.header.active .header__content {
  padding: 6px 0px; }

.header.active .header-search__field {
  height: 30px;
  padding: 5px 10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header.active .header-search__btn {
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header.active .header__cabinet {
  width: 22px;
  height: 21px;
  margin-right: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header.active .header__bascet {
  width: 19px;
  height: 21px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header.active .header__bottom {
  padding: 7px 0px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.header__burger, .header__closed {
  display: none;
  position: relative;
  margin-left: 20px;
  width: 30px;
  height: 28px;
  cursor: pointer;
  z-index: 10;
  top: 0px; }

.header__closed {
  z-index: 50;
  position: absolute;
  right: 10px;
  top: 10px; }

.header__burger span, .header__closed span {
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 30px;
  height: 3px;
  background: #303030;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.header__burger span:after, .header__burger span:before,
.header__closed span:after, .header__closed span:before {
  content: '';
  display: block;
  position: absolute;
  top: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: #303030;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.header.active .header__burger span, .header.active .header__closed span,
.header.active .header__burger span:after, .header.active .header__burger span:before,
.header.active .header__closed span:after, .header.active .header__closed span:before {
  background: #242021; }

.header__burger span:after {
  top: auto;
  bottom: -8px; }

.header.active .header__closed span, .header__closed span {
  background-color: transparent; }

.header__closed span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  background: #303030; }

.header__closed span:after {
  top: 0px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: auto;
  bottom: -1px;
  background: #303030; }

/******************   header_items   *******************/
.header_items .header__content.flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.header_items .top__content.flex {
  width: 100%; }

.header_items .header__location:before {
  background-image: url(../images/icons/bascet-green.png); }

@media (max-width: 1010px) {
  .top-menu li + li {
    margin-left: 10px; }
  .top-phone {
    padding-left: 18px; }
  .top-mail {
    padding-left: 20px;
    margin-left: 15px; }
  .top-social {
    margin-left: 15px; }
  .header-logo {
    font-size: 14px; }
  .header-logo img {
    width: 45px;
    height: 59px;
    margin-right: 10px; }
  .header-logo span {
    font-size: 26px; }
  .header-search {
    width: 270px;
    margin-right: 20px; }
  .header-search__field {
    height: 40px; }
  .header__cabinet {
    margin-right: 20px; }
  .header__content {
    padding: 12px 0px 10px; }
  .menu li + li {
    margin-left: 25px; } }

@media (max-width: 760px) {
  .header.active {
    top: 0; }
  .header__burger, .header__closed {
    display: inline-block;
    vertical-align: middle; }
  .header__bottom {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    padding: 5px 0px 40px;
    text-align: left;
    overflow-x: auto;
    z-index: 40;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: #FFF; }
  .header__bottom.active {
    left: 0; }
  .header .header-logo img {
    width: 27px;
    height: 38px;
    margin-right: 13px; }
  .header .header-logo small {
    font-size: 0px;
    position: absolute; }
  .header .header__content {
    padding: 6px 0px; }
  .header .header-logo span {
    font-size: 20px; }
  .header .header__cabinet {
    width: 22px;
    height: 21px;
    margin-right: 20px; }
  .header .header__bascet, .header.active .header__bascet {
    width: 21px;
    height: 21px; }
  .top.flex {
    display: none; }
  .top_mobile {
    display: block;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0px;
    border-bottom: none; }
  .header-search {
    display: none;}
  .menu ul, .header__bottom .wrapper, .top-menu ul, .top__content.flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .menu ul li, .top-menu ul li {
    width: 100%; }
  .menu ul li a, .top-menu ul li a {
    display: inline-block;
    font-size: 18px;
    padding: 5px 0px;
    color: #4a4842;
    text-transform: uppercase; }
  .menu a:after {
    bottom: 10px; }
  .top-mail a {
    display: inline-block; }
  .menu ul li + li, .top-menu ul li + li {
    margin-left: 0px; }
  .header__location {
    font-size: 16px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .header__location:before {
    top: 6px; }
  .menu {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .top-phone.flex, .top-mail {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 5px 0px; }
  .top-phone a, .top-mail a {
    font-size: 16px; }
  .top-mail:after {
    top: 8px; }
  .top-social {
    margin: 10px 0px 10px; }
  .header_items .header__content.flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; } }

@media (max-width: 480px) {
  .header .header-logo span {
    } }

.footer {
  font-family: 'PFAgoraSansPro', sans-serif;
  background-color: #000000;
  text-align: center;
  font-size: 18px;
  color: white;
  line-height: 1.333;
  padding: 21px 0px; }

@media (max-width: 1010px) {
  .footer {
    font-size: 16px; } }

@media (max-width: 760px) {
  .footer {
    font-size: 14px; } }

@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-Thin/Circe-Thin.eot");
  src: url("../fonts/Circe/Circe-Thin/Circe-Thin.eot.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe/Circe-Thin/Circe-Thin.eot.woff") format("woff"), url("../fonts/Circe/Circe-Thin/Circe-Thin.eot.ttf") format("truetype");
  font-style: normal;
  font-weight: 100; }

@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-ExtraLight/Circe-ExtraLight.eot");
  src: url("../fonts/Circe/Circe-ExtraLight/Circe-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe/Circe-ExtraLight/Circe-ExtraLight.woff") format("woff"), url("../fonts/Circe/Circe-ExtraLight/Circe-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 200; }

@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-Light/Circe-Light.eot");
  src: url("../fonts/Circe/Circe-Light/Circe-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe/Circe-Light/Circe-Light.woff") format("woff"), url("../fonts/Circe/Circe-Light/Circe-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300; }

@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-Regular/Circe-Regular.eot");
  src: url("../fonts/Circe/Circe-Regular/Circe-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe/Circe-Regular/Circe-Regular.woff") format("woff"), url("../fonts/Circe/Circe-Regular/Circe-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-Bold/Circe-Bold.eot");
  src: url("../fonts/Circe/Circe-Bold/Circe-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe/Circe-Bold/Circe-Bold.woff") format("woff"), url("../fonts/Circe/Circe-Bold/Circe-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600; }

@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe/Circe-ExtraBold/Circe-ExtraBold.eot");
  src: url("../fonts/Circe/Circe-ExtraBold/Circe-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe/Circe-ExtraBold/Circe-ExtraBold.woff") format("woff"), url("../fonts/Circe/Circe-ExtraBold/Circe-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700; }

@font-face {
  font-family: "BebasNeue";
  src: url("../fonts/BebasNeue/bebasneueregular.eot");
  src: url("../fonts/BebasNeue/bebasneueregular.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeue/bebasneueregular.woff") format("woff"), url("../fonts/BebasNeue/bebasneueregular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: "PFAgoraSansPro";
  src: url("../fonts/PFAgoraSansPro/pfagorasanspro-reg.eot");
  src: url("../fonts/PFAgoraSansPro/pfagorasanspro-reg.eot?#iefix") format("embedded-opentype"), url("../fonts/PFAgoraSansPro/pfagorasanspro-reg.woff") format("woff"), url("../fonts/PFAgoraSansPro/pfagorasanspro-reg.ttf") format("truetype");
  font-style: normal;
  font-weight: 400; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; }

table {
  border-collapse: collapse;
  border-width: 0px;
  padding: 0px;
  margin: 0px; }

.container {
  overflow: hidden; }

.wrapper {
  max-width: 1010px;
  padding: 0px 15px;
  margin: 0px auto; }

.bg-grey {
  background-color: #faf6eb; }

.bg-yellow {
  background-color: #fdfbf5; }

html,
body {
  font-family: 'Circe', sans-serif;
  color: #303030;
  margin: 0;
  padding: 0;
  background-color: #fdfbf5; }

body.lock {
  overflow: hidden;
  height: 100vh; }

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

img {
  max-width: 100%; }

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

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  a:hover {
    text-decoration: none; }

button {
  font-family: 'Circe', sans-serif; }

p { 
    margin-block-start:0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin: 0px;
}

.btn {
  max-width: 100%;
  font-size: 18px;
  font-weight: 300;
  color: #303030;
  line-height: 1.333;
  border: none;
  cursor: pointer;
  background-color: #e5e1d7;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  display: inline-block;
  padding: 12px 44px;
  position: relative;
  z-index: 10;
  text-align: center; }

.btn:hover {
  background-color: #61a95e;
  color: #FFF;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.btn-green {
  display: inline-block;
  font-size: 20px;
  color: white;
  line-height: 1.5;
  background-color: #61a95e;
  border-radius: 20px;
  padding: 7px 24px 5px; }

.btn-green:hover {
  background-color: #f39500; }

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

/*********************field************************/
.field {
  font-family: 'Circe', sans-serif;
  width: 100%;
  font-size: 16px;
  color: #7e7e7e;
  line-height: 1.5;
  font-weight: 500;
  border: 1px solid #e08742;
  padding: 7px 15px;
  background-color: transparent;
  position: relative; }

.field::-webkit-input-placeholder {
  color: #7e7e7e; }

.field::-moz-placeholder {
  color: #7e7e7e; }

.field:-moz-placeholder {
  color: #7e7e7e; }

.field:-ms-input-placeholder {
  color: #7e7e7e; }

textarea.field {
  height: 175px;
  resize: none; }

.hidden {
  display: none; }

/*********************title************************/
.title {
  font-size: 40px;
  font-weight: 300;
  color: #303030;
  line-height: 1.0;
  margin-bottom: 30px;
  text-align: center; }

.title_bold {
  font-weight: 600; }

.subtitle {
  font-size: 20px;
  font-weight: 300;
  color: #303030;
  line-height: 1.2; }

/*********************arrow************************/
.arrow {
  position: absolute;
  width: 42px;
  height: 42px;
  top: calc(50% - 21px);
  left: -75px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block; }

.arrow_prev {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }

.arrow_next {
  left: auto;
  right: -75px; }

.arrow svg * {
  -webkit-transition: fill .3s;
  -o-transition: fill .3s;
  transition: fill .3s; }

.arrow:hover svg * {
  fill: #61a95e;
  -webkit-transition: fill .3s;
  -o-transition: fill .3s;
  transition: fill .3s; }

/*********************navigation************************/
.navigation, .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.navigation {
  border: 1px solid #dcd8ce;
  background-color: #fdfbf5; }

.page-numbers {
  font-size: 15px;
  color: #b8b3a2;
  line-height: 1.6;
  width: 40px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: 0px 5px; }

.page-numbers:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #69ac65;
  left: 50%;
  bottom: -1px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.page-numbers.current:after, .page-numbers:hover:after {
  width: 100%;
  left: 0%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.page-numbers.current {
  color: #61a95e; }

/*********************breadcrumbs************************/
.breadcrumbs {
  margin-bottom: 25px; }

.breadcrumbs a {
  padding-left: 15px;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  color: #757269;
  line-height: 1.714; }

.breadcrumbs a:after {
  content: "";
  position: absolute;
  background-image: url(../images/icons/breadcrumbs.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 13px;
  top: 3px;
  left: 0px;
  -webkit-transition: left .3s;
  -o-transition: left .3s;
  transition: left .3s; }

.breadcrumbs a:hover:after {
  left: -5px;
  -webkit-transition: left .3s;
  -o-transition: left .3s;
  transition: left .3s; }

@media (max-width: 1010px) {
  .wrapper {
    max-width: 760px; }
  .title {
    font-size: 34px;
    margin-bottom: 25px; }
  .subtitle {
    font-size: 18px;
    text-align: center; }
  .btn-green {
    font-size: 18px; } }

@media (max-width: 760px) {
  .title {
    font-size: 28px;
    margin-bottom: 20px; }
  .page-numbers_mobile {
    display: none; } }

/*==========================================main=======================================*/
.main {
  padding: 40px 0px; }

.main-top {
  padding-top: 224px;
  position: relative; }
 .main-top2 {
  padding-top: 264px;
  position: relative; } 
  
  
.catalog {
      min-height: 94vh;
}
.main__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.main__box {
  width: calc(25% - 20px);
  border: 1px solid #dcd8ce;
  background-color: #f3ebd8;
  padding: 10px 10px 40px;
  position: relative;
  text-align: center;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0);
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  -o-transition: box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;}

.main__box:hover {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  -o-transition: box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s; }

.main__img {
  height: 195px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 15px; }

.main__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.main__name {
  font-size: 15px;
  color: #323232;
  line-height: 1.2;
  min-height: 36px;
  margin-bottom: 5px; }

.main__price {
  font-size: 24px;
  font-family: 'BebasNeue', sans-serif;
  color: #9e4646;
  line-height: 1; }

.main__items {
  height: 42px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.main__bascet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #8b887f;
  border-radius: 50%;
  background-color: #f3ebd8;
  position: absolute;
  bottom: -24px;
  left: calc(50% - 24px);
  transition: all 0.3s;
}
.main__box.active .main__bascet {
    background: #fff;
    border: 1px solid #aba28d;
    transition: all 0.3s;
}
  .main__bascet:hover {
      background: #fff;
      border: 1px solid #aba28d;
      transition: all 0.3s;
  }
.main__bascet i {
  display: block;
  width: 20px;
  height: 21px;
  background-image: url(../images/icons/catalog-bascet.png);
  background-repeat: no-repeat;
  background-size: contain; }

.main__box.active .main__bascet i {
  background-image: url(../images/icons/bascet-green.png); }

.main__price-items {
  font-size: 12px;
  font-weight: 300;
  color: #767676;
  text-decoration: line-through;
  line-height: .6;
  width: 100%; }

.main__order {
  font-size: 14px;
  font-weight: 300;
  color: #7b7b7b;
  line-height: .8;
  width: 100%; }

/****************   main__recommendations   ******************/
.main__recommendations {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  margin-bottom: 40px; }

/****************   main__slick   ******************/
.main__slick {
  position: relative;
  padding-bottom: 75px;
  overflow-x: hidden;
  margin-right: -26px; }

.main__slick .main__box {
  width: calc(100% - 26px);
  border: 1px solid #dcd8ce;
  background-color: #f3ebd8;
  padding: 10px 10px 40px;
  position: relative;
  text-align: center; }

.main__slick .slick-list {
  overflow: initial; }

@media (max-width: 1010px) {
  .main-top {
    padding-top: 230px; }
  .main-top2 {
    padding-top: 230px; }
  .main__box {
    width: calc(33.333% - 20px); }
  .main__box:last-child {
    display: none; }
  .main__slick:after {
    width: 25px; }
  .main__slick .main__box:last-child {
    display: block; }
  .main__recommendations {
    margin-bottom: 80px; } }

@media (max-width: 760px) {
  .main-top {
    padding-top: 80px; }
  .main-top2 {
    padding-top: 80px; }
  .main__box:last-child {
    display: block; }
  .main__recommendations {
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .main__box {
    width: calc(50% - 10px);
    margin-bottom: 40px; }
  .main__slick .main__box {
    width: calc(100% - 20px);
    margin-bottom: 0; }
  .main__slick {
    margin-right: -20px; }
  .main__slick:after {
    width: 20px; } }

@media (max-width: 480px) {
  .main__box {
    width: 100%; }
  .main__slick .main__box {
    width: calc(100% - 20px);
    margin-bottom: 0; } }

/*==========================================authors=======================================*/
.authors {
  padding: 35px 100px 20px;
  border: 4px solid #61a95e;
  background-color: #FFF; }

.authors__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.authors__coll {
  text-align: center;
  width: 25%;
  margin-bottom: 20px; }

.authors__img {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0px auto 10px; }

.authors__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.authors__name {
  font-size: 16px;
  color: #414141;
  line-height: 1.25;
  margin-bottom: 15px; }

.authors__btn {
  display: inline-block;
  font-size: 16px;
  color: white;
  line-height: 1.5;
  background-color: #61a95e;
  border-radius: 10px;
  padding: 2px 20px 1px;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s; }

.authors__btn:hover {
  background-color: #f39500; }

@media (max-width: 1010px) {
  .authors {
    padding: 30px 50px 15px; } }

@media (max-width: 760px) {
  .authors {
    padding: 25px 5px 10px; } }

@media (max-width: 600px) {
  .authors__coll {
    width: 50%; } }

@media (max-width: 370px) {
  .authors__coll {
    width: 100%; } }

/*==========================================about=======================================*/
.about__text p {
  font-size: 24px;
  color: #414141;
  line-height: 1.375;
  font-weight: 300;
  text-align: center; }

.about__text p + p {
  margin-top: 20px; }

.about__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  margin-bottom: 35px; }

.subtitle + .about__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  margin-top: 60px; }

.about__coll {
  max-width: 270px;
  text-align: center;
  font-weight: 300; }

.about__img {
  width: 70px;
  height: 70px;
  margin: 0px auto 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.about__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.about__caption {
  font-size: 24px;
  color: #303030;
  line-height: 1;
  margin-bottom: 10px; }

.about__desc {
  font-size: 16px;
  color: #303030;
  line-height: 1.5;
  text-align: left; }

@media (max-width: 1010px) {
  .about__row {
    margin-bottom: 30px; }
  .subtitle + .about__row {
    margin-top: 35px; }
  .about__coll {
    max-width: 230px; }
  .about__img {
    width: 60px;
    height: 60px; }
  .about__caption {
    font-size: 20px;
    margin-bottom: 5px; }
  .about__desc {
    text-align: center; }
  .about__text p {
    font-size: 20px; } }

@media (max-width: 760px) {
  .about__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .about__coll {
    max-width: 100%;
    width: 100%; }
  .about__coll + .about__coll {
    margin-top: 30px; }
  .about__text p {
    font-size: 18px; } }

/*==========================================map=======================================*/
#map {
  height: 330px;
  width: 100%; }

/*==========================================story=======================================*/
.story__wrap {
  position: relative; }

.story__slick {
  padding-top: 10px;
  padding-bottom: 70px; }

.story__coll {
  width: 480px;
  color: #414141;
  line-height: 1; }

.story__caption {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px; }

.story__text p {
  font-size: 24px;
  font-weight: 300;
  line-height: 32px; }

.story__img {
  height: 470px;
  margin-top: 20px; }

.story__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

@media (max-width: 1130px) {
  .story .wrapper {
    max-width: 950px; }
  .story .arrow {
    left: -50px; }
  .story .arrow_next {
    left: auto;
    right: -50px; } }

@media (max-width: 1010px) {
  .story .wrapper {
    max-width: 760px; }
  .story .arrow {
    left: -50px; }
  .story .arrow_next {
    left: auto;
    right: -50px; }
  .story__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .story__coll {
width: 100%;     }
  .story__coll + .story__coll {
    margin-top: 30px; }
  .story__caption {
    font-size: 24px;
    margin-bottom: 15px; }
  .story__text p {
    font-size: 18px;
    line-height: 28px; }
  .story__img {
    height: 350px;
    margin-top: 0px; }
  .story .arrow {
    display: none; }
  .story__slick {
    padding-bottom: 35px; } }

@media (max-width: 760px) {
  .story__caption {
    font-size: 21px; }
  .story__text p {
    font-size: 16px;
    line-height: 26px; } }

@media (max-width: 600px) {
  .story__img {
    height: 280px; } }

/*==========================================gallery=======================================*/
.gallery__wrap {
  position: relative;
  margin-top: 40px; }

.gallery__slick {
  padding-bottom: 60px; }

.gallery__items {
  display: block;
  text-align: center;
  max-width: 270px;
  margin: 0px auto; }

.gallery__img {
  width: 215px;
  height: 215px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0px auto 40px; }

.gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }

.gallery__caption {
  font-size: 18px;
  color: #414141;
  line-height: 1.333;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s; }

.gallery .arrow {
  top: 90px; }

a.gallery__items:hover .gallery__img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }

a.gallery__items:hover .gallery__caption {
  color: #61a95e;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s; }

.gallery__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -30px; }

.gallery__coll {
  width: 27.333%;
  margin-bottom: 30px; }

@media (max-width: 1130px) {
  .gallery .wrapper {
    max-width: 950px; }
  .gallery .arrow {
    left: -50px; }
  .gallery .arrow_next {
    left: auto;
    right: -50px; } }

@media (max-width: 1010px) {
  .gallery .wrapper {
    max-width: 760px; }
  .gallery .arrow {
    display: none; }
  .gallery__slick {
    padding-bottom: 35px; }
  .gallery__img {
    width: 190px;
    height: 190px;
    margin-bottom: 25px; }
  .gallery__caption {
    font-size: 16px; } }

@media (max-width: 760px) {
  .gallery__row .gallery__img {
    width: 170px;
    height: 170px;
    margin-bottom: 20px; }
  .gallery__coll {
    width: 33.333%; } }

@media (max-width: 600px) {
  .gallery__row .gallery__img {
    width: 190px;
    height: 190px;
    margin-bottom: 20px; }
  .gallery__coll {
    width: 100%; } }

/*==========================================services=======================================*/
.services__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial; }

.services__coll {
  width: calc(50% - 15px);
  position: relative;
  z-index: 10;
  background-repeat: no-repeat;
  background-size: cover;
  height: 475px;
  padding: 45px 35px;
  overflow: hidden; }

.services__coll:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .3;
  top: 0px;
  left: 0px;
  z-index: -1; }

.services__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
/*  z-index: -1; */}

.services__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.services__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px; }

.services__title {
  font-size: 40px;
  color: white;
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 6px;
  position: relative; }

.services__link {
  display: inline-block;
  font-size: 18px;
  color: white;
  line-height: 1.333;
  margin-left: 3px;
  position: relative; }

.services__link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  bottom: 0px;
  left: 0px;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.services__coll:hover .services__img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }

.services__link:hover:after {
  width: 0%;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

@media (max-width: 1010px) {
  .services__coll {
    height: 350px;
    padding: 40px 30px; }
  .services__title {
    font-size: 32px;
    margin-bottom: 8px; }
  .services__link {
    font-size: 16px;
    margin-left: 2px; } }

@media (max-width: 600px) {
  .services__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .services__coll {
    width: 100%;
    height: 260px;
    padding: 40px 30px; }
  .services__coll + .services__coll {
    margin-top: 20px; } }

/*==========================================master-classes=======================================*/
.master-classes__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  margin-bottom: 60px; }

.master-classes__coll {
  width: calc(33.333% - 15px); }

.master-classes__box {
  position: relative;
  z-index: 10;
  margin-bottom: 15px;
  height: 210px;
  padding: 15px 15px; }

.master-classes__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1; }

.master-classes__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.master-classes__title {
  font-size: 30px;
  color: white;
  font-weight: 600;
  line-height: 0.8;
  position: relative; }

.master-classes__desc {
  font-size: 18px;
  font-weight: 300;
  color: #414141;
  line-height: 1.111;
  min-height: 57px;
  margin-bottom: 20px; }

.master-classes__bottom {
  text-align: center; }

.master-classes__price {
  font-size: 35px;
  font-family: 'BebasNeue', sans-serif;
  color: #9e4646;
  line-height: 1;
  margin-bottom: 20px; }

.master-classes__dscription p {
  font-size: 20px;
  color: #414141;
  line-height: 1.2;
  text-align: center; }

.master-classes__dscription p + p {
  margin-top: 25px; }

.master-classes__dscription p span {
  color: #9e4646; }

.master-classes__dscription p small {
  font-size: 18px; }

@media (max-width: 1010px) {
  .master-classes__title {
    font-size: 22px; }
  .master-classes__box {
    height: 165px; }
  .master-classes__desc {
    font-size: 16px;
    min-height: 57px;
    margin-bottom: 10px; }
  .master-classes__price {
    font-size: 26px;
    margin-bottom: 10px; }
  .master-classes__row {
    margin-bottom: 30px; }
  .master-classes__dscription p {
    font-size: 18px; }
  .master-classes__dscription p small {
    font-size: 16px; }
  .master-classes__dscription p + p {
    margin-top: 10px; } }

@media (max-width: 760px) {
  .master-classes__row {
    padding-top: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .master-classes__coll {
    width: 100%; }
  .master-classes__coll + .master-classes__coll {
    margin-top: 20px; }
  .master-classes__desc {
    min-height: auto; } }

/*==========================================excursion=======================================*/
.excursion {
  background-image: url(../images/excursion/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover; }

.excursion__wrap {
  background-color: rgba(255, 255, 255, 0.902);
  padding: 40px 75px 40px; }

.excursion__row {
  padding: 20px 0px 55px; }

.excursion__coll {
  width: 195px;
  text-align: center;
  font-size: 30px;
  color: #414141;
  line-height: 1.167; }

.excursion__img {
  width: 61px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px auto 20px; }

.excursion__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.excursion__name {
  font-weight: 600; }

@media (max-width: 1010px) {
  .excursion__wrap {
    padding: 35px 30px 35px; }
  .excursion__row {
    padding: 15px 0px 35px; }
  .excursion__img {
    margin: 0px auto 15px; }
  .excursion__coll {
    font-size: 24px; } }

@media (max-width: 760px) {
  .excursion__wrap {
    padding: 30px 15px 30px; }
  .excursion__row {
    padding: 10px 0px 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .excursion__coll {
    font-size: 20px;
    width: calc(50% - 20px);
    margin: 0px 10px; }
  .excursion__coll + .excursion__coll + .excursion__coll {
    margin-top: 20px; }
  .excursion__img {
    width: 50px;
    height: 50px; } }

@media (max-width: 370px) {
  .excursion__coll {
    width: 100%; }
  .excursion__coll + .excursion__coll {
    margin-top: 20px; } }

/*==========================================benefit=======================================*/
.benefit {
  background-color: #f2ebd8; }

.benefit__wrap {
  position: relative;
  z-index: 10; }

.benefit-bg {
  width: 355px;
  height: 504px;
  position: absolute;
  top: 0px;
  left: calc(50% - 160px);
  z-index: -1; }

.benefit-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.benefit__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 40px; }

.benefit__coll {
  width: 50%;
  position: relative; }

.benefit__items {
  width: 325px;
  text-align: center; }

.benefit__coll:nth-child(2n) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.benefit__coll:nth-child(n + 3) {
  margin-top: 40px; }

.benefit__coll:nth-child(3) {
  left: 90px; }

.benefit__coll:nth-child(3) .benefit__items {
  width: 275px; }

.benefit__coll:nth-child(4) {
  right: 80px; }

.benefit__coll:nth-child(4) .benefit__items {
  width: 300px; }

.benefit__img {
  width: 66px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px auto 15px; }

.benefit__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.benefit__caption {
  font-size: 30px;
  color: #414141;
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 15px; }

.benefit__desc {
  font-size: 17px;
  color: #414141;
  line-height: 1.176; }

@media (max-width: 1010px) {
  .benefit__coll:nth-child(3) {
    left: 0px; }
  .benefit__coll:nth-child(4) {
    right: 0px; }
  .benefit__coll:nth-child(n + 3) {
    margin-top: 25px; }
  .benefit__caption {
    font-size: 26px; }
  .benefit__desc {
    font-size: 16px; }
  .benefit__items, .benefit__coll:nth-child(3) .benefit__items, .benefit__coll:nth-child(4) .benefit__items {
    width: 260px; } }

@media (max-width: 760px) {
  .benefit-bg {
    display: none; }
  .benefit__row {
    padding-top: 10px; }
  .benefit__coll {
    width: 100%; }
  .benefit__items, .benefit__coll:nth-child(3) .benefit__items, .benefit__coll:nth-child(4) .benefit__items {
    width: 100%; }
  .benefit__coll:nth-child(n + 2) {
    margin-top: 20px; }
  .benefit__caption {
    font-size: 22px;
    max-width: 300px;
    margin: 0px auto 10px; } }

/*==========================================catalog=======================================*/
.catalog-text {
  max-width: 785px;
  margin: 0px auto 35px;
  position: relative;
  z-index: 10; }

.catalog-text__desc {
  font-size: 16px;
  color: #323232;
  line-height: 1.25;
  text-align: center;
  overflow: hidden;
  max-height: 80px;
  -webkit-transition: max-height .3s;
  -o-transition: max-height .3s;
  transition: max-height .3s;
  position: relative;
  margin-bottom: 10px; }

.catalog-text:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -20%;
  left: 0px;
  background-image: url(../images/catalog/text-bg.png);
  background-repeat: repeat-x;
  background-size: contain;
  z-index: 12;
  -webkit-transition: height .3s;
  -o-transition: height .3s;
  transition: height .3s; }

.catalog-text.active:after {
  height: 0%;
  -webkit-transition: height .3s;
  -o-transition: height .3s;
  transition: height .3s; }

.catalog-text__desc.active {
  max-height: 100%; }

.catalog-text__btn {
  display: inline-block;
  font-size: 14px;
  color: #323232;
  font-weight: 600;
  line-height: 1.429;
  position: relative;
  z-index: 20; }

.catalog-text__btn span, .catalog-text__btn.active span:last-child {
  position: relative;
  visibility: visible;
  z-index: 10;
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.catalog-text__btn span:last-child, .catalog-text__btn.active span:first-child {
  position: absolute;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s; }

.catalog__top {
  margin-bottom: 25px;
  padding: 10px 25px;
  border: 1px solid #dcd8ce; }

.catalog__caption {
  font-size: 15px;
  color: #b8b3a2;
  line-height: 1.6;
  margin-right: 5px; }

.catalog__wrap .main__box {
  margin-bottom: 45px; }

.catalog__right .catalog__caption {
  margin-right: 0px; }

/*********************   checkbox   ************************/
.catalog__checkbox {
  display: block;
  margin: 10px 0px; }

.catalog__checkbox + .catalog__checkbox {
  margin-left: 15px; }

.catalog__checkbox input[type="checkbox"], .catalog__checkbox input[type="radio"] {
  display: none; }

.catalog__checkbox span {
  position: relative;
  display: inline-block;
  padding-left: 33px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 300;
  color: #323232;
  line-height: 1.6; }

.catalog__checkbox span:before {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 25px;
  height: 25px;
  z-index: 1;
  background-color: transparent;
  border: 1px solid #dcd8ce;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.catalog__checkbox span:after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0px;
  width: 23px;
  height: 23px;
  opacity: 0;
  z-index: 1;
  background-color: #61a95e;
  border: 1px solid #61a95e;
  background-image: url(../images/icons/check.svg);
  background-repeat: no-repeat;
  background-size: 18px 14px;
  background-position: 50% 48%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.catalog__checkbox input[type="checkbox"]:checked + span:before, .catalog__checkbox input[type="radio"]:checked + span:after {
  opacity: 1; }

/*********************   sort   ************************/
.sort {
  min-width: 260px;
  margin-right: 50px; }

.sort > select {
  position: relative; }

.select2-container {
  width: 100% !important; }

.select2-selection__arrow {
  background-image: url(../images/icons/arrow-select.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 6px;
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.select2-container--open .select2-selection__arrow {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }

.sort__select {
  width: 155px; }

/*********************   attributes   ************************/
.attributes {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  max-width: 100px;
  text-align: left; }

.attributes__items {
  display: inline-block;
  font-size: 9px;
  color: white;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 2px;
  padding: 7px 8px 6px; }

.attributes__items + .attributes__items {
  margin-top: 5px; }

.recommend {
  background-color: #61a95e; }

.novelty {
  background-color: #f39500; }

.discount {
  background-color: #f31700; }

@media (max-width: 1010px) {
  .catalog-text {
    margin: 0px auto 25px; }
  .catalog__top {
    padding: 5px 20px; }
  .catalog__form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .catalog__left {
    width: 100%; }
  .catalog__right {
    width: 100%;
    text-align: right; } }

@media (max-width: 760px) {
  .catalog__left {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .sort {
    margin-right: 0; }
  .catalog__top {
    padding: 10px 15px; }
  .catalog__right {
    text-align: left; } }

@media (max-width: 370px) {
  .sort, .catalog__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .catalog__box {
    margin: 10px 0px; }
  .catalog__checkbox {
    margin: 0px; } }

/*==========================================card=======================================*/
.card__row {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  margin-bottom: 35px; }

.card__coll {
  width: 565px;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial; }

.card-min__slick {
  width: 102px;
  margin-right: 18px; }

.card-min__img {
  width: 100%;
  height: 122px;
  border: 1px solid #dedad0;
  background-color: #f3ebd8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 15px; }

.card-min__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.card-big {
  width: 440px;
  position: relative; }

.card-big__slide {
  position: relative;
  width: 100%;
  height: 492px;
  border: 1px solid #dedad0;
  background-color: #f3ebd8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.card-big__img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 70px; }

.card-big__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.card-big .arrow_prev {
  left: 30px; }

.card-big .arrow_next {
  right: 30px; }

.card__column {
  width: 360px; }

.card__name {
  font-size: 32px;
  font-weight: 300;
  color: #323232;
  line-height: 1.25;
  margin-bottom: 25px; }

.card__name_mobile {
  display: none; }

.card__link {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #303030;
  line-height: 1.286;
  text-transform: uppercase;
  margin-bottom: 35px; }

.card__link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #61a95e;
  left: 0px;
  bottom: 0px;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.card__link:hover:after {
  width: 0%; }

.card-price {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 25px; }

.card-price__value {
  font-size: 35px;
  font-family: 'BebasNeue', sans-serif;
  color: #9e4646;
  line-height: 0.686;
  margin-right: 14px; }

.card-price__items {
  display: inline-block;
  font-size: 10px;
  color: #9e4646;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid #9e4646;
  border-radius: 3px;
  padding: 6px 9.5px 3px; }

.card__btn {
  display: inline-block;
  font-size: 24px;
  color: white;
  line-height: 0.75;
  border: 1px solid #dcd8ce;
  background-color: #61a95e;
  padding: 21px 53px 18px;
  margin-bottom: 40px;
    cursor: hand;
  cursor: pointer;}

.card__btn:hover {
  border: 1px solid #f39500;
  background-color: #f39500;
  color: red;
    cursor: hand;
  cursor: pointer;}

.card__items {
  font-size: 14px;
  font-weight: 300;
  color: #797568;
  line-height: 1.286;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.card__caption {
  width: 182px;
  position: relative;
  overflow: hidden;
  margin-right: 3px; }

.card__caption:after {
  content: ".......................................................";
  position: absolute;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  color: #797568;
  line-height: 1.286;
  left: 0px;
  bottom: 0px; }

.card__caption span {
  position: relative;
  z-index: 10;
  background-color: #fdfbf5;
  padding-right: 3px; }

.card__article {
  padding-top: 25px;
  border-top: 1px solid #dcd8ce; }

.card__article h1 {
  font-size: 25px;
  font-weight: 400;
  color: #323232;
  line-height: 0.72;
  margin-bottom: 25px; }

.card__article p {
  font-size: 16px;
  font-weight: 300;
  color: #323232;
  line-height: 1.25; }

.card__article p + p {
  margin-top: 20px; }

@media (max-width: 1010px) {
  .card__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .card__coll {
    width: 420px; }
  .card-min__slick {
    width: 92px; }
  .card-min__img {
    height: 102px;
    padding: 10px; }
  .card-big {
    width: 310px; }
  .card-big__slide {
    height: 390px; }
  .card-big .arrow_prev {
    left: 5px; }
  .card-big .arrow_next {
    right: 5px; }
  .card-big__img {
    padding: 15px 45px; }
  .card__column {
    width: 290px; }
  .card__name {
    font-size: 26px;
    margin-bottom: 15px; }
  .card__link {
    margin-bottom: 25px; }
  .card-price__value {
    font-size: 28px;
    line-height: 1; }
  .card__btn {
    font-size: 18px;
    padding: 15px 30px 12px;
    margin-bottom: 25px; } }

@media (max-width: 760px) {
  .card__coll {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px; }
  .card__name, .card__name br {
    display: none; }
  .card__name_mobile {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .card-big {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 20px; }
  .card-min__slick {
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-right: -30px; }
  .card-min__img {
    margin-bottom: 0px; }
  .card-min__slick .slick-slide {
    margin: 0 10px; }
  .card-min__slick .slick-list {
    margin: 0 -10px; } }

/*==========================================photogallery=======================================*/
.photogallery__text {
  padding-top: 30px;
  text-align: center; }

.photogallery__text {
  text-align: center;
  padding: 20px 50px 45px; }

.photogallery__text p {
  font-size: 18px;
  color: #272727;
  line-height: 1.333; }

.photogallery__body {
  position: relative; }

.photogallery__slick {
  width: 590px;
  height: auto;
  margin: 0px auto 35px; }

.photogallery__slide {
  width: 590px;
  height: auto; }

.photogallery__img {
  display: block;
  width: 100%;
  height: 100%; }

.photogallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.photogallery__slick .slick-dots {
  bottom: -35px; }

@media (max-width: 1130px) {
  .photogallery__body .arrow_next {
    left: auto;
    right: -10px; }
  .photogallery__body .arrow_prev {
    left: -10px; } }

@media (max-width: 1010px) {
  .photogallery__text {
    text-align: center;
    padding: 0px 0px 30px; } }

@media (max-width: 760px) {
  .photogallery__wrap {
    margin-top: -10px; }
  .photogallery .title {
    line-height: 1;
    margin-bottom: 20px; }
  .photogallery__text p {
    font-size: 16px; }
  .photogallery__body .arrow {
    display: none; }
  .photogallery__slick {
    width: 100%;
    height: 400px; }
  .photogallery__slide {
    height: auto; } }

@media (max-width: 600px) {
  .photogallery__slick, .photogallery__slide {
    height: auto } }

/*==========================================modal=======================================*/
#basket-modal, #cabinet-modal {
  padding: 0px;
  margin: 50px 0px;
  border-radius: 20px;
  background-color: white;
  overflow: hidden; }

.modal {
  width: 945px;
  padding: 40px 60px; }

.modal .title {
  text-align: left;
  color: #000;
  font-weight: 500; }

.fancybox-close-small {
  top: 20px;
  right: 50px;
  width: 24px;
  height: 24px;
  font-size: 0px;
  color: transparent;
  border-radius: 0;
  background-color: transparent;
  background-image: url(../images/icons/modal-closed.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.fancybox-close-small:hover {
  color: transparent;
  background-color: transparent;
  background-image: url(../images/icons/modal-closed.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.basket-table__cell:nth-child(1) {
  width: 130px; }

.basket-table__cell:nth-child(2) {
  width: 280px; }

.basket-table__cell:nth-child(3) {
  width: 150px; }

.basket-table__cell:nth-child(4) {
  width: 100px; }

.basket-table__cell:nth-child(5) {
  width: 120px;
  text-align: center; }

.basket-table__cell:nth-child(6) {
  width: 40px;
  text-align: center; }

.basket-table {
  position: relative;
  z-index: 10;
  margin: 0px -60px 40px; }

.basket-table-top, .basket-table-card {
  padding: 0px 60px; }

.basket-table-top__caption {
  text-align: center;
  font-size: 15px;
  color: #706d68;
  line-height: 1.2;
  margin-bottom: 10px; }

.basket-table-card, .basket-table-price {
  background-color: #f0ead8;
  border-top: 1px solid #dad7cd;
  height: 88px;
  font-size: 18px;
  color: #353535;
  line-height: 1; }

.basket-table-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0px 60px;
  color: black;
  font-weight: 600;
  border-bottom: 1px solid #dad7cd; }

.basket-table__img {
  width: 100%;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; }

.basket-table__name {
  color: #668f50; }

.quantity {
  width: 100%;
  height: 30px;
  border: 1px solid #dad7cd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 15px;
  padding: 0px 10px;
  font-size: 24px;
  line-height: 0.75; }

.quantity-value input {
  width: 35px;
  height: 100%;
  text-align: center;
  background-color: transparent;
  font-size: 15px;
  color: #353535;
  line-height: 0.75;
  border: none; }

.quantity-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #668f50;
  line-height: 0.75;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px;
  width: 12px;
  height: 12px; }

.quantity-btn:hover {
  color: #353535; }

.quantity-btn span {
  display: block;
  width: 12px;
  height: 12px; }

.quantity-btn.btn-minus {
  margin-top: -2px; }

.basket__body + .basket__body {
  margin-top: 50px; }

.basket-table__cell svg {
  width: 15px;
  height: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer; }

.basket-table__cell svg * {
  -webkit-transition: fill .3s;
  -o-transition: fill .3s;
  transition: fill .3s; }

.basket-table__cell svg:hover * {
  fill: #668f50;
  -webkit-transition: fill .3s;
  -o-transition: fill .3s;
  transition: fill .3s; }

.basket-checkout {
  text-align: center;
  margin-top: 25px; }

.basket-checkout.active {
  display: none; }

.basket__btn, .cabinet__btn {
  font-family: 'Circe', sans-serif;
  display: inline-block;
  font-size: 24px;
  color: white;
  line-height: 0.75;
  border: 1px solid #dcd8ce;
  background-color: #61a95e;
  padding: 21px 53px 18px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.basket__btn:hover, .cabinet__btn:hover {
  border: 1px solid #f39500;
  background-color: #f39500;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.basket-form {
  display: none; }

.basket__top, .basket__box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.basket__top:after {
  content: "";
  position: absolute;
  width: 1000px;
  height: 2px;
  background-color: #dad7cd;
  left: calc(50% - 500px);
  bottom: 0px; }

.basket__tab {
  font-size: 20px;
  color: #797979;
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
  width: 33.333%;
  cursor: pointer;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s; }

.basket__tab span {
  display: inline-block;
  padding-bottom: 16px;
  position: relative; }

.basket__tab span:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #7aa763;
  left: 50%;
  bottom: 0px;
  z-index: 10;
  -webkit-transition: left .3s, width .3s;
  -o-transition: left .3s, width .3s;
  transition: left .3s, width .3s; }

.basket__tab:hover, .basket__tab.active {
  color: #202020;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s; }

.basket__tab.active span:after {
  width: 100%;
  left: 0%;
  -webkit-transition: left .3s, width .3s;
  -o-transition: left .3s, width .3s;
  transition: left .3s, width .3s; }

.basket__box {
  display: none; }

.basket__box.active {
  display: block; }

.basket__box.flex.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.basket__content {
  margin-top: 35px; }

.basket__column {
  width: calc(33.333% - 15px); }

.basket__column + .basket__column {
  margin-left: 30px; }

.basket__caption {
  font-size: 18px;
  color: black;
  line-height: 1.333;
  margin-bottom: 5px; }

.basket-field {
  border-color: #eaeaea;
  color: black; }

.basket-field__desc {
  margin-top: 15px;
  font-size: 18px;
  color: #668f50;
  line-height: 1.333; }

.basket__body_2 .basket__tab {
  width: 50%; }

.basket__column_big {
  width: 65.8%; }

.basket__select {
  width: 260px;
  position: relative;
  z-index: 100; }

.basket__select .select2-container--default .select2-selection--single .select2-selection__rendered {
  min-height: 40px; }

.basket__select .select2-container .select2-selection--single {
  height: 38px; }

.basket__select .select2-container--default .select2-selection--single .select2-selection__rendered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.select2-dropdown {
  z-index: 1051000; }

.basket__text {
  font-size: 18px;
  color: black;
  line-height: 1.333;
  text-align: center; }

.basket__bottom {
  margin-top: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.basket__price {
  font-size: 18px;
  color: black;
  font-weight: 600;
  line-height: 1;
  margin-right: 20px; }

#cabinet-modal .modal {
  width: 880px; }

.cabinet__box {
  padding-top: 70px;
  max-width: 335px;
  margin: 0px auto; }
.cabinet__box2 {
  padding-top: 0px;
  max-width: 335px;
  margin: 0px auto; }
.cabinet__text {
  font-size: 20px;
  color: black;
  line-height: 1.2;
  text-align: center; }

.cabinet__text a {
  color: #7aa763;
  position: relative; }

.cabinet-solial {
  margin: 20px 0px 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.cabinet-solial__link {
  display: block;
  width: 47px;
  height: 47px;
  margin: 0px 8px;
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.cabinet-solial__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.cabinet-solial__link:hover {
  opacity: .6;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

.cabinet-form {
  max-width: 270px;
  margin: 25px auto; }

.cabinet__column {
  margin-bottom: 25px; }

.cabinet__link {
  font-size: 18px;
  color: #5d824b;
  line-height: 1;
  position: relative; }

.cabinet__btn {
}

.cabinet__registration {
  text-align: center;
  margin-top: 20px;
  display: block; }

.cabinet__text a:hover, .cabinet__link:hover {
  color: #f39500; }




.basket__btn, .cabinet__btn {
  display: inline-block;
  font-size: 24px;
  color: white;
  line-height: 0.75;
  border: 1px solid #dcd8ce;
  background-color: #61a95e;
  padding: 21px 53px 18px;
  margin-bottom: 40px;
    cursor: hand;
  cursor: pointer;}

.basket__btn:hover, .cabinet__btn:hover {
  border: 1px solid #f39500;
  background-color: #f39500;
  color: red;
    cursor: hand;
  cursor: pointer;}
  
  
@media (max-width: 1010px) {
  .modal, #cabinet-modal .modal {
    width: 730px;
    padding: 30px 25px; }
  .basket-table-card, .basket-table-price, .basket__price {
    font-size: 16px; }
  .basket-table__cell:nth-child(1) {
    width: 110px; }
  .basket-table__cell:nth-child(2) {
    width: 230px; }
  .basket-table__cell:nth-child(3) {
    width: 100px;
    text-align: center; }
  .basket-table__cell:nth-child(4) {
    width: 95px; }
  .basket-table__cell:nth-child(5) {
    width: 115px; }
  .basket-table__cell:nth-child(6) {
    width: 24px; }
  .basket__tab {
    font-size: 18px; }
  .basket__select {
    width: 210px; }
  .basket__select .select2-container {
    width: 210px !important; }
  .select2-container {
    width: auto !important; }
  .basket__column_big {
    width: 65.5%; }
  .basket__body + .basket__body {
    margin-top: 35px; }
  .basket__btn {
    font-size: 21px;
    padding: 19px 40px 16px; }
  .basket__bottom {
    margin-top: 25px; } }

@media (max-width: 760px) {
  .modal, #cabinet-modal .modal {
    width: 100%;
    padding: 25px 15px; }
  #basket-modal, #cabinet-modal {
    width: calc(100% - 30px); }
  .fancybox-close-small {
    right: 20px; }
  .basket-table {
    width: calc(100% + 50px);
    overflow: scroll;
    margin: 0px -25px 30px; }
  .basket-table__wrap {
    max-width: 750px; }
  .basket-table-top, .basket-table-card {
    padding: 0px 35px; }
  .basket__top {
    overflow-y: hidden;
    width: 100%;
    border-bottom: 2px solid #dad7cd; }
  .basket__body_2 .basket__tab, .basket__tab {
    font-size: 16px;
    display: block;
    width: 100%; }
  .basket__tab span {
    white-space: nowrap;
    padding-bottom: 12px; }
  .basket__tab + .basket__tab {
    margin-left: 30px; }
  .basket__tab:last-child {
    padding-right: 15px; }
  .basket__top:after {
    width: 0; }
  .basket-form {
    margin: 0px -15px; }
  .basket__top, .basket__content {
    padding: 0px 15px; }
  .basket__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .basket__column {
    width: 100%; }
  .basket__column + .basket__column {
    margin-top: 20px; }
  .basket-field__desc {
    margin-top: 5px;
    font-size: 16px; }
  .basket__select {
    width: 100%; }
  .basket__select .select2-container {
    width: 100% !important; }
  .basket__body + .basket__body {
    margin-top: 25px; }
  .basket__content {
    margin-top: 20px; }
  .basket__bottom {
    margin: 25px 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .basket__price {
    width: 100%;
    text-align: center;
    margin-bottom: 20px; }
  .basket__column + .basket__column {
    margin-left: 0px; }
  .cabinet__box {
    padding-top: 15px; }
	.cabinet__box2 {
    padding-top: 15px; }
  .cabinet__text {
    font-size: 18px; } }




.button {
  display: inline-block;
  font-size: 24px;
  color: white;
  line-height: 0.75;
  border: 1px solid #dcd8ce;
  background-color: #61a95e;
  padding: 21px 53px 18px;
  margin-bottom: 40px;
    cursor: hand;
  cursor: pointer;}

.button:hover {
  border: 1px solid #f39500;
  background-color: #f39500;
  color: red;
    cursor: hand;
  cursor: pointer;}
  
@media (max-width: 1010px) {
    .button {
  font-size: 18px;
  padding: 15px 30px 12px;
  margin-bottom: 25px; }
  }
  
 
div.shop_content_page img[align=left] {margin: 5px 10px 5px 0px;}
div.shop_content_page img[align=right] {margin: 5px 0px 5px 10px;}
div.shop_content_page img[style^="float: left"], div.shop_content_page img[style^="float:left"] {
  margin: 5px 10px 5px 0px;
}
div.shop_content_page img[style^="float: right"], div.shop_content_page img[style^="float:right"] {
  margin: 5px 0px 5px 10px;
} 


input {
  font-family: 'Circe', sans-serif;
  /*width: 100%;
  height: 45px; */
  background-color: #FFF;
  border: 1px solid #c1beb5;
  border-radius: 5px;
  padding: 5px;
  font-size: 16px;
  color: #303030;
  line-height: 1.5;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

textarea {
  font-family: 'Circe', sans-serif;
  width: 100%;
  height: 200px;
  background-color: #FFF;
  border: 1px solid #c1beb5;
  border-radius: 5px;
  padding: 5px 20px;
  font-size: 16px;
  color: #303030;
  line-height: 1.5;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  
  .pagecontentfooter {
  text-align: center;
  margin-top: 25px; }
  
  .story__text p {
text-align:left; }