body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: 2;
  color: var(--primary-text);
  background: var(--background);
}
body.admin-bar {
  --adminbar-offset: 32px;
}

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

.img-cover {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

#main-wrapper {
  padding: 15px;
}

.site-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.floatingPagination button {
  border: none;
  position: absolute;
  transition: var(--transition);
}
.floatingPagination button:hover {
  opacity: 0.7;
}
.floatingPagination button.pagination-prev {
  left: -65px;
}
.floatingPagination button.pagination-next {
  right: -65px;
}

.paginationButtons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginationButtons__prev {
  border: none;
  outline: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.paginationButtons__prev:hover {
  opacity: 0.7;
}
.paginationButtons__next {
  border: none;
  outline: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.paginationButtons__next:hover {
  opacity: 0.7;
}
.paginationButtons .site-button {
  margin: 0 22px;
  flex-shrink: 0;
}

.site-heading {
  display: inline-block;
}
.site-heading h2,
.site-heading h1 {
  color: #000;
  text-align: center;
}
.site-heading h2 small,
.site-heading h1 small {
  font-size: 13px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  display: block;
  font-family: var(--font-family-default);
  color: var(--primary-text);
}
.site-heading h2 span,
.site-heading h1 span {
  display: block;
  font-family: var(--font-family-title);
  font-size: 50px;
  line-height: 1;
  padding: 11px 0 0 0;
  color: var(--primary-text);
}
.site-heading h2 em,
.site-heading h1 em {
  font-size: 16px;
  letter-spacing: 8px;
  font-weight: 600;
  font-style: normal;
  display: block;
  font-family: var(--font-family-default);
  padding: 5px 0 0;
  color: var(--primary-text);
}
.site-heading-white h2 {
  color: #fff;
}
.site-heading-white h2 span {
  color: #fff;
}
.site-heading-white h2 small {
  color: #fff;
}

.site-button {
  display: inline-block;
}
.site-button-submit,
.site-button a {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  transition: var(--transition);
  padding: 19px 55px;
  background: var(--primary);
  border: 1px solid var(--primary);
}
.site-button-submit:hover, .site-button-submit:focus,
.site-button a:hover,
.site-button a:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
}
.site-button-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
}
.site-button-outline a {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  transition: var(--transition);
  border: 1px solid #FFF;
  padding: 19px 55px;
}
.site-button-outline a:hover {
  background: #fff;
  color: #000;
}
.site-button-white a {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
  transition: var(--transition);
  padding: 19px 55px;
  background: #fff;
  border: 1px solid #fff;
}
.site-button-white a:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.header {
  position: fixed;
  left: 0;
  top: var(--adminbar-offset, 0);
  width: 100%;
  height: auto;
  z-index: 999;
  padding: 39px 33px;
  transition: var(--transition);
}
.header--fixed {
  background: var(--primary);
  padding-top: 24px;
  padding-bottom: 24px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__logo {
  max-width: 174px;
}
.header__logo a {
  display: block;
}
.header__navigation {
  display: none;
}
.header__navigation div > ul > li {
  position: relative;
}
.header__navigation div > ul > li a {
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  justify-content: flex-end;
  padding: 10px 20px;
  text-decoration: none;
  letter-spacing: 0.65px;
  font-weight: 500;
  line-height: 1.4;
  transition: var(--transition);
}
.header__navigation div > ul > li .sub-menu {
  display: none;
}
.header__navigation div > ul > li .sub-menu > li {
  position: relative;
}
.header__navigation div > ul > li .sub-menu > li a {
  background: #F3F2F9;
}
.header__navigation div > ul > li .sub-menu > li .sub-menu {
  display: none;
}
.header__navigation div > ul > li .sub-menu > li:hover > .sub-menu {
  display: block;
}
.header__navigation div > ul > li:hover a {
  background: #ffffff;
  color: #000;
}
.header__navigation div > ul > li:hover > ul {
  display: block;
}
.header__info {
  display: flex;
  align-items: center;
  gap: 19px;
}
.header__phone a {
  display: flex;
  align-items: center;
  gap: 17px;
}
.header__phone a span {
  display: none;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.header__burgerMenu {
  cursor: pointer;
}

/* Burger Menu */
.burgerMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 1001;
  transition: var(--transition);
  background: #000;
  visibility: hidden;
}
.burgerMenu.active {
  right: 0;
  visibility: visible;
}
.burgerMenu__container {
  padding: 40px 29px;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding-bottom: 80px;
}
.burgerMenu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.burgerMenu__header--phoneNumber {
  display: none;
}
.burgerMenu__header--phoneNumber a {
  display: flex;
  align-items: center;
  gap: 17px;
}
.burgerMenu__header--phoneNumber a span {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.burgerMenu__header--logo {
  width: 100%;
  flex-shrink: 0;
  max-width: 214.118px;
}
.burgerMenu__header--logo a {
  display: block;
}
.burgerMenu__header--logo a img {
  display: block;
  width: 100%;
  height: auto;
}
.burgerMenu__header--close {
  cursor: pointer;
  height: 41px;
  width: 41px;
  transition: var(--transition);
}
.burgerMenu__header--close:hover {
  opacity: 0.6;
}
.burgerMenu__nav {
  padding: 70px 0;
}
.burgerMenu__nav ul li {
  padding: 16px 0;
}
.burgerMenu__nav ul li a {
  color: #FFF;
  display: block;
  font-family: var(--font-family-title);
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 4.5px;
  text-transform: uppercase;
}
.burgerMenu__nav ul li ul {
  padding: 15px 0;
}
.burgerMenu__nav ul li ul li {
  padding: 0;
}
.burgerMenu__nav ul li ul li a {
  color: #666;
  text-align: center;
  font-family: var(--font-family-default);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}
.burgerMenu__mobilePhone a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
.burgerMenu__mobilePhone a span {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.burgerMenu__socials {
  position: absolute;
  right: 31px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  height: 100%;
}
.burgerMenu__socials::after {
  display: block;
  content: "";
  width: 1px;
  height: 110px;
  background: #fff;
}
.burgerMenu__socials h3 {
  writing-mode: vertical-rl;
  color: #fff;
  font-family: var(--font-family-default);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 7.5px;
  transform: rotate(180deg);
}
.burgerMenu__socials--links {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.burgerMenu__socials--links a {
  margin: 7.5px 0;
  display: block;
  color: #fff;
}
.burgerMenu__socials--links a span {
  display: none;
}

/* Burger Menu */
/** footer **/
.footer {
  position: relative;
  overflow: hidden;
  margin: 0 -15px;
  padding: 0 0 67px;
}
.footer__bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 72px;
  left: 0;
  background-size: cover;
  background-position: center right;
}
.footer__container {
  position: relative;
  z-index: 30;
  padding: 0 17px;
}
.footer__newsletter {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.25);
  padding: 36px 20px;
  width: 100%;
  max-width: 744px;
  margin: 0 auto;
}
.footer__newsletter--title {
  flex-shrink: 0;
  text-align: center;
}
.footer__newsletter--title h2 {
  display: inline-block;
  line-height: 1.5;
  font-size: 25px;
}
.footer__newsletter--title h2 small {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  display: block;
  font-family: var(--font-family-default);
  color: #000;
}
.footer__newsletter--title h2 span {
  font-family: var(--font-family-title);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  display: block;
  padding: 6px 0 0 34px;
  color: #000;
}
.footer__newsletterForm {
  position: relative;
  margin: 25px 0 0;
  z-index: 20;
  max-width: 307px;
  margin: 17px auto 0;
}
.footer__newsletterForm--wrap {
  position: relative;
}
.footer__newsletterForm--input {
  position: relative;
}
.footer__newsletterForm--input label {
  display: none;
}
.footer__newsletterForm--input input {
  width: 100%;
  display: block;
  height: 47px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  color: #828282;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-bottom: 1px solid #999;
  background: transparent;
}
.footer__newsletterForm--submit {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}
.footer__newsletterForm--submit input {
  position: absolute;
  z-index: 20;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 0;
  background: transparent;
  left: 0;
  top: 0;
}
.footer__newsletterForm--submit .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 50%;
}
.footer__newsletterForm .wpcf7-not-valid-tip {
  font-size: 13px;
}
.footer__newsletterForm .wpcf7-response-output {
  font-size: 13px;
  margin: 0;
}
.footer__content {
  width: 100%;
}
.footer__info {
  padding: 49px 10px 0;
}
.footer__info--social {
  display: flex;
  margin-top: 19px;
}
.footer__info--social svg path {
  fill: var(--primary-text);
}
.footer__info--social a {
  font-size: 21px;
  margin: 0 9px;
  color: var(--primary-text);
  transition: var(--transition);
}
.footer__info--social a:first-child {
  margin-left: 0;
}
.footer__info--social a span {
  display: none;
}
.footer__info--social a:hover {
  color: var(--secondary-text);
}
.footer__logo {
  width: 100%;
  max-width: 274px;
  margin: 0 auto;
  padding: 63.5px 0 0;
}
.footer__logo img {
  display: block;
  width: 100%;
}
.footer__contactInfo ul li {
  display: flex;
  font-weight: 400;
  font-size: 13px;
  align-items: flex-start;
  letter-spacing: 0.65px;
  line-height: 1.5;
  padding: 6px 0;
  color: var(--primary-text);
}
.footer__contactInfo ul li svg {
  margin-right: 8px;
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer__contactInfo ul li a {
  color: var(--primary-text);
}
.footer__contactInfo ul li a:hover {
  color: var(--secondary-text);
}
.footer__menu {
  width: 265px;
}
.footer__menu ul {
  display: flex;
  flex-flow: row wrap;
  padding: 34px 0 0;
  margin: 0 -24.5px;
}
.footer__menu ul li {
  padding: 16px 24.5px;
}
.footer__menu ul li a {
  width: 108px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  color: var(--primary-text);
  transition: var(--transition);
}
.footer__menu ul li a:hover {
  color: var(--seconmdary-text);
}
.footer__bottom {
  padding: 70px 0 0;
}
.footer__bottom--disclaimer p {
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary-text);
}
.footer__bottom--copyright {
  padding: 24px 0 0;
}
.footer__bottom--copyright p {
  font-size: 12px;
  color: var(--secondary-text);
  font-weight: 400;
}
.footer__bottom--copyright p a {
  font-weight: 600;
  color: var(--secondary-text);
}
.footer__bottom--logos {
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  color: var(--primary-text);
}
.footer__bottom--logos .brokerage-logo img {
  width: 100%;
  display: block;
  height: auto;
  max-width: 78px;
}
.footer__bottom--logos .realtorsLogos {
  padding-left: 20px;
  display: flex;
}
.footer__bottom--logos .realtorsLogos i {
  font-size: 28px;
  font-style: normal;
  margin: 0 8px;
}
.footer__bottom--logos .realtorsLogos i:first-child {
  margin-left: 0;
}

.site-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}
.site-pagination .page-numbers {
  color: #000;
}
.site-pagination .page-numbers:not(.next, .prev) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all var(--default-transition);
}
.site-pagination .page-numbers:not(.next, .prev):not(.dots).current, .site-pagination .page-numbers:not(.next, .prev):not(.dots):hover {
  background-color: #000;
  color: #fff;
}

.globForm {
  max-width: 729px;
  margin: 0 auto;
}
.globForm__field {
  position: relative;
  margin-bottom: 20px;
}
.globForm__field label {
  display: none;
  font-family: var(--font-family-default);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}
.globForm__field input[type=text],
.globForm__field input[type=email],
.globForm__field input[type=number],
.globForm__field input[type=tel],
.globForm__field textarea {
  display: block;
  padding: 10px 8px;
  width: 100%;
  height: 48px;
  border: 0;
  border-bottom: 1px solid #9A9A9A;
  border-radius: 0;
  font-family: var(--font-family-default);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}
.globForm__field textarea {
  padding: 12px 16px;
  border: 1px solid #9A9A9A;
  height: 130px;
}
.globForm__field--message {
  padding-top: 27px;
}
.globForm__field--checkbox {
  margin-top: -4px;
}
.globForm__field--checkbox label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.globForm__field--checkbox label span {
  position: static;
}
.globForm__field--checkbox label span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12.6111L8.92308 17.5L20 6.5' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  transition: opacity var(--default-transition);
  opacity: 0;
}
.globForm__field--checkbox label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  margin: 0;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid #525252;
}
.globForm__field--checkbox label input:checked + span::before {
  opacity: 1;
}
.globForm__field--button {
  padding-top: 12px;
  margin: 0;
  display: flex;
  justify-content: center;
}
.globForm__field--button .wpcf7-spinner {
  position: absolute;
  top: 30px;
  right: 0;
}
.globForm__field .wpcf7-response-output {
  margin: 0 !important;
}
.globForm__field .wpcf7-not-valid-tip {
  padding: 4px 8px 0;
  font-size: 13px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.globForm__field .wpcf7-list-item {
  margin-left: 0;
}
@media screen and (min-width: 744px) {
  .paginationButtons__prev {
    display: none;
  }
  .paginationButtons__next {
    display: none;
  }
  .site-heading h2 small,
  .site-heading h1 small {
    font-size: 14px;
    letter-spacing: 8px;
  }
  .site-heading h2 span,
  .site-heading h1 span {
    font-size: 80px;
  }
  .header {
    padding: 43px 64px;
  }
  .header--fixed {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .header__logo {
    max-width: 236px;
  }
  .header__info {
    gap: 55px;
  }
  .header__phone a span {
    display: block;
  }
  .burgerMenu__container {
    padding: 49px 80px;
  }
  .burgerMenu__header--right {
    display: flex;
    align-items: center;
  }
  .burgerMenu__header--phoneNumber {
    display: block;
    margin-right: 67px;
  }
  .burgerMenu__nav > div {
    display: flex;
    justify-content: space-between;
  }
  .burgerMenu__nav ul li a {
    text-align: left;
  }
  .burgerMenu__nav ul li ul {
    padding-left: 20px;
  }
  .burgerMenu__nav ul li ul li a {
    text-align: left;
  }
  .burgerMenu__mobilePhone {
    display: none;
  }
  .footer__bg {
    top: 32px;
  }
  .footer__container {
    padding: 0 74px;
  }
  .footer__newsletter--title h2 small {
    font-size: 14px;
    letter-spacing: 7px;
  }
  .footer__newsletter--title h2 span {
    padding-left: 0;
  }
  .footer__info {
    display: flex;
    justify-content: space-between;
    padding: 57px 0 0;
  }
  .footer__logo {
    max-width: 376px;
  }
  .footer__contactInfo {
    padding: 0;
  }
  .footer__menu ul {
    padding: 0;
  }
  .footer__bottom {
    padding: 35px 0 0;
  }
  .footer__bottom--logos {
    padding: 41px 0 0;
  }
  .footer__bottom--logos .brokerage-logo img {
    max-width: 105px;
  }
  .footer__bottom--logos .realtorsLogos i {
    font-size: 37px;
  }
  .site-pagination {
    gap: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    padding-left: 57px;
    padding-right: 57px;
  }
  .header--fixed {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header__info {
    gap: 66px;
  }
  .burgerMenu {
    max-width: 700px;
  }
  .burgerMenu__header--phoneNumber {
    margin-right: 41px;
  }
  .footer {
    margin: 0;
  }
  .footer__container {
    padding: 0 72px;
  }
  .footer__newsletter > div {
    display: flex;
    align-items: center;
    padding: 71px 68px;
  }
  .footer__newsletter--title {
    text-align: left;
  }
  .footer__newsletterForm {
    margin: 0;
    padding-left: 74px;
    width: 100%;
    max-width: 100%;
  }
  .footer__info {
    padding: 37px 0 0;
  }
  .footer__logo {
    margin: 0;
    padding: 35px 0 0;
  }
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 39px 0 0;
  }
  .footer__bottom--copyright {
    padding: 12px 0 0;
  }
  .footer__bottom--logos {
    padding: 0;
  }
  .footer__bottom--logos {
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-left: 46px;
  }
  .footer__bottom--logos .brokerage-logo img {
    max-width: 116px;
    padding-bottom: 22px;
  }
  .footer__bottom--logos .realtorsLogos i {
    font-size: 47px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .site-heading h2 small,
  .site-heading h1 small {
    font-size: 18px;
    letter-spacing: 9px;
  }
  .site-heading h2 span,
  .site-heading h1 span {
    font-size: 90px;
  }
  .header {
    padding-left: 100px;
    padding-right: 100px;
  }
  .header__logo {
    max-width: 260px;
  }
  .header__navigation div > ul {
    display: flex;
  }
  .header__navigation div > ul > li .sub-menu {
    padding: 11px 0 0;
    list-style: none outside none;
    margin: 0;
    position: absolute;
    left: 50%;
    width: auto;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 30px);
    transition: transform 0.3s, opacity 0.3s, visibility, 0.3s;
    display: block;
    min-width: 200px;
  }
  .header__navigation div > ul > li .sub-menu > li a {
    white-space: nowrap;
    width: 100%;
    color: #000;
    text-align: left;
    font-size: 14px;
    padding: 8px 14px;
    line-height: 1.5;
    transition: var(--transition);
    display: flex;
  }
  .header__navigation div > ul > li .sub-menu > li .sub-menu {
    left: 100%;
    top: 0;
    padding-left: 2px;
  }
  .header__navigation div > ul > li .sub-menu > li:hover > a {
    white-space: nowrap;
    width: 100%;
    color: #000;
    display: block;
    text-align: left;
    font-size: 14px;
    padding: 8px 14px;
    line-height: 1.5;
    transition: var(--transition);
    display: flex;
    background: var(--primary);
    color: #fff;
  }
  .header__navigation div > ul > li .sub-menu > li:hover > a .navArrowMob {
    transform: rotate(180deg);
  }
  .header__navigation div > ul > li .sub-menu > li:hover > a .navArrowMob path {
    fill: #fff;
  }
  .header__navigation div > ul > li .sub-menu > li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
    z-index: 20;
    pointer-events: auto;
    padding-top: 0;
  }
  .header__navigation div > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate(-50%, 0);
  }
  .header__navigation div > ul > li:hover > ul li {
    padding: 0;
  }
  .header__navigation div > ul > li:hover > ul li a .navArrowMob {
    display: none;
  }
  .header__navigation div > ul > li:hover > ul li a .navArrowDest path {
    fill: #000;
  }
  .header__navigation {
    display: block;
  }
  .footer__bg {
    top: 30px;
  }
  .footer__container {
    padding: 0 121px;
  }
  .footer__upper {
    display: flex;
    flex-flow: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer__newsletter {
    max-width: 392px;
  }
  .footer__newsletter > div {
    flex-flow: column;
    margin: 0;
    flex-shrink: 0;
    padding: 103px 28px;
  }
  .footer__newsletter--title h2 span {
    font-size: 50px;
  }
  .footer__newsletterForm {
    padding: 0;
    margin: 57px 0 0;
  }
  .footer__content {
    padding: 86px 197px 0 0;
  }
  .footer__info {
    padding: 40px 0 0;
  }
  .footer__menu {
    width: auto;
    margin-top: -89px;
  }
  .footer__menu ul {
    justify-content: space-between;
    flex-flow: column;
  }
  .footer__bottom--logos {
    padding-left: 206px;
  }
}