html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #474747;
  background-color: #f8f8f8;
}

.container,
.wrapper {
  position: relative;
}

body,
html {
  scroll-behavior: smooth;
}

.main {
  margin-top: 11rem;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #dbdbdb;
  backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  z-index: 999;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  /* border: 1px solid #dbdbdb; */
  border-radius: 1.2rem;
  /* background-color: #ffffff; */
  max-width: 72rem;
  width: 100%;
}
.header__right.reversed {
  flex-direction: row-reverse;
}

.container {
  max-width: 152rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.menu {
  max-width: 71rem;
  width: 100%;
}
.menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__link {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  color: #474747;
  transition: opacity 0.3s ease 0s;
}
.menu__link:hover {
  opacity: 0.7;
}

.time__inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.3rem 0 1.3rem 5.7rem;
}
.time__inner.reversed {
  padding: 1.3rem 2rem;
}
.time__box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.time__title {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 100%;
}
.time__content {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.time__min,
.time__sec,
.time__hour {
  font-weight: 600;
  font-size: 2rem;
  line-height: 100%;
}
.time__label {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
}

.button {
  max-width: 35rem;
  width: 100%;
  padding: 2.8rem 0;
  background-color: #000000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  transition: opacity 0.3s ease 0s;
  border-radius: 1.2rem;
}
.button:hover {
  opacity: 0.7;
}
.button.full-size {
  max-width: 100%;
  margin-top: 27.5rem;
}

.hero__content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 3.1rem 0rem 7rem;
}
.hero__info {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 96rem;
  width: 100%;
}
.hero__label {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  padding: 2.8rem 2.4rem;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid #dbdbdb;
  border-radius: 1.2rem;
  background-color: #ffffff;
  position: relative;
  max-width: fit-content;
}
.hero__label::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("./../images/icons/flame.svg");
  background-position: center;
  background-size: cover;
}
.hero__title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 100%;
}
.hero__text {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 100%;
}
.hero__text span {
  font-weight: 600;
}
.hero__btn {
  display: flex;
  align-items: center;
  gap: 4rem;
  border: 1px solid #dbdbdb;
  border-radius: 1.2rem;
}
.hero__slider {
  max-width: 67.7rem;
  width: 100%;
}

.button__text {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
}
.button__text span {
  font-weight: 600;
}

.button-prev,
.button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  z-index: 10;
  cursor: pointer;
}

.button-prev {
  left: 1rem;
}

.button-next {
  right: 1rem;
  rotate: 180deg;
}

.graph__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 10rem 0;
}
.graph__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.graph__left {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  max-width: 81.5rem;
  width: 100%;
}
.graph__right {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  max-width: 58.6rem;
  width: 100%;
}
.graph__img {
  width: 100%;
}

.speakers {
  padding: 10rem 0;
}
.speakers__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  margin-bottom: 4rem;
}
.speakers__content {
  display: flex;
  gap: 4rem;
}
.speakers__block {
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.speakers__block-info {
  padding: 4rem 2rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-grow: 1;
}
.speakers__block-name {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 100%;
  color: #000;
}
.speakers__block-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.speakers__block-item {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  color: #999999;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.speakers__block-item::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #999999;
}
.speakers__block-item.special::before {
  margin-bottom: 1.5rem;
}

.topic__content {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  position: relative;
}
.topic__left {
  max-width: 67.7rem;
  width: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  background-color: #ffffff;
  border-radius: 2rem;
  border: 1px solid #dbdbdb;
  position: sticky;
  top: 13rem;
}
.topic__left-title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 100%;
}
.topic__left-text {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
}
.topic__left-text span {
  font-weight: 600;
}
.topic__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.topic__right-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid #dbdbdb;
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 2rem;
  position: sticky;
  top: 13rem;
}
.topic__right-block.vip {
  padding: 7.6rem 4rem 4rem;
}
.topic__right-vip {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  color: #fff;
  border: 1px solid #dbdbdb;
  background-color: #474747;
  border-radius: 1.2rem 0 1.2rem 0;
  padding: 2rem;
}
.topic__right-date {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topic__right-date::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("./../images/icons/calendar.svg");
  background-size: cover;
  background-position: center;
}
.topic__right-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
}
.topic__right-list {
  display: flex;
  flex-direction: column;
}
.topic__right-item {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  position: relative;
  display: flex;
  gap: 1rem;
}
.topic__right-item::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #999999;
  margin-top: 1rem;
  flex-shrink: 0;
}
.topic__right-text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
}
.topic__right-label {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
}
.topic__right-second-item {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  padding-left: 2rem;
}

.format__content {
  padding: 20rem 0 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.format__heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.format__title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 100%;
}
.format__text-box {
  display: flex;
  flex-direction: column;
}
.format__text {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  text-align: right;
}
.format__text:nth-child(1) {
  font-weight: 500;
}
.format__inner {
  display: flex;
  gap: 4rem;
}
.format__box {
  border: 1px solid #dbdbdb;
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 2rem;
}
.format__box-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #dbdbdb;
}
.format__box-name {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
}
.format__box-price {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.format__box-old {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 100%;
  text-decoration: line-through;
  color: #aeaeae;
}
.format__box-new {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
}
.format__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.format__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
}
.format__item::before {
  content: "";
  display: block;
  width: 3.7rem;
  height: 3.7rem;
  background-image: url("./../images/icons/check.svg");
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.format__item.disabled {
  color: #b7b7b7;
}
.format__item.disabled::before {
  content: "";
  background-image: url("./../images/icons/x.svg");
}
.format__description {
  margin-top: 1.2rem;
  padding-left: 5rem;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 100%;
}
.format__description.disabled {
  color: #b7b7b7;
}
.format__aditional {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 100%;
  text-align: center;
  max-width: 53rem;
  width: 100%;
  margin: 0 auto;
}

.tape-wrap {
  width: 100%;
  overflow: hidden;
  height: 6.6rem;
  display: flex;
  align-items: center;
  background: #434343;
  color: white;
  margin-top: 2.6rem;
}

.tape-wrap .tape-text {
  display: inline-block;
  width: auto;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  animation: tape 36s linear infinite;
}

.tape-wrap .tape-text span {
  position: relative;
  display: inline-block;
  margin-right: 7rem;
}

.tape-wrap .tape-text span:after {
  content: "";
  position: absolute;
  right: -4rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  padding: 9.5rem 0;
}
.footer__top-wrapper {
  border-bottom: 1px solid #dbdbdb;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer__lable {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 100%;
}
.footer__social-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer__social-link {
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 50%;
  border: 1px solid #474747;
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease 0s;
}
.footer__social-link:hover {
  opacity: 0.7;
}
.footer__social-link.last {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  width: auto;
  padding: 2rem 7rem 2rem 1rem;
  gap: 1rem;
  border-radius: 1rem;
  max-width: 31.7rem;
  width: 100%;
  color: #474747;
}
.footer__support {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 75rem;
  width: 100%;
  flex-shrink: 0;
}
.footer__support-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.footer__support-item {
  width: 100%;
  max-width: 36.8rem;
}
.footer__support-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.2rem;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 100%;
  color: #474747;
  width: 100%;
  border: 1px solid #909090;
  border-radius: 1.2rem;
  transition: opacity 0.3s ease 0s;
}
.footer__support-link:hover {
  opacity: 0.7;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 3.8rem 0 5.4rem;
}
.footer__offer {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  color: #474747;
}
.footer__copyright {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  text-align: right;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.4274509804);
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
}

.form {
  max-width: 65rem;
  width: 100%;
  background-color: #ffffff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  position: relative;
}

.form__title {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 100%;
  text-align: center;
  margin-bottom: 2rem;
  color: #2a2a2a;
}

.form__text {
  font-family: Montserrat;
  font-weight: 300;
  font-size: 2rem;
  line-height: 100%;
  text-align: center;
  color: #141414;
  opacity: 0.6;
}

.form__inputs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 4rem;
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 0rem;
  right: -5rem;
  width: 4.6rem;
  height: 4.6rem;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.6rem;
  height: 0.4rem;
  background-color: #fff;
  transform-origin: center;
  transition: background-color 0.3s;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.form-control {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 2rem 1.2rem;
  font-size: 1.6rem;
  color: #000;
  border-bottom: 1px solid #aeaeae;
}

.form-input::placeholder {
  color: #aeaeae;
}

.form-input.err + .error {
  display: block;
}

.error {
  position: absolute;
  top: 0;
  right: 0;
  color: red;
  font-size: 1.2rem;
  display: none;
}

.form-btn {
  width: 100%;
  padding: 2.8rem 0;
  background-color: #141414;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  border-radius: 2rem;
  margin-top: 4rem;
}

.form-info {
  margin-top: 2rem;
  text-align: center;
  color: #474747;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
}

.for-mobile {
  display: none;
}

@media (max-width: 968px) {
  .for-mobile {
    display: block;
  }
  .for-pc {
    display: none;
  }
  .header {
    height: 100%;
    background-color: transparent;
    backdrop-filter: blur(0);
    pointer-events: none;
  }
  .header__content {
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 4rem;
    transform: translateY(-150%);
    background-color: #141414;
  }
  .menu__list {
    flex-direction: column;
    margin-top: 7rem;
    gap: 6rem;
    align-items: start;
  }
  .time__inner {
    padding: 3rem;
    gap: 2rem;
  }
  .time__min,
  .time__sec,
  .time__hour {
    font-size: 2.6rem;
  }
  .time__title {
    font-size: 2.8rem;
  }
  .time__label {
    font-size: 2.6rem;
  }
  .main {
    margin-top: 0;
  }
  .button {
    max-width: 100%;
  }
  .hero__content {
    padding: 4rem;
    flex-direction: column;
    position: relative;
    padding-bottom: 20rem;
  }
  .hero__btn {
    flex-direction: column;
    gap: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
  .button__text {
    padding: 3rem;
    text-align: center;
  }
  .hero__title {
    font-size: 2.8rem;
  }
  .hero__label {
    font-size: 2.2rem;
  }
  .graph__content {
    padding: 8rem 4rem;
  }
  .graph__heading {
    flex-direction: column;
    gap: 2.2rem;
  }
  .speakers {
    padding: 5rem 4rem;
  }
  .speakers__content {
    flex-direction: column;
  }
  .topic {
    padding: 4rem;
  }
  .topic__content {
    flex-direction: column;
  }
  .topic__left {
    background-color: transparent;
    border: none;
    padding: 0;
    position: static;
  }
  .topic__left button {
    display: none;
  }
  .topic__right {
    position: relative;
  }
  .topic__right-block {
    top: 10%;
  }
  .format__heading {
    flex-direction: column;
    gap: 5rem;
  }
  .format {
    padding: 4rem;
  }
  .format__inner {
    flex-direction: column;
  }
  .header__right.reversed {
    flex-direction: column-reverse;
    gap: 0;
  }
  .format__text {
    text-align: left;
  }
  .format__text:nth-child(1) {
    margin-bottom: 2rem;
  }
  .footer__top {
    flex-direction: column;
    gap: 8rem;
    padding: 5rem 0;
  }
  .footer {
    padding: 4rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 3rem;
  }
  .footer__copyright {
    text-align: left;
  }
  .footer__offer {
    text-decoration: underline !important;
  }
  .modal-close {
    right: 2rem;
    top: 2rem;
  }
  .modal-close::after,
  .modal-close::before {
    content: "";
    background-color: #000;
  }
}
.bcm-text:before {
  content: "Best California Movers";
}

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