/*
Theme Name: Dotbee
Author: Mikhail Rubashkin
Version: 1.0
*/

/* Reset / Normalize */
*,
*::before,
*::after {
  box-sizing: border-box;
  /* margin: 0;
  padding: 0; */
}

html {
  scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
:root {
  --font-main: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: #000;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
}

.hero__button,
strong,
b {
  font-weight: 700;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #333;
}
/* ===== END TYPOGRAPHY ===== */

/* ===== GLOBAL STYLES ===== */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  flex: 1;
}

main {
  flex: 1;
}

.hr {
  padding: 0 15px;
  max-width: 1280px;
  margin: 0 auto;
}

.hr__inner {
  height: 1px;
  background-color: #000;
}
/* ===== END GLOBAL STYLES ===== */

/* ===== HEADER ===== */
.header {
  position: relative;
  padding-bottom: 29px;
}

@media (max-width: 768px) {
  .header {
    padding: 0;
  }
}

.header__inner {
  padding: 6px 15px 3px 15px;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* border-bottom: 1px solid black; */
}

@media (max-width: 768px) {
  .header__inner {
    padding: 0;
    margin: 0 15px;
    height: 46px;
    align-items: center;
  }
}

.header__left {
  display: flex;
}

.header__logo {
  display: flex;
}

.header__logo a {
  display: flex;
  align-items: flex-start;
  /* padding-top: 6px; */
}

.header__right {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 50px;
}

.header__logo img {
  height: 36px;
}

@media (max-width: 768px) {
  .header__logo svg {
    width: 117px;
    height: 24px;
  }
}

.header__nav {
  padding-bottom: 4px;
  align-self: stretch;
  display: flex;
}

.header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 50px;
}

.header__nav-list li a {
  display: flex;
  font-weight: 400;
  letter-spacing: -1px;
}

.header__nav a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  line-height: 1;
  transition: all 0.2s ease;
}

.header__nav a:hover {
  background: linear-gradient(90deg, #ff9430, #fd42c9, #a137d2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.lang-dropdown-minimal {
  position: relative;
  display: inline-block;
  z-index: 99;
}
.lang-dropdown-minimal__current {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.18s, box-shadow 0.18s;
}

.lang-dropdown-minimal__list {
  display: none;
  position: absolute;
  right: 0;
  min-width: 82px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(30, 16, 37, 0.13);
  border-radius: 12px;
  padding: 7px 0;
  animation: lang-minimal-fade 0.18s;
}

.lang-dropdown-minimal:hover .lang-dropdown-minimal__list,
.lang-dropdown-minimal:focus-within .lang-dropdown-minimal__list {
  display: block;
}

.lang-dropdown-minimal__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px 10px 20px;
  color: #212121;
  text-decoration: none;
  font-size: 16px;
  border-radius: 7px;
  transition: background 0.15s;
}
.lang-dropdown-minimal__item:hover {
  background: #f9f5fc;
}
.lang-dropdown-minimal__item.active {
  color: #000;
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}
@keyframes lang-minimal-fade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .lang-dropdown-minimal {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

.burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger--active span:nth-child(2) {
  opacity: 0;
}

.burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__mobile-menu {
  display: none;
}

.mobile-menu__languages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__languages a {
  text-decoration: none;
  color: #212121;
  font-weight: 400;
  line-height: 1;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.mobile-menu__languages a.active {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.mobile-menu__flag {
  width: 24px;
  height: 16px;
  display: flex;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .header__nav,
  .header__lang {
    display: none;
  }

  .header__mobile-menu {
    display: none;
  }

  .mobile-menu--open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .mobile-menu--open .header__nav,
  .mobile-menu--open .header__lang {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu--open .header__nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
/* ====== END HEADER ===== */

/* ===== HERO ===== */
.hero {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}

.hero__hr {
  width: 100%;
  padding-bottom: 15px;
  border-top: 1px solid #000;
}

.hero__inner {
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 105px;
  max-width: 1250px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid black;
}

.hero__content {
  max-width: 580px;
}

.hero__content h1 {
  margin: 0;
  line-height: 1.1;
}

.hero__content p {
  margin: 0;
  padding-top: 35px;
  line-height: 1.4;
}

.hero__button {
  display: block;
  width: 300px;
  height: 68px;
  margin-top: 36px;
  padding: 20px 30px;

  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  text-decoration: none;
  background: linear-gradient(225deg, #a137d2 6%, #fd42c9 59%, #ff9430 98%);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero__button:hover,
.hero__button:focus {
  transform: scale(1.02);
}

.hero__images {
  justify-self: end;
  margin-right: 10px;
  display: block;
  text-align: center;
  max-width: 518px;
}

.hero__images img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    padding: 0 15px;
  }

  .hero__inner {
    padding-top: 34px;
    padding-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__content h1 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -2.2px;
  }

  .hero__content p {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .hero__button {
    max-width: 235px;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    margin-top: 23px;
    padding: 11px 0 11px 30px;
    max-height: 50px;
  }

  .hero__images {
    max-width: 100%;
    grid-row: 1;
    margin: 0;
  }
}

@media (max-width: 500px) {
  .hero__content h1 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -2.2px;
  }

  .hero__content p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    padding-top: 16px;
    font-size: 14px;
    line-height: 143%;
  }
}

/* ===== END HERO ===== */

/* ===== STORY ===== */
.story {
  padding: 0 20px;
}

.story__hr {
  width: 100%;
  padding-top: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #000;
}

.story__inner {
  max-width: 1250px;
  margin: 0 auto;
  padding-bottom: 127px;
  border-bottom: 1px solid black;
}

.story__header h1 {
  margin: 0;
  padding-top: 34px;
}

.story__image {
  padding-top: 24px;
  max-width: 470px;
}

.story__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.story__name {
  margin-bottom: 8px;
  margin: 0;
  padding-top: 20px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.story__role {
  margin: 0;
  padding-top: 9px;
  color: #767676;
  line-height: 1.21;
  letter-spacing: -1px;
}

.text__hr {
  padding-top: 8px;
  max-width: 655px;
  border-bottom: 1px solid black;
}

.story__text-wrapper {
  padding-top: 40px;
}

.story__text p {
  line-height: 1.47;
  transition: all 3s ease;
}

.story__text p:first-child {
  margin-top: 0;
}

.story__text p {
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.story__text.expanded p {
  margin: 20px 0;
  opacity: 1;
  max-height: 1000px;
}

.story__text p:first-child {
  opacity: 1;
  max-height: none;
}

.story__toggle-wrapper {
  padding-top: 30px;
  display: flex;
  justify-content: flex-start;
}

.story__toggle {
  display: inline-block;
  padding: 1px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: Poppins;
  line-height: 1;
  transition: all 3s ease;
}

.story__toggle--less {
  display: none;
}

.story__toggle:hover .toggle-icon.arrow-right {
  transform: translateX(5px);
}

.story__toggle:hover .toggle-icon.arrow-left {
  transform: translateX(-5px);
}

.story__toggle .toggle-text {
  display: inline-block;
  color: #333;
  font-weight: 400;
  font-size: 15px;
  font-family: Poppins;
  line-height: 1;
  letter-spacing: -0.4px;
}

.story__toggle .toggle-icon {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  transition: all 0.3s ease;
}

.story__footer {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
}

.footer__copy p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__privacy a,
.footer__terms a,
.footer__privacy a:hover,
.footer__terms a:hover,
.footer__privacy a:active,
.footer__terms a:active {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

@media (max-width: 768px) {
  .story {
    padding: 0 15px;
  }

  .story__inner {
    padding-top: 38px;
    padding-bottom: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .story__header h1 {
    padding: 0;
    margin: 0;
    font-family: Poppins;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-size: 44px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -2.2px;
    text-align: left;
  }

  .story__image {
    float: none;
    width: 100%;
    padding-top: 20px;
    /* margin: 0 auto 20px auto; */
    text-align: center;
  }

  .story__name {
    padding-top: 17px;
    font-size: 20px;
    line-height: 1.21;
    font-weight: 500;
    letter-spacing: -1px;
  }

  .story__role {
    font-size: 20px;
    line-height: 1.21;
    font-weight: 400;
    letter-spacing: -1px;
  }

  .text__hr {
    padding-top: 38px;
  }

  .story__text {
    text-align: left;
  }

  .story__text p {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .story__name,
  .story__role {
    text-align: left;
  }

  .story__toggle-wrapper {
    padding-top: 20px;
  }
}

@media (max-width: 500px) {
  .footer__copy p {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  .footer__vr {
    display: none;
  }
}
/* ===== END STORY ===== */

/* ===== WAITING LIST ===== */
.waitlist {
  padding: 0 20px 68px 20px;
}

.waitlist__hr {
  width: 100%;
  padding-top: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #000;
}

.waitlist__inner {
  max-width: 1250px;
  margin: 0 auto;
  padding-top: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.waitlist__header {
  max-width: 520px;
}

.waitlist__header h1 {
  margin: 0;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .waitlist {
    padding: 0 15px;
  }

  .waitlist__inner {
    padding-top: 50px;
    padding-bottom: 68px;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .waitlist__header h1 {
    text-align: left;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2.2px;
  }
}

.waitlist__form form {
  background: transparent;
  /* padding: 40px 0 0 0; */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.waitlist__form .form-group {
  width: 100%;
  padding: 13px 3px 0 8px;
}

.waitlist__form input[type="text"],
.waitlist__form input[type="email"],
.waitlist__form input[type="tel"],
.waitlist__form textarea {
  width: 100%;
  padding-left: 8px;
  padding-bottom: 4px;
  font-family: inherit;
  font-size: 22px;
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #222;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.waitlist__form input[type="text"]:focus,
.waitlist__form input[type="email"]:focus,
.waitlist__form input[type="tel"]:focus,
.waitlist__form textarea:focus {
  border-bottom: 2px solid #000;
}

.waitlist__form textarea {
  min-height: 136px;
  max-height: 200px;
}

.waitlist__form .form-policy {
  padding-top: 5px;
  padding-left: 5px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
}

.waitlist__form .form-policy label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.waitlist__form .form-policy p {
  font-size: 12px;
}

.waitlist__form .form-policy a {
  color: #000;
  text-decoration: underline;
}

.waitlist__form input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #000;
}

.waitlist__form button[type="submit"] {
  align-self: flex-end;
  width: 300px;
  height: 68px;
  border-radius: 100px;
  font-size: 20px;
  line-height: 28px;
  font-family: Poppins;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #a137d2 6%, #fd42c9 59%, #ff9430 98%);
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border 0.25s, box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.25s ease;
}

.waitlist__form button[type="submit"]:hover,
.waitlist__form button[type="submit"]:focus {
  transform: scale(1.05);
}

#waitlist-form-message {
  border-radius: 5px;
  margin-top: 32px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-success {
  padding: 1rem;
}

.form-error {
  color: #a60000;
}

@media (max-width: 768px) {
  .waitlist__form {
    padding-top: 50px;
  }

  .waitlist__form .form-policy {
    padding: 0;
    padding-top: 20px;
  }

  .waitlist__form .form-group {
    padding-left: 0;
    padding-right: 0;
  }

  .waitlist__form button[type="submit"] {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .waitlist__form .form-policy p {
    text-align: left;
    margin: 0;
  }

  .waitlist__form input[type="checkbox"] {
    margin: 0;
  }

  .waitlist__form .form-policy label {
    gap: 8px;
  }

  .waitlist__form button[type="submit"] {
    align-self: flex-start;
    margin: 0;
    margin-top: 20px;
    max-width: 183px;
    max-height: 50px;
    border-radius: 81px;
  }
}
/* ===== END WAITING LIST ===== */

/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.8);
  padding: 30px 15px 49px 15px;
}

.footer__inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 30px 15px 15px 15px;
  display: grid;
  gap: 40px;
  align-items: start;
}

.footer__logo {
  height: 48px;
  margin-bottom: 8px;
  display: block;
}

.footer__col-right {
  display: flex;
  justify-content: space-between;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.footer__office {
  display: none;
}

.footer__contact {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-size: 20px;
  line-height: 1;
  font-family: "Poppins";
  font-weight: 400;
  letter-spacing: -1.2px;
}

.footer__phone {
  padding-top: 30px;
}

.footer__email {
  padding-top: 10px;
}

.footer__company {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;

  display: none;
}

.footer__social {
  max-width: 92px;
}

.footer__social-title {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -1.2px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
}

.footer__social-linkedin {
  display: block;
  padding-top: 30px;
  line-height: 1;
  letter-spacing: -1.2px;
  color: #f7f7f7;
  font-weight: 400;
}

.footer__office-address,
.footer__phone,
.footer__email,
.footer__social-linkedin {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer__phone,
.footer__email,
.footer__socail-linkedin {
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer__phone:hover,
.footer__email:hover,
.footer__social-linkedin:hover,
.footer__privacy a:hover,
.footer__terms a:hover {
  color: #fff;
}

.footer__hr {
  width: 100%;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer__copy {
  grid-column: span 2;
}

.footer__copy p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
  .footer__inner {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__copy {
    grid-column: span 1;
  }

  .footer__logo {
    height: 36px;
  }

  .footer__col-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__social {
    margin-top: 62px;
  }
}
/* ===== END FOOTER ===== */

/* ===== PRESS RELEASE===== */

.press-release__inner {
  max-width: 1250px;
  margin: 0 auto;
  padding-bottom: 58px;
}

@media (max-width: 768px) {
  .press-release__inner {
    padding-top: 34px;
    padding-bottom: 48px;
    margin: 0 15px;
  }
}

.press-release__image img {
  width: 100%;
  height: auto;
  display: block;
}

.press-release__content {
  padding-top: 27px;
}

@media (max-width: 768px) {
  .press-release__content {
    padding: 0;
    padding-top: 10px;
  }
}

.press-release__title {
  margin: 0;
  line-height: 1.1;
}

@media (max-width: 500px) {
  .press-release__title {
    font-size: 44px;
    letter-spacing: -2.5px;
  }
}

.press-release__text {
  column-count: 2;
  column-gap: 60px;
  padding-top: 60px;
}

.press-release__text h2,
.press-release__text h3 {
  margin-bottom: 1rem;
}

.press-release__text p {
  margin: 0;
}

@media (max-width: 768px) {
  .press-release__text {
    column-count: 1;
    padding-top: 8px;
  }

  .press-release__text p {
    font-size: 14px;
    line-height: 1.46;
    letter-spacing: 0px;
  }
}

/* ===== END PRESS RELEASE ===== */

/* ===== PRIVACY POLICY ===== */
.privacy-policy__inner {
  max-width: 1250px;
  margin: 0 auto;
}

.privacy-policy__image img {
  width: 100%;
  height: auto;
  display: block;
}

.privacy-policy__content {
  padding: 2rem;
  max-width: 1250px;
  margin: 0 auto;
}

.privacy-policy__title {
  margin-bottom: 1.5rem;
}

.privacy-policy__text {
  column-gap: 2rem;
}

.privacy-policy__text h2,
.privacy-policy__text h3 {
  margin-bottom: 1rem;
}

.privacy-policy__text p {
  margin-bottom: 1.5rem;
}

/* ===== END PRIVACY POLICY ===== */

/* ===== TERMS ===== */
.terms__inner {
  max-width: 1250px;
  margin: 0 auto;
}

.terms__image img {
  width: 100%;
  height: auto;
  display: block;
}

.terms__content {
  padding: 2rem;
  max-width: 1250px;
  margin: 0 auto;
}

.terms__title {
  margin-bottom: 1.5rem;
}

.terms__text {
  column-gap: 2rem;
}

.terms__text h2,
.terms__text h3 {
  margin-bottom: 1rem;
}

.terms__text p {
  margin-bottom: 1.5rem;
}

.terms-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

a.terms-link {
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: none;
  color: #000;
  font-weight: 400;
  line-height: 1;
  transition: all 0.2s ease;
}

a.terms-link:hover {
  background: linear-gradient(90deg, #ff9430, #fd42c9, #a137d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ===== END TERMS ===== */

/* ===== BACKGROUND SCROLL EFFECT ===== */
body {
  transition: background 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  background: #fff4ea;
}
.footer {
  background: #000 !important;
  color: #fff;
}
/* ===== END BACKGROUND SCROLL EFFECT ===== */
