* {
  padding: 0;
  margin: 0;
}
*::-webkit-scrollbar {
  display: none;
}
#hall {
  position: relative;
  left: 50%;
  margin-left: -100%;
  width: 90%;
  overflow: hidden;
}
@media (max-width: 768px) {
  #hall {
    width: 150%;
  }
}
body {
  background-image: url(./assets/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-font-smoothing: antialiased !important;
}
.visible {
  visibility: visible !important;
}
.hidden {
  visibility: hidden !important;
}
.overlay {
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.formCard {
  visibility: hidden;
  position: fixed;
  height: 80%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  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-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: left;
  gap: 16px;
  width: 500px;
  padding: 32px;
  margin: 5vh auto 5vh auto;
  border-radius: 25px;
  background-color: white;
  overflow: auto;
}
@media (max-width: 768px) {
  .formCard {
    border-radius: 15px;
    height: 90%;
    width: 96vw;
    padding: 25px 16px 16px 16px;
    margin: 2vh auto 2vh auto;
  }
  .formCard p,
  .formCard p span {
    font-size: 0.8125rem;
    line-height: 1.05rem;
  }
  .formCard label {
    font-size: 0.9375rem;
    line-height: 1.1rem;
  }
}
@media (min-width: 769px) and (max-height: 840px) {
  .formCard {
    height: 90%;
    padding: 25px 16px 16px 16px;
    margin: 2vh auto 2vh auto;
  }
}
@media (max-height: 840px) {
  .formCard {
    gap: 8px;
  }
  .formCard p,
  .formCard p span {
    font-size: 0.8125rem;
    line-height: 1.05rem;
  }
  .formCard label {
    font-size: 0.9375rem;
    line-height: 1.1rem;
  }
}
.formCard__title-required::after {
  content: '*';
  color: #ff3118;
}
.formCard__error_message {
  display: none;
  color: #ff3118;
}
@media (max-width: 768px) {
  .formCard p {
    font-size: 0.8125rem;
    line-height: 1.05rem;
  }
}
.formCard__field.invalid .formCard__error_message {
  display: inline;
}
.formCard__field.invalid .formCard__input {
  border-color: #ff3118;
}
.formCard__closeButton:hover {
  opacity: 1;
}
.formCard__closeButton {
  opacity: 0.5;
  visibility: hidden;
  position: fixed;
  width: 40px;
  height: 40px;
  border: none;
  z-index: 4;
  left: 50%;
  -webkit-transform: translateX(650%);
  -ms-transform: translateX(650%);
  transform: translateX(650%);
  top: 60px;
  background: url(./assets/cross.png);
  background-size: contain;
  cursor: pointer;
}
@media (max-width: 768px) {
  .formCard__closeButton {
    width: 25px;
    height: 25px;
    left: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    right: 40px;
    top: 3%;
    background: url(./assets/crossMobile.png);
    background-size: contain;
  }
}
@media (max-height: 840px) {
  .formCard__closeButton {
    top: 2.75%;
  }
}
.formCard__input {
  height: 60px;
  width: 100%;
  padding: 0 0 0 15px;
  margin-top: 8px;
  border: none;
  border-radius: 60px;
  background-color: #f5f5f5;
  outline: none;
  border: 1px solid transparent;
}
@media (max-height: 900px) {
  .formCard__input {
    height: 48px;
  }
}
@media (max-height: 900px) {
  .formCard__input {
    height: 48px;
  }
}
.formCard_radio {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 8px;
}
.formCard_radio__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 8px;
}
.formCard_radio__container input,
.formCard_radio__container label {
  cursor: pointer;
}
.formCard_radio__button {
  display: block;
  position: relative;
  padding-left: 35px;
  height: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.formCard_radio__text {
  line-height: 30px;
}
input[type='radio'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.formCard_radio__button .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #f5f5f5;
  border-radius: 50%;
}
.formCard_radio__button:hover input ~ .checkmark {
  background-color: #eee;
}
.formCard_radio__button .checkmark:after {
  content: '';
  position: absolute;
  display: none;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
}
.formCard_radio__button input:checked ~ .checkmark:after {
  display: block;
}
.formCard_message__container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.formCard_message__textarea {
  height: 90%;
  width: 100%;
  margin-top: 6px;
  padding: 15px 0 0 15px;
  border: none;
  border-radius: 33px;
  background-color: #f5f5f5;
  outline: none;
}
@media (max-width: 768px) {
  .formCard_message__textarea {
    border-radius: 24px;
  }
}
.formCard__submitButton {
  height: 72px;
  min-height: 48px;
  margin-top: 25px;
  border-radius: 80px;
  color: white;
  background-color: black;
  border: none;
  cursor: pointer;
}
.formCard__submitButton:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .formCard__submitButton {
    height: 60px;
  }
}
@media (max-height: 840px) {
  .formCard__submitButton {
    height: 60px;
  }
}
.arrow {
  position: absolute;
  display: flex;
  top: 50%;
  margin: auto;
  height: 4rem;
  border: none;
  width: 2rem;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 0.1;
  z-index: 2;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .arrow {
    display: none;
  }
}
.arrow:hover,
.arrow:focus {
  opacity: 1;
}
.arrow-prev {
  left: 0;
  transform: rotate(180deg);
}
.arrow-next {
  right: 0;
}
.container {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding: 137px 40px 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 158px 16px 0 16px;
  }
}
.container_padding {
  padding-top: unset;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2%;
}
.row-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  gap: 2%;
}
.column {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.overflow {
  overflow: hidden;
}
.logo {
  position: absolute;
  top: 16px;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: baseline;
  -ms-flex-pack: baseline;
  justify-content: baseline;
  gap: 15px;
}
@media (max-width: 768px) {
  .logo {
    top: 48px;
    left: 16px;
  }
}
.logoText {
  display: block;
}
@media (max-width: 768px) {
  .logoText {
    display: none;
  }
}
.logoText_mobile {
  display: none;
}
@media (max-width: 768px) {
  .logoText_mobile {
    display: block;
  }
}
.topContacts {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  top: 20px;
  right: 40px;
  font-family: 'Suisse';
}
@media (max-width: 768px) {
  .topContacts {
    display: none;
  }
}
.header {
  gap: 30px;
}
.header__header {
  margin: 0 25%;
}
@media (max-width: 768px) {
  .header__header {
    margin: 0 16px;
  }
}
.applyButton {
  height: 72px;
  width: 264px;
  color: white;
  background-color: black;
  transition: background-color 1s;
  border: none;
  border-radius: 80px;
  font-size: 1rem;
  cursor: pointer;
}
.applyButton__text {
  position: relative;
  color: white;
  top: -53px;
  pointer-events: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .applyButton {
    height: 60px;
  }
  .applyButton__text {
    top: -47px;
  }
}
.conditions {
  width: 100%;
  margin: 28px 0 40px 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .conditions {
    margin: 0 0 40px 0;
    overflow: scroll;
    padding: 16px;
  }
}
.conditions__card {
  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;
  position: relative;
  gap: 38px;
  width: 100%;
  max-width: 432px;
  padding: 16px 32px 24px 32px;
  border-radius: 24px;
  -webkit-box-shadow: 0px 4px 44px 0px #00000014;
  box-shadow: 0px 4px 44px 0px #00000014;
}
@media (max-width: 768px) {
  .conditions__card {
    gap: 18px;
    min-width: 271px;
    padding: 8px 25px 12px 16px;
    -webkit-box-shadow: 0px 4px 20px 0px #00000014;
    box-shadow: 0px 4px 20px 0px #00000014;
  }
}
.conditions__greencheck {
  position: absolute;
  height: 44px;
  right: 10px;
  top: 10px;
}
@media (max-width: 768px) {
  .conditions__greencheck {
    height: 32px;
  }
}
.conditions__greytext {
  font-family: 'Suisse';
  font-size: 15px;
  text-align: center;
  color: #808080;
  padding: 0 40px;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  .conditions__greytext {
    padding: 0 16px;
  }
}
.promotions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: black;
  height: 500px;
  margin-top: 150px;
  padding-right: 24px;
}
@media (max-width: 1023px) {
  .promotions {
    max-height: 322px;
    margin-top: 80px;
    padding-right: 0;
  }
  .promotions-arrow {
    display: none;
  }
}
.promotions__card {
  max-width: 431px;
  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;
  text-align: left;
  border-radius: 48px;
  padding: 40px;
  color: white;
  background-color: #1c1d21;
}
@media (max-width: 1023px) {
  .promotions__card {
    width: 271px;
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    border-radius: 24px;
    padding: 16px;
  }
}
.promotions__pic {
  max-width: 696px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 48px;
  background-color: #f5f5f5;
}
@media (max-width: 1023px) {
  .promotions__pic {
    display: none;
  }
}
.promotions__pic_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.promotions__text {
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .promotions__text {
    font-size: 0.9375rem;
    line-height: 1.125rem;
  }
  h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
.promotions__logo {
  margin-top: 16px;
}
.promotions_sber {
  font-family: 'AfishaDisplayHeadline';
  font-size: 2.75rem;
  background: -webkit-gradient(linear, left top, right top, from(#b1ee58), color-stop(96.22%, #4bef4b)),
    -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#ffffff));
  background: -o-linear-gradient(left, #b1ee58 0%, #4bef4b 96.22%), -o-linear-gradient(bottom, #ffffff, #ffffff);
  background: linear-gradient(90deg, #b1ee58 0%, #4bef4b 96.22%), linear-gradient(0deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .promotions_sber {
    font-size: 1.75rem;
  }
}
.greyCard__container {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  max-width: 1128px;
}
.greyCard {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin: 80px 0 0 0;
  padding: 24px 24px 0 24px;
  border-radius: 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.greyCard p {
  max-width: 536px;
}

@media (max-width: 768px) {
  .greyCard {
    margin: 12px 0;
    padding: 16px 16px 0 16px;
  }
}
.greyCard_xlarge {
  padding: 43px 78px 0 78px;
}
.greyCard_xlarge h5 {
  margin: 8px 0;
}
@media (max-width: 768px) {
  .greyCard_xlarge {
    padding: 16px 16px 0 16px;
  }
}
.greyCard_small {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  min-width: 316px;
  padding: 16px 24px 32px 24px;
}
@media (max-width: 768px) {
  .greyCard_small {
    min-width: 271px;
    text-align: left;
    padding: 24px 16px;
  }
}
.greyCard_medium {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 3%;
}
@media (max-width: 768px) {
  .greyCard_medium {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: unset;
  }
}
@media (min-width: 768px) {
  .greyCard_medium > div {
    max-width: 48.5%;
  }
}
.greyCard_large {
  padding: 16px 16px 0 16px;
  gap: 32px;
}
.greyCard__pic_small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  height: 56px;
}
.greyCard__pic {
  width: 90%;
}
@media (max-width: 768px) {
  .greyCard__pic {
    width: 105%;
  }
  .greyCard__pic_small {
    height: 44px;
  }
}
.greyCard__pic_medium8 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 16px;
}
.greyCard__img_medium8 {
  position: relative;
  right: -24px;
}
@media (max-width: 768px) {
  .greyCard__img_medium8 {
    right: -16px;
  }
}
.greyCard__pic_medium9 {
  position: relative;
  bottom: -5%;
}
.greyCard__img_large {
  position: relative;
  bottom: -45px;
}
@media (max-width: 768px) {
  .greyCard__img_large {
    bottom: -25px;
  }
}
.greyCard__number {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 4px;
  background: #fff;
  text-align: center;
  font-size: 1.125rem;
  line-height: 2.4rem;
}
@media (max-width: 768px) {
  .greyCard__number {
    width: 32px;
    height: 32px;
    font-size: 0.975rem;
    line-height: 1.4rem;
  }
}
.review {
  margin: 205px 0 84px 0;
}
@media (max-width: 768px) {
  .review {
    margin: 44px 0 50px 0;
  }
}
.review__name {
  font-family: 'Suisse';
  margin-top: 37px;
  font-weight: 600;
}
.review__pic {
  width: 72px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .review__pic {
    width: 48px;
  }
}
.review-arrow {
  height: 5rem;
}
.footer__content {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
  max-width: 628px;
}
@media (max-width: 768px) {
  .footer__content {
    gap: 32px;
    padding: 32px 0;
  }
}
.footer__logo {
  height: 128px;
  width: 128px;
}
@media (max-width: 768px) {
  .footer__logo {
    width: 80px;
  }
}
.footer__address {
  font-family: 'Suisse';
  margin-top: 20px;
  font-weight: 600;
}
.footer__address .mail {
  padding-right: 20px;
}
.copyright {
  margin: 60px 0 60px 0;
}
@media (max-width: 768px) {
  .copyright {
    margin: 42px 0 34px 0;
  }
}
.copyright p {
  text-align: center;
  color: #808080;
  font-size: 14px;
}
.slider-wrapper {
  margin: 1rem;
  position: relative;
  overflow: hidden;
  padding: 40px;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .slider-wrapper.slider-wrapper_promotions {
    padding: 0;
    margin: 1rem 0;
  }
}
@media (max-width: 768px) {
  .slider-wrapper {
    padding: 0;
    margin: 1rem 0;
  }
}
.slides-container {
  height: 100%;
  width: 100%;
  display: flex;
  overflow: scroll;
  scroll-behavior: smooth;
  list-style: none;
  margin: 0;
  padding: 0;
}
.promotions-arrow {
  height: initial;
}
.promotions-arrow:hover,
.promotions-arrow:focus {
  opacity: 1;
}
@media (min-width: 1440px) {
  .promotions-arrow.arrow-prev {
    left: calc(50vw - 1440px / 2 + 32px);
  }
  .promotions-arrow.arrow-next {
    right: calc(50vw - 1440px / 2 + 32px);
  }
}
.slide {
  flex: 1 0 100%;
}
.promotions.slide {
  flex: 1 0 calc(100% + 24px);
}
@media (max-width: 1023px) {
  .promotions.slide.full-width {
    flex: unset;
    margin: 0 8px;
  }
  .promotions.slide.full-width:first-child {
    margin-left: 40px;
  }
  .promotions.slide.full-width:last-child {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .slide.full-width {
    flex: unset;
    margin: 0 8px;
  }
  .slide.full-width:first-child {
    margin-left: 16px;
  }
  .slide.full-width:last-child {
    padding-right: 16px;
  }
}
.cardsScroll {
  position: relative;
  width: 100vw;
}
.cardsScroll .slides-container {
  padding: 0 calc((100vw - 1128px) / 2);
}
@media (max-width: 1208px) {
  .cardsScroll .slides-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .cardsScroll .slides-container {
    padding: 0 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 1%;
  }
}
.cardsScroll:hover::before {
  opacity: 1;
}
.cardsScroll::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: -1px;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  width: 15%;
  opacity: 0;
  transition: 0.3s;
}
.cardsScroll:hover::after {
  opacity: 1;
}
.cardsScroll::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: -1px;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  width: 15%;
  opacity: 0;
  transition: 0.3s;
}
.cardsScroll_arrow.showOnHover {
  opacity: 1;
}
.cardsScroll_arrow {
  opacity: 0;
  transition: 0.5s;
  margin: 0 16px;
}
@media (max-width: 768px) {
  .cardsScroll {
    max-width: unset;
  }
  .cardsScroll:before,
  .cardsScroll:after {
    display: none;
  }
}
.cardsScroll .cardsScrollContent {
  overflow-x: scroll;
  position: relative;
}
/* fix horizontal scrolls */
@media (max-width: 768px) {
  .conditions__card:last-child:after {
    content: '';
    width: 1px;
    height: 50px;
    display: block;
    flex-shrink: 0;
    position: absolute;
    right: -16px;
  }
}
/* show on scroll */
.onScrollAnimation.slideTop {
  object-position: 0 100px;
}
.onScrollAnimation.slideLeft {
  object-position: 300px 0;
}
.onScrollAnimation.slide9 {
  transform: scale(0.5);
}
.onScrollAnimation.scale {
  transform: scale(0.5);
}
.onScrollAnimation.slideTop.scrolled {
  object-position: 0 0;
  transition: object-position 0.3s ease-in-out;
}
.onScrollAnimation.slideLeft.scrolled {
  object-position: 0 0;
  transition: object-position 0.3s ease-in-out;
}
.onScrollAnimation.slide9.scrolled {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.onScrollAnimation.scale.scrolled {
  transform: scale(1);
  transition: transform 1s ease-in-out;
}
.successCard {
  align-items: center;
  top: 35%;
  height: 187px;
  padding-top: 50px;
}
.successHeader {
  font-size: 30px;
}
#comments {
  display: none;
}
.applyButton:hover,
.formCard__submitButton:hover {
  background-color: #f41212;
  transition: background-color 0.3s;
}
.topContacts a:hover {
  color: #f41212;
  transition: color 0.3s;
}
#step1:hover {
  opacity: 0;
  transition: opacity 1s;
}
.ticker {
  display: flex;
  overflow: hidden;
}
.ticker__list {
  display: flex;
  margin-top: 20px;
  animation: ticker 30s infinite linear;
}
.ticker:hover .ticker__list {
  animation-play-state: paused;
}
.ticker__item {
  margin-right: 20px;
}
@-moz-keyframes ticker {
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes ticker {
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes ticker {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes ticker {
  100% {
    transform: translateX(-100%);
  }
}
#greycard-arrow-prev {
  display: none;
}
#slides-container_promotions {
  padding-top: 150px !important;
  padding-bottom: 50px !important;
}
@media (max-width: 1023px) {
  #slides-container_promotions {
    padding-top: 50px !important;
  }
}
.tlogo {
  text-align: center;
  align-self: center;
}
.tlogo img {
  width: 100px;
}
.tlogo9 img {
  width: 150px;
}
.splide__slide {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.splide2 {
  margin-bottom: 60px;
}
.formFooter {
  position: fixed;
  left: 0;
  bottom: 0;
  height: 7%;
  width: 100%;
  background-color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formFooter label {
  font-size: 12px;
  display: flex;
}
.formFooter input {
  accent-color: black;
  margin-right: 10px;
}

.formFooter label a {
  color: #f41212;
}

#footer-privacy-policy {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: 'Suisse';
  text-decoration: underline;
  color: #808080;
}
