/*colors*/
@import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900");
.clr-green {
  color: #61662d; }

.clr-brown {
  color: #bc814a; }

.clr-brown-2 {
  color: #2e2b29; }

.clr-black {
  color: #2e2b29; }

.clr-white {
  color: #ffffff; }

.bg-light-grey {
  background: #f5f5f5; }

/*fonts*/
@font-face {
  font-family: 'knewave';
  src: url(../fonts/knewave.ttf); }
@font-face {
  font-family: 'mastoc';
  src: url(../fonts/mastoc.ttf); }
@font-face {
  font-family: 'yaseva';
  src: url(../fonts/yaseva.ttf); }
/*buttons*/
.but {
  border-radius: 10px;
  transition: 0.2s linear; }

.but-m {
  font-weight: 700;
  padding: 17px 40px;
  font-size: 18px; }
  @media only screen and (max-width: 550px) {
    .but-m {
      font-size: 14px; } }

.but-green {
  background-color: #61662d;
  color: #ffffff; }
  .but-green:hover {
    background-color: #bc814a; }

a {
  text-decoration: none;
  color: #61662d; }

/*table*/
table {
  border: 1px solid #ccc;
  padding: 0px;
  background: #fff; }
  table th {
    background: #ebd9c9;
    padding: 10px 40px; }
    @media only screen and (max-width: 550px) {
      table th {
        padding: 10px 20px; } }
  table td {
    padding: 10px 20px;
    box-shadow: 0px 0px 1px 0px #ccc; }

/*headings*/
.h2-title {
  font-family: 'mastoc';
  font-size: 72px;
  position: relative;
  font-weight: lighter;
  display: table;
  margin: 60px auto;
  border-bottom: none; }
  @media only screen and (max-width: 550px) {
    .h2-title {
      font-size: 50px;
      margin-top: 20px;
      line-height: 60px; } }
  @media only screen and (min-width: 551px) and (max-width: 1279px) {
    .h2-title {
      font-size: 65px;
      margin-top: 20px; } }

.title-wheat {
  position: relative; }
  .title-wheat:before {
    content: '';
    background: url(../img/wheat-left.png) right top no-repeat;
    width: 30%;
    height: 45px;
    display: block;
    position: absolute;
    top: 25px; }
    @media only screen and (max-width: 550px) {
      .title-wheat:before {
        display: none; } }
    @media only screen and (min-width: 551px) and (max-width: 1279px) {
      .title-wheat:before {
        width: 20%; } }
  .title-wheat:after {
    content: '';
    background: url(../img/wheat-right.png) left top no-repeat;
    width: 30%;
    height: 45px;
    display: block;
    position: absolute;
    top: 25px;
    right: 0px; }
    @media only screen and (max-width: 550px) {
      .title-wheat:after {
        display: none; } }
    @media only screen and (min-width: 551px) and (max-width: 1279px) {
      .title-wheat:after {
        width: 20%; } }

h1 {
  font-size: 30px; }

h2 {
  font-size: 24px;
  font-weight: 900;
  /*border-bottom: 1px solid #2e2b29;*/ }

h3 {
  font-size: 20px; }

h4 {
  font-size: 18px; }

/*forms*/
.forms .list {
  margin-bottom: 30px; }

label {
  font-size: 21px;
  display: block; }

input,
textarea,
select {
  border: none;
  width: 100%;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid #fff;
  min-height: 55px;
  line-height: 23px;
  font-size: 16px; }
  @media only screen and (max-width: 550px) {
    input,
    textarea,
    select {
      min-height: 10px; } }
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    color: #fff;
    font-size: 16px; }

textarea {
  min-height: 200px; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0px; }

input[type="radio"] {
  width: 20px;
  box-shadow: none;
  margin: 0px 10px 0px 0px; }

input[type="checkbox"] {
  width: 20px;
  box-shadow: none;
  margin: 0px 10px 0px 0px; }

/*accordion*/
.accordion {
  margin-bottom: 20px; }
  .accordion .accr-title {
    cursor: pointer;
    background: #f2eee7;
    padding: 1px 20px;
    box-shadow: 0px 2px 2px 0px #ccc;
    position: relative; }
    .accordion .accr-title .fa {
      float: right;
      position: absolute;
      top: 30px;
      right: 20px; }
  .accordion .accr-content {
    overflow: hidden;
    transition: 0.5s ease;
    display: none;
    padding: 20px; }
    .accordion .accr-content.active {
      display: block; }

/*body*/
body {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  padding: 100px 0px 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; }
  @media only screen and (max-width: 550px) {
    body {
      font-size: 14px;
      padding-top: 60px; } }
  @media only screen and (min-width: 551px) and (max-width: 1279px) {
    body {
      padding-top: 60px; } }
  body .slick-prev:before, body .slick-next:before {
    font-size: 40px; }
  body .slick-prev, body .slick-next {
    z-index: 999; }

.page-title {
  font-family: 'yaseva';
  font-size: 70px;
  font-weight: lighter;
  color: #2e2e2e; }
  @media only screen and (max-width: 550px) {
    .page-title {
      font-size: 35px;
      line-height: 43px; } }

button {
  border: none; }

.parallax-window {
  min-height: 400px;
  background: transparent; }

.padd-content {
  padding: 90px 15px; }
  @media only screen and (max-width: 550px) {
    .padd-content {
      padding: 40px 15px; } }

.width100 {
  width: 100% !important; }

.align-center {
  display: flex;
  align-items: center; }

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

.ul-reset {
  padding: 0px;
  margin: 0px; }

img {
  max-width: 100%; }

@media (min-width: 768px) {
  .margtop {
    margin-top: 0px !important; }

  .margbottom {
    margin-bottom: 0px !important; }

  .margleft {
    margin-left: 0px !important; }

  .margright {
    margin-right: 0px !important; }

  .paddtop {
    padding-top: 0px !important; }

  .paddbottom {
    padding-bottom: 0px !important; }

  .paddleft {
    padding-left: 0px !important; }

  .paddright {
    padding-right: 0px !important; } }
.home-page {
  padding-top: 0px; }
  .home-page header {
    background: transparent; }
    .home-page header .menu ul li a {
      color: #fff; }
      .home-page header .menu ul li a:hover {
        color: #bc814a; }
    .home-page header .menu ul li.has-sub-menu li a {
      color: #2e2b29; }
    .home-page header .logo .black {
      display: none; }
    .home-page header .logo .white {
      display: block; }
  .home-page .mobile-menu .fa {
    color: #fff; }
  .home-page .mobile-menu .white {
    display: block; }
  .home-page .mobile-menu .black {
    display: none; }
  .home-page .header-fix {
    position: fixed;
    background: #fff;
    padding: 15px 0px; }
    .home-page .header-fix .menu ul li a {
      color: #2e2b29; }
    .home-page .header-fix.mobile-menu .menu {
      padding-top: 40px; }
    .home-page .header-fix.mobile-menu .fa {
      color: #2e2b29; }
    .home-page .header-fix.mobile-menu .white {
      display: none; }
    .home-page .header-fix.mobile-menu .black {
      display: block; }
    .home-page .header-fix .logo .white {
      display: none; }
    .home-page .header-fix .logo .black {
      display: block;
      margin: auto; }
  .home-page .hero-banner .list {
    height: inherit;
    min-height: inherit; }

.promotions .slider .list {
  position: relative;
  margin: 0px 10px; }
  .promotions .slider .list:hover .hover {
    opacity: 1; }
  .promotions .slider .list .hover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(199, 152, 108, 0.8);
    color: #fff;
    top: 0px;
    text-align: center;
    padding: 60px 40px;
    opacity: 0;
    transition: 0.3s linear; }
    @media only screen and (max-width: 550px) {
      .promotions .slider .list .hover {
        padding: 30px 15px; } }
    .promotions .slider .list .hover .hover-tip {
      position: absolute;
      top: -2px;
      left: 50%;
      transform: translate(-50%, 0); }
    .promotions .slider .list .hover hr {
      border-top: 1px solid #fff;
      margin: 30px 30%; }
      @media only screen and (max-width: 550px) {
        .promotions .slider .list .hover hr {
          margin: 10px 30%; } }
    .promotions .slider .list .hover .title {
      font-size: 45px;
      font-weight: 900; }
      @media only screen and (max-width: 550px) {
        .promotions .slider .list .hover .title {
          font-size: 18px; } }
    .promotions .slider .list .hover .sub-title {
      font-size: 25px;
      font-weight: 900; }
      @media only screen and (max-width: 550px) {
        .promotions .slider .list .hover .sub-title {
          font-size: 14px; } }
    .promotions .slider .list .hover .text {
      font-size: 15px;
      line-height: 23px; }
      @media only screen and (max-width: 550px) {
        .promotions .slider .list .hover .text {
          font-size: 12px;
          line-height: 17px; } }
    .promotions .slider .list .hover .bottom-text {
      font-size: 23px;
      font-weight: 700; }
      @media only screen and (max-width: 550px) {
        .promotions .slider .list .hover .bottom-text {
          font-size: 16px; } }
.promotions .slider .slick-prev {
  left: 60px; }
.promotions .slider .slick-next {
  right: 60px; }
.promotions .slider .slick-dots {
  bottom: -50px; }
  .promotions .slider .slick-dots li button:before {
    font-size: 15px;
    color: #ccc; }
  .promotions .slider .slick-dots li.slick-active button:before {
    color: #bc814a; }

.our-cakes {
  background-size: cover; }
  .our-cakes .slider .slick-track {
    min-height: 400px; }
  .our-cakes .slider .list {
    position: relative; }
    .our-cakes .slider .list h3 {
      display: none;
      position: absolute;
      width: 100%;
      margin-top: 60px; }
    .our-cakes .slider .list .exp {
      position: absolute;
      font-size: 14px;
      color: #2e2b29;
      max-width: 100px;
      display: none; }
      .our-cakes .slider .list .exp.exp-1 {
        top: 20px;
        left: -50px; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .our-cakes .slider .list .exp.exp-1 {
            left: 100px !important; } }
        @media only screen and (min-width: 551px) and (max-width: 1279px) {
          .our-cakes .slider .list .exp.exp-1 {
            left: 230px; } }
        @media only screen and (min-width: 1600px) {
          .our-cakes .slider .list .exp.exp-1 {
            left: 0px; } }
        .our-cakes .slider .list .exp.exp-1::before {
          content: url(../img/icons/exp-1.png);
          position: absolute;
          right: -65px;
          z-index: -1; }
      .our-cakes .slider .list .exp.exp-2 {
        top: 20px;
        right: -70px; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .our-cakes .slider .list .exp.exp-2 {
            right: 100px !important; } }
        @media only screen and (min-width: 551px) and (max-width: 1279px) {
          .our-cakes .slider .list .exp.exp-2 {
            right: 230px; } }
        @media only screen and (min-width: 1600px) {
          .our-cakes .slider .list .exp.exp-2 {
            right: 0px; } }
        .our-cakes .slider .list .exp.exp-2::before {
          content: url(../img/icons/exp-2.png);
          position: absolute;
          left: -85px;
          z-index: -1; }
      .our-cakes .slider .list .exp.exp-3 {
        bottom: 20px;
        left: -50px; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .our-cakes .slider .list .exp.exp-3 {
            left: 100px !important; } }
        @media only screen and (min-width: 551px) and (max-width: 1279px) {
          .our-cakes .slider .list .exp.exp-3 {
            left: 230px; } }
        @media only screen and (min-width: 1600px) {
          .our-cakes .slider .list .exp.exp-3 {
            left: 0px; } }
        .our-cakes .slider .list .exp.exp-3::before {
          content: url(../img/icons/exp-3.png);
          position: absolute;
          right: -65px;
          z-index: -1; }
      .our-cakes .slider .list .exp.exp-4 {
        bottom: 20px;
        right: -70px; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .our-cakes .slider .list .exp.exp-4 {
            right: 100px !important; } }
        @media only screen and (min-width: 551px) and (max-width: 1279px) {
          .our-cakes .slider .list .exp.exp-4 {
            right: 230px; } }
        @media only screen and (min-width: 1600px) {
          .our-cakes .slider .list .exp.exp-4 {
            right: 0px; } }
        .our-cakes .slider .list .exp.exp-4::before {
          content: url(../img/icons/exp-4.png);
          position: absolute;
          left: -85px;
          z-index: -1; }
    .our-cakes .slider .list .img {
      width: 100px;
      margin: 100px auto 0px;
      opacity: 0.5;
      transition: 0.2s linear; }
    .our-cakes .slider .list.slick-center {
      background: url(../img/home/bg-active-slider-cake.png) no-repeat center 5px;
      background-size: 310px;
      position: relative; }
      @media only screen and (max-width: 550px) {
        .our-cakes .slider .list.slick-center {
          background-image: none; } }
      .our-cakes .slider .list.slick-center .wrap {
        margin: auto;
        left: 50%;
        transform: translate(-50%, 0);
        position: relative; }
      .our-cakes .slider .list.slick-center h3 {
        display: block; }
      .our-cakes .slider .list.slick-center .exp {
        display: block; }
        @media only screen and (max-width: 550px) {
          .our-cakes .slider .list.slick-center .exp {
            display: none; } }
      .our-cakes .slider .list.slick-center .img {
        width: 65%;
        max-width: 300px;
        opacity: 1;
        margin-top: 18px; }
        @media only screen and (min-width: 1600px) {
          .our-cakes .slider .list.slick-center .img {
            margin-top: 0px; } }
  .our-cakes .slider .slick-dots {
    bottom: -50px; }
    .our-cakes .slider .slick-dots li button:before {
      font-size: 15px;
      color: #ccc; }
    .our-cakes .slider .slick-dots li.slick-active button:before {
      color: #61662d; }
  .our-cakes .slider .slick-prev:before, .our-cakes .slider .slick-next:before {
    font-size: 40px; }
  .our-cakes .slider .slick-prev, .our-cakes .slider .slick-next {
    z-index: 999;
    opacity: 1; }
  .our-cakes .slider .slick-prev {
    left: 60px; }
    .our-cakes .slider .slick-prev::before {
      content: url(../img/icons/chev-square-prev.png);
      opacity: 1; }
  .our-cakes .slider .slick-next {
    right: 60px; }
    .our-cakes .slider .slick-next::before {
      content: url(../img/icons/chev-square-next.png);
      opacity: 1; }

.img-welcome {
  position: fixed;
  left: 40px;
  bottom: 80px;
  max-width: 250px;
  z-index: 999; }
  @media only screen and (max-width: 550px) {
    .img-welcome {
      display: none; } }

.promotional {
  background-size: cover; }
  .promotional .slider .list {
    margin: 0px 10px; }

.contact {
  background-repeat: no-repeat;
  background-color: #dcc9b2;
  background-size: 100%; }
  @media only screen and (max-width: 550px) {
    .contact {
      background-size: cover; } }

.contact-top {
  margin-bottom: 60px; }
  @media only screen and (max-width: 550px) {
    .contact-top {
      text-align: center; } }
  @media only screen and (max-width: 550px) {
    .contact-top .logo img {
      max-width: 50px; } }
  .contact-top .text {
    font-weight: 600;
    font-size: 20px;
    color: #ffffff; }
    .contact-top .text h2 {
      font-weight: 600;
      font-size: 38px;
      border-bottom: 0px; }
      @media only screen and (max-width: 550px) {
        .contact-top .text h2 {
          font-size: 24px;
          text-align: center; } }
    .contact-top .text .icon {
      margin: 0px 30px -10px 0px; }
      @media only screen and (max-width: 550px) {
        .contact-top .text .icon {
          display: block;
          margin: auto; } }

.contact-form {
  background: #5e4133;
  padding: 60px !important;
  color: #fff; }
  .contact-form .list {
    margin-bottom: 30px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    border-bottom: 1px solid #999898; }
    .contact-form input::-webkit-input-placeholder,
    .contact-form textarea::-webkit-input-placeholder,
    .contact-form select::-webkit-input-placeholder {
      color: #999898; }
  .contact-form select {
    color: #999898; }

.careers {
  background: #fff; }
  .careers .left {
    padding: 0px 40px;
    border-right: 1px solid #e1e1e1; }
  .careers .right {
    padding: 0px 40px; }

.careers-form {
  background-size: cover; }
  .careers-form input,
  .careers-form textarea,
  .careers-form select {
    color: #999898;
    border-bottom: 1px solid #999898; }
    .careers-form input::-webkit-input-placeholder,
    .careers-form textarea::-webkit-input-placeholder,
    .careers-form select::-webkit-input-placeholder {
      color: #999898;
      font-size: 16px; }
  .careers-form select {
    font-size: 16px; }

.about-us {
  background-size: cover; }
  .about-us .left {
    background-size: 100%;
    background-repeat: no-repeat;
    min-height: 600px;
    padding: 0px 40px; }
    @media only screen and (max-width: 550px) {
      .about-us .left {
        min-height: 300px; } }
  .about-us .right {
    padding: 0px 40px; }

.locations .filter {
  max-width: 900px;
  margin: 0px auto 40px; }
.locations .accordion {
  display: none; }
  .locations .accordion .accr-title {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: none; }
    .locations .accordion .accr-title.with-bg {
      background: url(../img/bg-accr-title.jpg);
      background-size: cover; }
    .locations .accordion .accr-title h4 {
      margin: 10px 0px; }
    .locations .accordion .accr-title .icon {
      position: absolute;
      right: 15px;
      top: 15px; }
  .locations .accordion .accr-content {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-top: 5px;
    color: #2e2b29; }
    .locations .accordion .accr-content .fa {
      margin-right: 10px; }

.hero-banner.product-banner {
  overflow: hidden; }
  .hero-banner.product-banner .list .title {
    font-family: 'yaseva';
    font-size: 72px; }
    @media only screen and (max-width: 550px) {
      .hero-banner.product-banner .list .title {
        font-size: 40px;
        line-height: 45px; } }
    .hero-banner.product-banner .list .title.bottom {
      top: inherit;
      bottom: 100px; }
    .hero-banner.product-banner .list .title.bottom-right {
      top: inherit;
      bottom: 100px;
      right: 100px;
      transform: inherit;
      text-align: right; }
      @media only screen and (max-width: 550px) {
        .hero-banner.product-banner .list .title.bottom-right {
          left: 20px; } }
    .hero-banner.product-banner .list .title.bottom-left {
      top: inherit;
      bottom: 100px;
      left: 100px;
      transform: inherit;
      text-align: left; }
      @media only screen and (max-width: 550px) {
        .hero-banner.product-banner .list .title.bottom-left {
          left: 20px; } }

.products {
  position: relative; }
  .products .chev {
    position: absolute;
    top: 50%;
    width: 50px; }
    @media only screen and (max-width: 550px) {
      .products .chev {
        display: none; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .products .chev {
        display: none; } }
    .products .chev.next {
      right: 10px; }
    .products .chev.prev {
      left: 10px; }

.prod-wrap .prod-list {
  margin-bottom: 30px; }
  .prod-wrap .prod-list .wrap {
    background: #fff;
    margin: 0px 30px; }
    .prod-wrap .prod-list .wrap .head {
      background: #61662d;
      color: #fff;
      padding: 15px; }
    .prod-wrap .prod-list .wrap .img {
      padding: 20px 15px; }
    .prod-wrap .prod-list .wrap .text {
      font-size: 14px;
      padding: 15px;
      color: #2e2b29; }

.prod-menu {
  background: #be844e;
  color: #fff;
  overflow: hidden; }
  .prod-menu a {
    color: #fff; }
  .prod-menu .list {
    border-right: 1px solid #fff;
    padding: 25px 0px;
    transition: 0.2s linear;
    text-transform: uppercase;
    font-size: 15px; }
    .prod-menu .list.active, .prod-menu .list:hover {
      background-color: #5e4133; }

.menu-cakes .special.active, .menu-cakes .special:hover {
  background: #5e4133 url(../img/cakes/bg-special.png) no-repeat 10px center;
  background-size: 50px; }
.menu-cakes .delightful.active, .menu-cakes .delightful:hover {
  background: #5e4133 url(../img/cakes/bg-delightful.png) no-repeat 10px center;
  background-size: 50px; }
.menu-cakes .signature.active, .menu-cakes .signature:hover {
  background: #5e4133 url(../img/cakes/bg-signature.png) no-repeat 10px center;
  background-size: 50px; }
.menu-cakes .cartoon.active, .menu-cakes .cartoon:hover {
  background: #5e4133 url(../img/cakes/bg-cartoon.png) no-repeat 10px center;
  background-size: 50px; }

.menu-bread .mini-buns.active, .menu-bread .mini-buns:hover {
  background: #5e4133 url(../img/bread/bg-mini-buns.png) no-repeat 20px center;
  background-size: 50px; }
.menu-bread .bread-buns.active, .menu-bread .bread-buns:hover {
  background: #5e4133 url(../img/bread/bg-mini-buns.png) no-repeat 20px center;
  background-size: 50px; }
.menu-bread .dry-items.active, .menu-bread .dry-items:hover {
  background: #5e4133 url(../img/bread/bg-mini-buns.png) no-repeat 20px center;
  background-size: 50px; }
.menu-bread .sandwiches.active, .menu-bread .sandwiches:hover {
  background: #5e4133 url(../img/bread/bg-mini-buns.png) no-repeat 20px center;
  background-size: 50px; }

.cake-detail-slider .list {
  position: relative; }
  .cake-detail-slider .list h3 {
    display: none;
    position: absolute;
    width: 100%;
    top: -70px; }
  .cake-detail-slider .list .exp {
    position: absolute;
    font-size: 14px;
    color: #2e2b29;
    max-width: 100px;
    display: none; }
    .cake-detail-slider .list .exp.exp-1 {
      top: 20px;
      left: -50px; }
      .cake-detail-slider .list .exp.exp-1::before {
        content: url(../img/icons/exp-1.png);
        position: absolute;
        right: -75px; }
    .cake-detail-slider .list .exp.exp-2 {
      top: 20px;
      right: -70px; }
      .cake-detail-slider .list .exp.exp-2::before {
        content: url(../img/icons/exp-2.png);
        position: absolute;
        left: -85px; }
    .cake-detail-slider .list .exp.exp-3 {
      bottom: 20px;
      left: -50px; }
      .cake-detail-slider .list .exp.exp-3::before {
        content: url(../img/icons/exp-3.png);
        position: absolute;
        right: -65px; }
    .cake-detail-slider .list .exp.exp-4 {
      bottom: 20px;
      right: -70px; }
      .cake-detail-slider .list .exp.exp-4::before {
        content: url(../img/icons/exp-4.png);
        position: absolute;
        left: -85px; }
  .cake-detail-slider .list .img {
    width: 100px;
    margin: 100px auto 0px;
    opacity: 0.5;
    transition: 0.2s linear; }
  .cake-detail-slider .list.slick-center {
    background: url(../img/home/bg-active-slider-cake.png) no-repeat center center;
    background-size: 318px;
    width: 430px !important;
    margin: auto;
    float: inherit; }
    @media only screen and (max-width: 550px) {
      .cake-detail-slider .list.slick-center {
        width: 250px !important;
        background-image: none; } }
    .cake-detail-slider .list.slick-center h3 {
      display: block; }
    .cake-detail-slider .list.slick-center .exp {
      display: block; }
      @media only screen and (max-width: 550px) {
        .cake-detail-slider .list.slick-center .exp {
          display: none; } }
    .cake-detail-slider .list.slick-center .img {
      width: 90%;
      max-width: 300px;
      opacity: 1;
      margin-top: 20px; }
.cake-detail-slider .slick-dots {
  bottom: -50px; }
  .cake-detail-slider .slick-dots li button:before {
    font-size: 15px;
    color: #ccc; }
  .cake-detail-slider .slick-dots li.slick-active button:before {
    color: #61662d; }
.cake-detail-slider .slick-prev:before, .cake-detail-slider .slick-next:before {
  font-size: 40px; }
.cake-detail-slider .slick-prev, .cake-detail-slider .slick-next {
  z-index: 999;
  opacity: 1;
  top: 30%; }
.cake-detail-slider .slick-prev {
  left: 0px; }
.cake-detail-slider .slick-next {
  right: 0px; }

/* Card sizing */
/* Colors */
/* Calculations */
/* Placeholders */
@media (min-width: 1000px) {
  #timeline .demo-card:nth-child(odd) .body::after, #timeline .demo-card:nth-child(even) .body::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 1px;
    border-top: 1px dashed #61662d;
    top: 50%;
    transform: translate(0, -50%); }

  #timeline .demo-card:nth-child(odd) .body::before, #timeline .demo-card:nth-child(even) .body::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #61662d;
    border-radius: 9px;
    box-shadow: 0px 0px 0px 3px #61662d;
    top: 50%;
    transform: translate(0, -50%); } }
/* Some Cool Stuff */
.demo-card:nth-child(1) {
  order: 1; }

.demo-card:nth-child(2) {
  order: 3; }

.demo-card:nth-child(3) {
  order: 2; }

.demo-card:nth-child(4) {
  order: 4; }

#timeline {
  padding: 0;
  display: table;
  margin: auto; }
  @media only screen and (max-width: 550px) {
    #timeline {
      display: block; } }
  #timeline .top {
    max-width: 90%;
    width: 500px;
    margin: 0px auto 50px;
    position: relative;
    left: 12px; }
    @media (min-width: 1000px) {
      #timeline .top::after {
        position: absolute;
        content: "";
        width: 18px;
        height: 18px;
        background-color: #61662d;
        border-radius: 9px;
        box-shadow: 0px 0px 0px 3px #61662d;
        left: 50%;
        transform: translate(-50%, 0);
        bottom: -65px;
        margin-left: -10px; } }
    #timeline .top .year {
      font-size: 60px;
      font-weight: 700; }
  #timeline h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 20px; }
  #timeline p.leader {
    text-align: center;
    max-width: 90%;
    margin: auto;
    margin-bottom: 45px; }
  #timeline .demo-card-wrapper {
    position: relative;
    margin: auto;
    left: 50%;
    transform: translate(-50%, 0); }
    @media (min-width: 1000px) {
      #timeline .demo-card-wrapper {
        display: flex;
        flex-flow: column wrap;
        width: 1150px;
        height: 1200px;
        margin: 0 auto; } }
    #timeline .demo-card-wrapper::after {
      z-index: 1;
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      border-left: 1px solid rgba(191, 191, 191, 0.4);
      height: 850px; }
      @media (min-width: 1000px) {
        #timeline .demo-card-wrapper::after {
          border-left: 1px solid #61662d; } }
  #timeline .demo-card {
    position: relative;
    display: block;
    margin: 10px auto 0px;
    max-width: 94%;
    z-index: 2;
    border-radius: 10px;
    min-height: 200px; }
    #timeline .demo-card.with-image {
      box-shadow: none; }
      #timeline .demo-card.with-image .body {
        background-color: transparent;
        border: 0px; }
        #timeline .demo-card.with-image .body img {
          border-radius: 10px; }
    @media (min-width: 480px) {
      #timeline .demo-card {
        max-width: 60%;
        min-height: 500px; } }
    @media (min-width: 720px) {
      #timeline .demo-card {
        max-width: 40%; } }
    @media (min-width: 1000px) {
      #timeline .demo-card {
        max-width: 350px;
        /*height: $card-height;*/
        margin: 150px;
        margin-top: 75px;
        margin-bottom: 10px; }
        #timeline .demo-card:nth-child(odd) {
          margin-right: 75px; }
          #timeline .demo-card:nth-child(odd) .body::after {
            left: 100%; }
          #timeline .demo-card:nth-child(odd) .body::before {
            left: 421.5px; }
        #timeline .demo-card:nth-child(even) {
          margin-left: 75px; }
          #timeline .demo-card:nth-child(even) .body::after {
            right: 100%; }
          #timeline .demo-card:nth-child(even) .body::before {
            right: 419.5px; }
        #timeline .demo-card:nth-child(2) {
          margin-top: 360px; } }
    #timeline .demo-card .head {
      position: relative;
      display: flex;
      align-items: center;
      color: #fff;
      font-weight: 400; }
      #timeline .demo-card .head .number-box {
        display: inline;
        float: left;
        margin: 15px;
        padding: 10px;
        font-size: 35px;
        line-height: 35px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.17); }
      #timeline .demo-card .head h2 {
        text-transform: uppercase;
        font-size: 1.3rem;
        font-weight: inherit;
        letter-spacing: 2px;
        margin: 0;
        padding-bottom: 6px;
        line-height: 1rem; }
        @media (min-width: 480px) {
          #timeline .demo-card .head h2 {
            font-size: 165%;
            line-height: 1.2rem; } }
        #timeline .demo-card .head h2 span {
          display: block;
          font-size: 0.6rem;
          margin: 0; }
          @media (min-width: 480px) {
            #timeline .demo-card .head h2 span {
              font-size: 0.8rem; } }
    #timeline .demo-card .body {
      background: #fff;
      border: 1px solid rgba(191, 191, 191, 0.4);
      border-top: 0;
      padding: 15px;
      border-radius: 10px;
      position: relative; }
      @media (min-width: 1000px) {
        #timeline .demo-card .body {
          /*height: $body-height;*/ } }
      #timeline .demo-card .body p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px; }
      #timeline .demo-card .body img {
        display: block;
        width: 100%; }
      #timeline .demo-card .body .year {
        font-size: 60px;
        font-weight: 700; }
    #timeline .demo-card--step1 {
      background-color: #46b8e9; }
      #timeline .demo-card--step1 .head::after {
        border-color: #46b8e9; }
    #timeline .demo-card--step2 {
      background-color: #3ee9d1; }
      #timeline .demo-card--step2 .head::after {
        border-color: #3ee9d1; }
    #timeline .demo-card--step3 {
      background-color: #ce43eb; }
      #timeline .demo-card--step3 .head::after {
        border-color: #ce43eb; }

.development h1 {
  font-family: 'yaseva';
  font-size: 60px;
  font-weight: lighter;
  line-height: 70px;
  margin-bottom: 120px; }
  @media only screen and (max-width: 1279px) {
    .development h1 {
      font-size: 40px;
      line-height: 52px; } }
.development h2 {
  font-family: 'yaseva';
  font-size: 36px;
  font-weight: lighter;
  line-height: 45px;
  position: relative;
  margin-bottom: 60px; }
  @media only screen and (max-width: 1279px) {
    .development h2 {
      font-size: 20px;
      line-height: 32px; } }
  .development h2::after {
    content: '';
    border-top: #222 1px solid;
    width: 100px;
    position: absolute;
    left: 0;
    bottom: -15px; }
.development h3 {
  position: relative;
  margin-bottom: 60px; }
  .development h3::after {
    content: '';
    border-top: #222 1px solid;
    width: 60px;
    position: absolute;
    left: 0;
    bottom: -15px; }
    @media only screen and (max-width: 1279px) {
      .development h3::after {
        left: 0px; } }
.development .company {
  margin-bottom: 60px; }
  .development .company .left {
    padding-right: 40px; }
    @media only screen and (max-width: 1279px) {
      .development .company .left {
        padding-right: 15px; } }
  .development .company .right {
    padding-left: 40px; }
    @media only screen and (max-width: 1279px) {
      .development .company .right {
        padding-left: 15px; } }

/* This only works with JavaScript, if it's not present, don't show loader */
.no-js #loader {
  display: none; }

.js #loader {
  display: block;
  position: fixed;
  z-index: 99999;
  background: #fff;
  height: 100vh;
  width: 100%; }
  .js #loader img {
    margin: 20% auto;
    display: block;
    width: 150px; }

header {
  position: absolute;
  width: 100%;
  padding: 15px 0px;
  z-index: 99999;
  background: #fff;
  top: 0px; }
  @media only screen and (max-width: 550px) {
    header {
      padding: 15px 0px 0px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    header {
      padding: 15px 0px 0px; } }
  header .logo {
    text-align: center; }
    header .logo img {
      margin: auto; }
    header .logo .white {
      display: none; }
  header .menu ul li {
    display: inline-block; }
    header .menu ul li a {
      padding: 0px 30px 10px;
      font-weight: 600;
      color: #2e2b29;
      font-size: 16px; }
      @media only screen and (min-width: 551px) and (max-width: 1279px) {
        header .menu ul li a {
          padding: 0px 10px; } }
      @media only screen and (min-width: 1280px) and (max-width: 1599px) {
        header .menu ul li a {
          padding: 0px 15px 10px; } }
      header .menu ul li a:hover, header .menu ul li a.active {
        color: #bc814a;
        background: url(../img/menu-wheat.png) center bottom no-repeat;
        background-size: 75px; }
  header .menu.left ul {
    width: 100%; }
    header .menu.left ul li {
      float: left; }
  header .menu.right ul {
    width: 100%; }
    header .menu.right ul li {
      float: right; }
  header.header-fix {
    position: fixed;
    background: #fff; }
    header.header-fix .logo .white {
      display: none; }
    header.header-fix .logo .black {
      display: block;
      margin: auto; }
  header .menu-item-has-children {
    position: relative;
    cursor: pointer; }
    header .menu-item-has-children .sub-menu {
      position: absolute;
      background: #fff;
      min-width: 200px;
      box-shadow: 0px 0px 9px 0px #ccc;
      top: 50px;
      left: -30px;
      display: none;
      padding: 10px 0px; }
      header .menu-item-has-children .sub-menu:before {
        content: url(../img/sub-menu-top.png);
        position: absolute;
        top: -23px;
        left: 50%;
        width: 30px;
        height: 30px;
        transform: translate(-50%, 0); }
        header .menu-item-has-children .sub-menu:before img {
          box-shadow: 0px 0px 9px 0px #ccc; }
      header .menu-item-has-children .sub-menu li {
        display: block;
        width: 100%;
        padding: 5px 10px; }
        header .menu-item-has-children .sub-menu li a {
          color: #000 !important; }

.mobile-menu .logo {
  height: 30px;
  display: block;
  margin: auto; }
.mobile-menu .fa {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  color: #2e2b29; }
.mobile-menu .fa-times {
  display: none; }
.mobile-menu .menu {
  text-align: center;
  padding: 0px 0px 40px;
  display: none; }
  .mobile-menu .menu li a {
    font-size: 15px;
    padding: 8px 0px;
    display: block; }

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

footer {
  padding: 30px;
  font-size: 16px;
  color: #9a9999;
  background: #2e2b29; }
  footer .footer-logo {
    margin: -10px 15px -15px 0px; }
    @media only screen and (max-width: 1279px) {
      footer .footer-logo {
        margin: 0px auto 30px;
        display: block; } }
  @media only screen and (max-width: 1279px) {
    footer .copyright {
      text-align: center;
      margin-bottom: 30px; } }
  footer .links {
    text-align: right; }
    @media only screen and (max-width: 1279px) {
      footer .links {
        text-align: center; } }
  footer a {
    color: #9a9999;
    padding: 0px 30px; }
    @media only screen and (max-width: 1279px) {
      footer a {
        text-align: center;
        display: block;
        margin-bottom: 20px; } }

.hero-banner.short {
  position: relative; }
  .hero-banner.short:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translate(0, -50%);
    background: rgba(0, 0, 0, 0.3); }
  .hero-banner.short .list .title {
    font-family: 'yaseva';
    font-size: 72px;
    line-height: 77px; }
    @media only screen and (max-width: 550px) {
      .hero-banner.short .list .title {
        font-size: 50px;
        line-height: 62px; } }
.hero-banner .list {
  position: relative;
  min-height: 700px; }
  @media only screen and (max-width: 550px) {
    .hero-banner .list {
      min-height: 400px; } }
  @media only screen and (min-width: 551px) and (max-width: 1279px) {
    .hero-banner .list {
      min-height: 400px; } }
  .hero-banner .list .title {
    font-family: 'knewave';
    color: #fff;
    font-size: 100px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    line-height: 77px; }
    @media only screen and (max-width: 550px) {
      .hero-banner .list .title {
        font-size: 40px; } }
    @media only screen and (min-width: 551px) and (max-width: 1279px) {
      .hero-banner .list .title {
        font-size: 60px; } }
.hero-banner .slick-dots {
  bottom: 50px; }
  .hero-banner .slick-dots li button:before {
    font-size: 15px; }
  .hero-banner .slick-dots li.slick-active button:before {
    color: #fff; }

.logos {
  padding: 60px 0px;
  background: #fff;
  overflow: hidden; }
  .logos .list {
    text-align: center; }
    @media only screen and (max-width: 550px) {
      .logos .list {
        width: 100%;
        flex-basis: auto;
        margin-bottom: 30px; } }
    .logos .list img {
      height: 65px; }

.newsletter {
  position: relative;
  background-size: cover; }
  .newsletter:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(58, 50, 56, 0.5);
    top: 0px;
    left: 0; }
  .newsletter .form {
    text-align: right; }
    @media only screen and (max-width: 550px) {
      .newsletter .form {
        text-align: center;
        margin-bottom: 30px; } }
    @media only screen and (min-width: 551px) and (max-width: 1279px) {
      .newsletter .form {
        text-align: center;
        margin-bottom: 30px; } }
    .newsletter .form input {
      border: none;
      width: 80%;
      padding: 20px 0px;
      background: transparent;
      color: #fff;
      box-shadow: 0px 0px 0px 0px #fff;
      border-bottom: 1px solid #fff; }
      .newsletter .form input::-webkit-input-placeholder {
        color: #fff;
        font-size: 21px;
        font-weight: 600; }
  @media only screen and (max-width: 1279px) {
    .newsletter .submit {
      text-align: center; } }

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