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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  background-color: #ffffff;
  font-family: "Khula", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

img {
  max-width: 100%; }

a:hover {
  color: inherit;
  text-decoration: none; }

.section {
  padding: 50px 0;
  position: relative;
  background-color: #ffffff; }
  .section:after {
    width: 40px;
    height: 40px;
    position: absolute;
    content: '';
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    z-index: 118;
    background-color: #ffffff; }

.section--color {
  background-color: #bf6a47; }
  .section--color:after {
    background-color: #bf6a47; }

.section__title {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  position: relative; }
  .section__title:after {
    z-index: 1;
    width: 100%;
    left: 0;
    top: 15px;
    height: 2px;
    background-color: #cccccc;
    display: block;
    content: '';
    position: absolute; }
  .section__title span {
    position: relative;
    display: inline-block;
    z-index: 5;
    background-color: #ffffff;
    padding: 0 20px; }

.page-title {
  font-size: 30px;
  text-align: center;
  color: #bf6a47; }

.btn {
  display: inline-block;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #f1f1f1;
  padding: 10px 25px 5px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  color: inherit;
  text-decoration: none;
  white-space: nowrap; }

.btn-modal {
  border-color: #bf6a47; }
  .btn-modal:hover {
    background-color: #bf6a47;
    color: #ffffff; }

.btn--facebook {
  padding: 5px 10px 2px;
  text-transform: none;
  background-color: #3b5998;
  color: #ffffff;
  border-color: #3b5998; }
  .btn--facebook:hover {
    color: #ffffff; }

.product {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 15px;
  text-align: center;
  background-color: #fff;
  position: relative; }

.product__sale {
  color: #ffffff;
  position: absolute;
  top: 50px;
  left: 0;
  background-color: red;
  padding: 17px 10px 15px 10px;
  font-weight: 700;
  line-height: 1; }

.product__image {
  height: 300px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover; }
  @media (min-width: 992px) {
    .product__image {
      margin: 0 50px; } }

.product__title {
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px; }

.product__price {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1;
  color: red; }

.product_footer {
  border-top: 1px solid #333333;
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (min-width: 580px) {
    .product_footer {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .product_footer .left {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; }
    .product_footer .left > div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      color: #bf6a47;
      text-align: left;
      margin-bottom: 10px; }
  .product_footer img {
    width: 35px;
    margin-right: 20px; }

.product__btn {
  border-color: #bf6a47;
  margin-bottom: 10px; }
  .product__btn:hover {
    color: #ffffff;
    background-color: #bf6a47; }

.order-modal .form-group label {
  display: block;
  margin-bottom: 0;
  font-weight: 700; }

.order-modal .form-group input, .order-modal .form-group select {
  width: 100%;
  border: 1px solid #bf6a47;
  background-color: #fff;
  padding: 0 5px; }

.order-modal .modal-header {
  position: relative;
  border-bottom: none; }

.order-modal .modal-title {
  padding: 0 20px;
  border-bottom: 1px solid #cccccc;
  text-align: center; }

.order-modal .order-quant {
  font-size: 30px;
  margin-left: 5px;
  margin-right: 5px; }

.datetimepicker-days .day {
  background-color: #bf6a47; }

.datetimepicker-days .next,
.datetimepicker-days .prev {
  text-align: center; }
  .datetimepicker-days .next i,
  .datetimepicker-days .prev i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid;
    border-right: 2px solid; }

.datetimepicker-days .next i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.datetimepicker-days .prev i {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg); }

.datetimepicker table tr td.day:hover {
  background-color: #138510; }

.datetimepicker table tr td.day.disabled:hover {
  background-color: #ffffff; }

.header {
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  z-index: 1000;
  background-color: #ffffff; }
  .header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9); }
    .header.sticky .header__top {
      display: none; }
      @media (min-width: 580px) {
        .header.sticky .header__top {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
    .header.sticky .container {
      padding-bottom: 0; }
    .header.sticky .header__logo {
      font-size: 16px;
      -webkit-transition: 0.2s all ease;
      -o-transition: 0.2s all ease;
      transition: 0.2s all ease;
      color: #000000;
      display: none; }
      @media (min-width: 580px) {
        .header.sticky .header__logo {
          display: block; } }
      .header.sticky .header__logo img {
        width: 40px; }
    @media (min-width: 768px) {
      .header.sticky .header__contact {
        font-size: 18px; } }
    .header.sticky .header__phone {
      font-size: 1.3em; }
      .header.sticky .header__phone img {
        width: 20px;
        left: 0;
        top: -2px; }
  .header .container {
    padding-top: 5px;
    padding-bottom: 5px; }

.header__wrap {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (min-width: 768px) {
    .header__wrap {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; } }

.header__logo {
  color: #bf6a47;
  font-size: 14px;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.1; }
  @media (min-width: 580px) {
    .header__logo {
      font-size: 18px; } }
  @media (min-width: 768px) {
    .header__logo {
      font-size: 20px; } }
  .header__logo:hover, .header__logo:active, .header__logo:visited {
    text-decoration: none;
    color: inherit; }
  .header__logo img {
    width: 50px;
    display: block;
    margin-bottom: 5px; }
    @media (min-width: 768px) {
      .header__logo img {
        width: 70px; } }
  .header__logo span {
    color: #bf6a47;
    display: block;
    font-size: 8px; }
    @media (min-width: 768px) {
      .header__logo span {
        font-size: 12px; } }

.header__contact {
  font-weight: 700;
  margin-top: 10px;
  text-align: center; }
  @media (min-width: 768px) {
    .header__contact {
      font-size: 22px;
      margin-top: 0; } }

.header__phone {
  color: #bf6a47;
  font-size: 1.5em;
  line-height: 1; }
  .header__phone img {
    display: inline-block;
    width: 30px;
    position: relative;
    top: -3px;
    left: 0; }

.header__schedule {
  font-size: 0.5em;
  font-weight: 300; }

.header__top {
  margin: 0;
  padding: 5px 0;
  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-bottom: 1px solid #cccccc;
  list-style-type: none;
  font-size: 10px;
  color: #bf6a47;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (min-width: 580px) {
    .header__top {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      font-size: 12px; } }
  .header__top li {
    padding: 0 20px; }

.header__middle {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.header__slogan {
  font-size: 20px;
  font-family: "Caveat", cursive;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 700;
  color: #bf6a47; }
  @media (min-width: 580px) {
    .header__slogan {
      font-size: 35px;
      padding-bottom: 20px; } }
  .header__slogan span {
    display: block;
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg); }

.navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center; }

.navigation__item {
  display: inline-block;
  position: relative; }
  .navigation__item:after {
    position: absolute;
    content: '';
    display: block;
    bottom: 4px;
    left: 15%;
    height: 1px;
    width: 0;
    -webkit-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease;
    background-color: #000000; }
  .navigation__item:hover:after {
    width: 70%; }

.navigation__link {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  line-height: 1; }
  @media (min-width: 580px) {
    .navigation__link {
      font-size: 18px;
      padding: 5px 15px; } }
  .navigation__link:visited, .navigation__link:active, .navigation__link:focus {
    color: #000000;
    text-decoration: none; }

.main-slider__item {
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 30px 0; }
  .main-slider__item .container {
    min-height: 94vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media (min-width: 769px) {
      .main-slider__item .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    @media (min-width: 1200px) {
      .main-slider__item .container {
        max-width: 85%; } }

@media (min-width: 769px) {
  .slick-slide:nth-child(odd) .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }

.main-slider__info {
  background-color: rgba(255, 255, 255, 0.86);
  padding: 15px; }
  @media (min-width: 769px) {
    .main-slider__info {
      width: 40%;
      padding: 30px; } }

.main-slider__title {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1; }
  @media (min-width: 768px) {
    .main-slider__title {
      font-size: 3.5em; } }

.main-slider__price {
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center; }
  @media (min-width: 768px) {
    .main-slider__price {
      font-size: 1.5em; } }

.main-slider__content {
  margin: 0;
  font-size: 1em; }
  @media (min-width: 768px) {
    .main-slider__content {
      font-size: 1.5em; } }

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(191, 106, 71, 0.8);
  padding: 0;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  cursor: pointer;
  z-index: 500;
  background-color: transparent;
  outline: none; }
  .slick-arrow:focus {
    outline: none; }
  .slick-arrow:hover {
    border-color: #bf6a47; }
    .slick-arrow:hover:before {
      border-color: #bf6a47; }
  .slick-arrow:before {
    display: block;
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid rgba(191, 106, 71, 0.8);
    border-left: 2px solid rgba(191, 106, 71, 0.8);
    left: 50%;
    top: 50%;
    -webkit-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease; }

.slick-prev {
  left: 20px; }
  .slick-prev:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg); }

.slick-next {
  right: 20px; }
  .slick-next:before {
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    -ms-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg); }

.slick-dots {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .slick-dots li {
    margin: 0 5px; }
    .slick-dots li.slick-active button {
      border-color: #bf6a47; }
  .slick-dots button {
    font-size: 0;
    background-color: transparent;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(191, 106, 71, 0.5);
    padding: 0;
    outline: none;
    cursor: pointer; }

.main-slider__badge {
  margin: 0 auto; }
  .main-slider__badge img {
    width: 200px;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .main-slider__badge img {
        width: 300px; } }
  .main-slider__badge--sayno img {
    width: 300px;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .main-slider__badge--sayno img {
        width: 500px; } }

.main-slider__list {
  margin: 0 auto; }
  .main-slider__list ul {
    list-style-type: none;
    font-size: 20px;
    font-family: "Caveat", cursive;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    margin: 0 0 10px 0;
    line-height: 1.3; }
    @media (min-width: 768px) {
      .main-slider__list ul {
        font-size: 40px;
        padding: 30px;
        background-color: transparent; } }

.s-prod-slider {
  padding-bottom: 30px; }

.s-prod-slider__info {
  text-align: center;
  padding: 0 30px; }
  .s-prod-slider__info h3 {
    font-size: 1.7em; }
  .s-prod-slider__info h4 {
    font-size: 1.25em;
    margin: 0 0 10px; }
  .s-prod-slider__info p {
    margin-top: 0; }

.s-prod-slider__delivery {
  font-size: 10px;
  background-color: #138510;
  padding: 5px 10px;
  font-weight: 700;
  color: #ffffff;
  position: relative; }
  @media (min-width: 580px) {
    .s-prod-slider__delivery {
      font-size: 12px;
      -webkit-transform: rotate(-5deg);
      -ms-transform: rotate(-5deg);
      transform: rotate(-5deg); } }
  .s-prod-slider__delivery .col-3 {
    text-decoration: underline; }
  .s-prod-slider__delivery .col-4 {
    font-size: 14px;
    color: red; }
    @media (min-width: 580px) {
      .s-prod-slider__delivery .col-4 {
        font-size: 18px; } }
    .s-prod-slider__delivery .col-4 span {
      display: inline-block;
      background-color: #ffffff; }

.prod-slider {
  background-color: #fff;
  padding: 20px; }

.prod-slider__item {
  height: 350px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover; }

.prod-slider .slick-dots {
  bottom: 30px; }

.prod-slider .slick-prev {
  left: 30px; }

.prod-slider .slick-next {
  right: 30px; }

.s-prod-slider__subtitle {
  text-align: center;
  font-size: 24px;
  margin-top: 30px;
  padding-top: 40px;
  font-family: "Caveat", cursive;
  border-top: 2px solid #bf6a47; }
  @media (min-width: 580px) {
    .s-prod-slider__subtitle {
      font-size: 35px; } }

.free-kindling {
  padding: 30px 0;
  text-align: center; }
  .free-kindling .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media (min-width: 768px) {
      .free-kindling .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row; } }
  .free-kindling--yellow {
    background-color: #bf6a47; }
    .free-kindling--yellow .section__title span {
      background-color: #bf6a47; }
  .free-kindling .section__title {
    color: #000000; }
    .free-kindling .section__title:after {
      top: 11px; }

.free-kindling__img {
  /*display: block;
  margin: 0 auto;*/
  width: 320px;
  max-width: 100%; }
  @media (min-width: 768px) {
    .free-kindling__img {
      margin-right: 50px; } }
  @media (min-width: 992px) {
    .free-kindling__img {
      margin-right: 50px; } }

.free-delivery {
  background-color: #333333;
  color: #ffffff;
  font-family: "Caveat", cursive;
  font-size: 50px; }
  .free-delivery img {
    width: 80px;
    display: inline-block;
    margin-right: 20px; }
  @media (min-width: 580px) {
    .free-delivery .container {
      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; } }
  .free-delivery span {
    color: #bf6a47;
    margin-right: 10px; }

.delivery__wrap {
  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;
  margin-bottom: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (min-width: 768px) {
    .delivery__wrap {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; } }

.delivery__seven {
  font-size: 24px;
  font-weight: 700; }

.delivery__list {
  list-style-type: none; }

.delivery__item {
  margin-bottom: 20px;
  font-family: "Caveat", cursive;
  font-size: 20px;
  position: relative; }
  @media (min-width: 768px) {
    .delivery__item {
      font-size: 30px; } }
  .delivery__item:after {
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    border-right: 3px solid #bf6a47;
    border-bottom: 3px solid #bf6a47;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    left: -33px;
    top: 50%; }
  .delivery__item:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: -50px;
    top: 50%;
    border-radius: 50%;
    background-color: #138510; }

.delivery__description {
  font-size: 20px;
  font-weight: 700; }

.banner-line {
  font-weight: 700;
  color: #000000;
  background-color: #bf6a47;
  line-height: 1.2;
  padding-top: 10px;
  font-size: calc( 0.02083 * 100vw + 0px);
  text-align: center; }
  .banner-line span {
    color: #138510; }

.compare {
  text-align: center; }

iframe.map {
  width: 100%;
  height: 440px;
  pointer-events: none;
  margin-top: 20px; }

.contacts {
  overflow: hidden; }
  .contacts .section__title {
    margin-bottom: 30px; }
    .contacts .section__title span {
      background-color: #bf6a47; }
  .contacts img {
    margin-top: 25px; }
  .contacts iframe {
    border: none;
    overflow: hidden;
    width: 100%; }
  .contacts .review__title {
    margin-bottom: 2px; }

.contacts__badge {
  line-height: 1.2;
  z-index: 200;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px; }
  @media (min-width: 768px) {
    .contacts__badge {
      left: -210px;
      top: -65px;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      width: 500px;
      padding: 100px 0 0;
      position: absolute;
      margin-bottom: 0; } }

.contacts__badge-title {
  font-size: 25px;
  font-weight: 700;
  color: #bf6a47; }
  @media (min-width: 580px) {
    .contacts__badge-title {
      font-size: 35px; } }
  @media (min-width: 769px) {
    .contacts__badge-title {
      font-size: 45px; } }

.contact__form-group {
  margin-bottom: 15px; }
  .contact__form-group input,
  .contact__form-group textarea {
    display: block;
    width: 100%;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f1f1;
    padding: 5px; }
  .contact__form-group input {
    height: 35px; }
  .contact__form-group textarea {
    height: 150px;
    resize: vertical; }
  .contact__form-group label {
    font-weight: 700; }
  .contact__form-group.required label:after {
    content: '*';
    color: red;
    margin-left: 5px; }

.contact__submit:hover {
  background-color: #9c9c9c;
  color: #f1f1f1;
  border-color: #9c9c9c; }

.ajax-response {
  color: green;
  font-size: 1.5em;
  display: none; }

.delivery-map {
  padding: 50px 0; }

.delivery-map__image {
  display: block; }

.delivery-map__title {
  font-family: "Caveat", cursive;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #bf6a47;
  text-align: center; }

.delivery-map__content {
  margin-bottom: 30px; }
  .delivery-map__content span {
    color: red;
    font-weight: 700; }

.delivery-map__phone {
  font-size: 60px;
  font-weight: 700;
  text-align: center; }

.collage {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 80vh; }

.collage__item {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.collage__image {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover; }

.prod-content {
  padding-top: 50px; }

.footer {
  background-color: #333333;
  color: #ffffff;
  padding: 20px 0;
  position: relative;
  z-index: 200; }
  .footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    
.btn--whatsapp {
    margin-top:10px;
    padding: 5px 10px 2px;
    text-transform: none;
    background-color: #1BD742;
    color: #ffffff;
    border-color: #1BD742;
}

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