html {
  scroll-behavior: smooth;
}

:root {
  /* Colors */
  --white: #fff;
  --black: #000916;
  --gray: #3f3f3f;
  --lightgray: #6c757d;
  --blue: #012e6f;
  --lightblue: #ddeefd;

  /* Animation */
  --transition-dur-and-func: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", serif !important;
}

body {
  margin: 0;
  background-color: var(--white, #ffffff);
  color: var(--black, #000916);
  font-style: normal;
  font-family: "Montserrat", serif !important;
}

main,
footer {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a,
button {
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  padding: 0;
}

img {
  padding: 0;
  margin: 0;
}

.hidden-element {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.page-container {
  width: 100%;
  min-width: 320px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: auto;
  margin-right: auto;
}

.page-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* MOBILE */
@media screen and (min-width: 375px) {
  .page-container {
    min-width: 375px;
    width: 100%;
    /* max-width: 480px; */
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* TABLET */
@media screen and (min-width: 768px) {
  .page-container {
    width: 768px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* DESKTOP */
@media screen and (min-width: 1280px) {
  .page-container {
    width: 100%;
    min-width: 1280px;
    max-width: 1440px;
    padding-left: 100px;
    padding-right: 100px;
  }
  .page-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* FULL */
@media screen and (min-width: 1920px) {
  .page-container {
    width: 1920px;
    min-width: 1920px;
    max-width: 1920px;
    padding-left: 300px;
    padding-right: 300px;
  }
}

.page-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #003988;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.18);
  color: var(--white, #fff);
  display: flex;
  align-items: center;
  height: 66px;
}

.header-container__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 146px;
}

.page-header .header-container .burger-btn {
  display: flex;
  margin: 0 0 0 auto;
  min-height: fit-content;
}

.page-header .header-container .header-logo,
.page-header .header-container .header-logo img {
  width: 101px;
  height: 55.62px;
}

.page-header .header-container .header-menu {
  display: none;
  align-items: center;
  gap: 40px;
  margin: 0;
}

.page-header .header-container .header-menu li {
  margin: 0;
}

.page-header .header-container .header-menu a {
  color: var(--white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  transition: var(--transition-dur-and-func);
}

.page-header .header-container .header-menu li:last-child div {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 40px;
}

.page-header .header-container .header-menu li:last-child div .signup-btn {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid #012e6f;
  background: var(--white, #fff);
  color: #012e6f;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.burger-menu .header-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.burger-menu .header-menu a {
  color: var(--white, #fff);
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  transition: var(--transition-dur-and-func);
}

.burger-menu .header-menu li:last-child div {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.burger-menu .header-menu li:last-child div .signup-btn {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid #012e6f;
  background: var(--white, #fff);
  color: #012e6f;
  text-align: center;
  font-size: 15px;
  line-height: normal;
  font-weight: 500;
}

.page-header .header-container .header-menu a:hover,
.page-header .header-container .header-menu a:focus,
.burger-menu .burger-container .nav-menu a:hover,
.burger-menu .burger-container .nav-menu a:focus {
  color: #c8e2f9;
}

.burger-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: #003988;
  color: #fff;
  transition: opacity 600ms ease-in-out, visibility 600ms ease-in-out;
  padding-top: 98px;
}

.burger-menu.active {
  opacity: 1;
  visibility: visible;
  z-index: 998;
  overflow: scroll;
}

.burger-icon rect {
  transition: var(--transition-dur-and-func);
}

.burger-icon.active #line0 {
  opacity: 0;
}

.burger-icon.active #line1 {
  transform: rotate(45deg) translate(-0.5px, 10px);
  transform-origin: center;
}

.burger-icon.active #line2 {
  transform: rotate(-45deg) translate(0px, -10.5px);
  transform-origin: center;
}

@media screen and (min-width: 1280px) {
  .page-header {
    background-color: transparent;
    box-shadow: none;
    height: 92px;
  }
  .page-header .header-container .burger-btn {
    display: none;
  }
  .page-header .header-container .header-logo,
  .page-header .header-container .header-logo img {
    width: 167px;
    height: 92px;
  }
  .page-header .header-container .header-menu {
    display: flex;
  }
  .burger-menu {
    display: none;
  }
}

/* hero section */
.hero-section {
  padding-top: 96px;
  background-color: var(--blue, #012e6f);
  background-image: url(./images/banner-bg.svg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white, #fff);
}

.hero-section .hero-section-title {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 36px;
  color: var(--white, #fff);
}

.hero-section .hero-section-title strong {
  font-size: 21px;
  font-weight: 700;
  line-height: 142.857%;
}

.hero-section .hero-section-currencies {
  display: flex;
  align-items: center;
  height: 112px;
  width: 100%;
  margin-bottom: 36px;
}

.hero-section .hero-section-currencies-decs {
  display: none;
}

.hero-section .hero-section-currencies-mob {
  display: flex;
}

.hero-section .hero-section-img {
  width: 100%;
  max-width: 500px;
  display: flex;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .hero-section .hero-section-currencies-decs {
    display: flex;
  }

  .hero-section .hero-section-currencies-mob {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .hero-section {
    padding-top: 305px;
    position: relative;
  }
  .hero-section .hero-section-title {
    text-align: left;
    font-size: 36px;
    line-height: normal;
    margin-bottom: 132px;
  }
  .hero-section .hero-section-title strong {
    font-size: 40px;
    line-height: normal;
  }
  .hero-section .hero-section-currencies {
    height: 112px;
    width: 100%;
    margin-bottom: 0;
  }
  .hero-section .hero-section-img {
    position: absolute;
    top: -10%;
    right: 15%;
  }
}

/* features section */

.features-section {
  background-color: var(--lightblue, #ddeefd);
  color: var(--black, #000916);
}

.features-section .features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.features-section .features-container > div {
  width: 100%;
}

.features-section .features-section-title {
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  line-height: 152.381%;
  margin-bottom: 16px;
  color: var(--black, #000916);
}

.features-section .features-section-text {
  color: var(--gray, #3f3f3f);
  text-align: center;
  font-size: 15px;
  line-height: 173.333%;
  margin-bottom: 16px;
}

.features-section .features-section-tab-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.features-section .features-section-tab-list .tab {
  cursor: pointer;
  display: flex;
  padding: 10px 0px;
  border-radius: 30px;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  transition: var(--transition-dur-and-func);
  margin-bottom: 0;
}

.features-section .features-section-tab-list .tab.active {
  background-color: var(--white, #fff);
  padding: 10px 29px;
}

.features-section .features-section-description {
  display: flex;
  width: 100%;
  max-width: 386px;
  margin: 0 auto;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: var(--blue, #012e6f);
  color: #f7f7f7;
  text-align: center;
  font-size: 17px;
  line-height: 152.941%;
  margin-bottom: 8px;
}

.features-section .features-section-img {
  width: 100%;
  max-width: 700px;
  position: relative;
  padding-bottom: 66.8%;
}

.features-section .features-section-img.features-section-img-desc {
  display: none;
}

.features-section .content-section {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 1s ease;
}

.features-section .content-section.active {
  visibility: visible;
  position: relative;
  opacity: 1;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1280px) {
  .features-section .features-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0;
  }
  .features-section .features-container > div {
    width: 50%;
  }
  .features-section .features-section-title {
    text-align: left;
    font-size: 39px;
    line-height: 130.769%;
  }
  .features-section .features-section-text {
    text-align: left;
    font-size: 16px;
    line-height: 175%;
    max-width: 542px;
    margin-bottom: 20px;
  }
  .features-section .features-section-tab-list {
    align-items: flex-start;
  }
  .features-section .features-section-tab-list .tab {
    font-size: 23px;
    line-height: 147.826%;
  }
  .features-section .features-container > div:last-child {
    position: relative;
    margin-right: 125px;
  }
  .features-section .features-container .features-section-description {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin-bottom: 0;
  }
  .features-section .features-container .features-section-description::before {
    position: absolute;
    content: "";
    top: -88px;
    right: 8px;
    width: 64px;
    height: 64px;
    background-image: url(./images/circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .features-section .features-section-img.features-section-img-desc {
    display: flex;
  }
  .features-section .features-section-img.features-section-img-mob {
    display: none;
  }
}

/* how-it-works section */

.how-section .how-section-title {
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  line-height: 152.381%;
  margin-bottom: 8px;
  color: var(--black, #000916);
}

.how-section .how-section-text {
  color: var(--gray, #3f3f3f);
  text-align: center;
  font-size: 15px;
  line-height: 173.333%;
  margin-bottom: 24px;
}

.how-section .how-section-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-section .how-section-list .how-section-item {
  display: flex;
  flex-direction: column;
  padding: 98px 16px 24px 16px;
  gap: 5px;
  border-radius: 30px;
  border: 1px solid #e4e5e7;
  position: relative;
  margin-bottom: 0;
}

.how-section .how-section-list .how-section-item::before {
  position: absolute;
  content: "";
  top: 16px;
  left: 16px;
  display: flex;
  width: 70px;
  height: 70px;
  padding: 20px 21px;
  justify-content: center;
  align-items: center;
  border-radius: 150px;
  border: 1px solid #ddeefd;
  background: #ddeefd;
  background-image: url(./images/how3.svg);
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center center;
}

.how-section .how-section-list .how-section-item:first-child:before {
  background-image: url(./images/how2.svg);
}

.how-section .how-section-list .how-section-item:last-child:before {
  background-image: url(./images/how4.svg);
}

.how-section .how-section-list .how-section-item > h3 {
  font-size: 17px;
  font-weight: 800;
  line-height: normal;
  color: var(--black, #000916);
  margin-bottom: 0;
}

.how-section .how-section-list .how-section-item > p {
  color: #3f3f3f;
  font-size: 15px;
  line-height: 173.333%;
}

@media screen and (min-width: 1280px) {
  .how-section.page-section {
    padding-top: 0;
  }
  .how-section > .page-container {
    padding-top: 60px;
    background-image: url(./images/bgi.svg);
    background-size: calc(100% - (100px * 2));
    background-repeat: no-repeat;
    background-position: center 0;
  }
  .how-section .how-section-title {
    font-size: 39px;
    line-height: 130.769%;
    margin-bottom: 16px;
  }
  .how-section .how-section-text {
    font-size: 16px;
    line-height: 175%;
    margin: 0 auto;
    max-width: 542px;
    margin-bottom: 0;
  }
  .how-section .how-section-list {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }

  .how-section .how-section-list .how-section-item {
    width: 296px;
    padding: 154px 0 0;
    gap: 8px;
    border: none;
  }
  .how-section .how-section-list .how-section-item:nth-child(2n) {
    margin-top: 159px;
  }
  .how-section .how-section-list .how-section-item::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 142px;
    height: 142px;
    background-size: 58px 58px;
  }
  .how-section .how-section-list .how-section-item > h3 {
    text-align: center;
    font-size: 21px;
    line-height: 142.857%;
  }

  .how-section .how-section-list .how-section-item > p {
    text-align: center;
    font-size: 16px;
    line-height: 175%;
  }
}

@media screen and (min-width: 1920px) {
  .how-section > .page-container {
    background-size: calc(100% - (300px * 2));
  }
}

/* about-section */
.about-section {
  background-color: var(--lightblue, #ddeefd);
  color: var(--black, #000916);
}

.about-section .about-section-title {
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  line-height: 152.381%;
  margin-bottom: 16px;
  color: var(--black, #000916);
}

.about-section .about-section-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.about-section .about-section-text {
  color: var(--gray, #3f3f3f);
  text-align: justify;
  font-size: 15px;
  line-height: 173.333%;
  margin-bottom: 0;
}

.about-section .about-section-text:not(:first-child) {
  display: none;
}

.about-section .about-section-text .dots {
  display: block;
}

.about-section-button {
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 500;
  line-height: 173.333%;
  text-decoration: underline;
}

@media screen and (min-width: 1280px) {
  .about-section .about-section-title {
    font-size: 39px;
    line-height: 130.769%;
    margin-bottom: 24px;
  }
  .about-section .about-section-list {
    gap: 24px;
    margin-bottom: 0;
  }
  .about-section .about-section-text {
    font-size: 16px;
    line-height: 175%;
  }
  .about-section .about-section-text:not(:first-child) {
    display: block;
  }
  .about-section .about-section-text .dots {
    display: none;
  }
  .about-section-button {
    display: none;
  }
}

/* reviews-section */
.reviews-section .reviews-section-title {
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  line-height: 152.381%;
  margin-bottom: 8px;
  color: var(--black, #000916);
}

.reviews-section .reviews-section-text {
  color: var(--gray, #3f3f3f);
  text-align: center;
  font-size: 15px;
  line-height: 173.333%;
  margin-bottom: 16px;
}

.reviews-section .reviews-section-wrapper-img {
  margin-top: 16px;
  width: 100%;
  height: auto;
}

.reviews-section .reviews-section-item {
  display: flex;
  height: 344px;
  padding: 16px;
  gap: 16px;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
  background: #dbecfb;
  color: #3f3f3f;
  font-size: 15px;
  line-height: 173.333%;
}

.reviews-section .reviews-section-item > p {
  padding-top: 55px;
  position: relative;
  margin-bottom: 0;
}

.reviews-section .reviews-section-item > p::before {
  position: absolute;
  content: "";
  width: 51.991px;
  height: 55.11px;
  top: 0;
  left: 0;
  background-image: url(./images/quotes.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.reviews-section .reviews-section-item .reviews-section-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000916;
  font-size: 17px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

.reviews-section .reviews-section-item .reviews-section-name h3 {
  color: #000916;
  font-size: 17px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  width: fit-content;
}

.reviews-section .reviews-section-item .reviews-section-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}

.reviews-section .swiper {
  padding-bottom: 16px;
}

.reviews-section-slider {
  margin-bottom: 0;
}

.reviews-section-item {
  margin-bottom: 0;
}

.reviews-section-item p {
  margin-bottom: 0;
}

.reviews-section .swiper .swiper-pagination-bullets {
  position: relative;
  bottom: -18px;
}

.reviews-section .swiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 7.5px;
  background: #ccc;
  margin: 0 6px;
  opacity: 1;
  cursor: pointer;
  transition: var(--transition-dur-and-func);
}

.reviews-section .swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #dbecfb;
}

@media screen and (min-width: 1280px) {
  .reviews-section .reviews-section-title {
    font-size: 39px;
    line-height: 130.769%;
    margin-bottom: 16px;
  }
  .reviews-section .reviews-section-text {
    font-size: 16px;
    line-height: 175%;
    margin: 0 auto;
    max-width: 542px;
    margin-bottom: 32px;
  }
  .reviews-section .reviews-section-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 36px;
  }
  .reviews-section .reviews-section-wrapper-img {
    margin-top: 0;
    width: calc((100% - 36px) / 2);
  }
  .reviews-section .reviews-section-item {
    height: 292px;
    padding: 25px 32px;
    font-size: 16px;
    line-height: 175%;
  }
  .reviews-section .reviews-section-item .reviews-section-name {
    gap: 12px;
    font-size: 21px;
    line-height: 142.857%;
  }
  .reviews-section .swiper {
    padding-bottom: 26px;
  }
  .reviews-section .swiper .swiper-pagination-bullets {
    bottom: -8px;
  }
}

/* contact-section */
.contact-section {
  background-color: var(--lightblue, #ddeefd);
  color: var(--black, #000916);
}

.contact-section .page-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-section .contact-section-title {
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  line-height: 152.381%;
  margin-bottom: 8px;
  color: var(--black, #000916);
}

.contact-section .contact-section-text {
  color: var(--gray, #3f3f3f);
  text-align: center;
  font-size: 15px;
  line-height: 173.333%;
}

.contact-section .contact-section-img {
  width: 100%;
  max-width: 500px;
  display: flex;
  margin: 0 auto;
}

.contact-section-form {
  display: flex;
  flex-direction: column;
  padding: 40px 16px;
  gap: 16px;
  border-radius: 30px;
  background: #fff;
}

.contact-section-form .contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-section-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-section-form .contact-section-btn {
  display: flex;
  padding: 17px 33px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid #012e6f;
  background: #012e6f;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: normal;
  font-weight: 500;
  margin-right: auto;
  margin-bottom: 0;
}

.contact-section .contact-section-form label {
  color: #000916;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
}

.contact-section .contact-section-form label b {
  color: #ff2f2f;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.contact-section .contact-section-form input,
.contact-section .contact-section-form textarea {
  width: 100%;
  padding: 14px 12px;
  font-size: 14px;
  border-radius: 16px;
  border: 1px solid #ced4da;
  background: transparent;
  height: fit-content;
  box-shadow: unset;
  margin-bottom: 0;
  font-family: "Montserrat", serif !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-section .contact-section-form textarea {
  height: 220px;
  resize: vertical !important;
}

.contact-section .contact-section-form input.error::placeholder,
.contact-section .contact-section-form textarea.error::placeholder {
  font-family: "Montserrat", serif !important;
  color: #6c757d;
}

.contact-section .contact-section-form input.error,
.contact-section .contact-section-form textarea.error {
  border: 1px solid #e51d1d;
  color: #e51d1d;
}

.contact-section .contact-section-form input.error::placeholder,
.contact-section .contact-section-form textarea.error::placeholder {
  color: #e51d1d;
}

@media screen and (min-width: 1280px) {
  .contact-section .page-container {
    flex-direction: row;
    gap: 36px;
    justify-content: space-between;
  }
  .contact-section .contact-section-wrapper {
    width: calc((100% - 36px) / 2);
  }
  .contact-section .contact-section-title {
    text-align: left;
    font-size: 39px;
    line-height: 130.769%;
  }
  .contact-section .contact-section-text {
    text-align: left;
    font-size: 16px;
    line-height: 175%;
  }
  .contact-section .contact-section-img {
    max-width: 100%;
  }
  .contact-section-form {
    width: 496px;
    padding: 52px 30px;
  }

  .contact-section-form {
    padding: 52px 30px;
  }
  .contact-section-form .contact-form-wrapper {
    flex-direction: row;
    gap: 24px;
  }
  .contact-section-form label {
    gap: 8px;
  }
  .contact-section-form .contact-form-wrapper label {
    width: calc(((100% - 24px) / 2));
  }
  .contact-section-form .contact-section-btn {
    font-size: 18px;
  }
  .contact-section .contact-section-form label {
    font-size: 16px;
    line-height: 150%;
  }
}

/* footer */
.page-footer {
  background: #012e6f;
  color: #fff;
}

.page-footer .page-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-footer .page-container .footer-part {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-footer .page-container .footer-logo {
  width: 101px;
}

.page-footer .page-container .footer-logo img {
  width: 100%;
}

.page-footer .page-container .footer-part .footer-copyright {
  color: #b6b6b6;
  font-size: 15px;
  line-height: 166.667%;
  margin-bottom: 0;
}

.page-footer .page-container .footer-part h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

.page-footer .page-container .footer-part ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.page-footer .page-container .footer-part ul li {
  margin-bottom: 0;
}

.page-footer .page-container .footer-part a {
  color: #b6b6b6;
  font-size: 15px;
  line-height: 166.667%;
}

.page-footer .page-container .footer-part .form-title {
  margin-top: 8px;
}

.page-footer .footer-form-subscription {
  position: relative;
  width: 100%;
  height: 59px;
  max-width: 424px;
}

.page-footer .footer-form-subscription input {
  display: flex;
  width: 100%;
  height: 59px;
  max-width: 424px;
  padding: 12px;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid #ced4da;
  color: #fff;
  font-size: 14px;
  line-height: normal;
}

.page-footer .footer-form-subscription input.error {
  border: 1px solid #e51d1d;
  color: #e51d1d;
}

.page-footer .footer-form-subscription input.error::placeholder {
  color: #e51d1d;
}

.page-footer .footer-form-subscription button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  padding: 10px 12px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid #012e6f;
  background: #fff;
  color: #000916;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.page-footer #successMessage {
  font-size: 15px;
  font-weight: 500;
  line-height: 166.667%;
  display: none;
}

@media screen and (min-width: 1280px) {
  .page-footer .page-container {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  .page-footer .page-container .footer-part {
    gap: 16px;
    min-width: 200px;
  }
  .page-footer .page-container .footer-part:last-child {
    min-width: 100px;
  }
  .page-footer .page-container .footer-part:first-child {
    margin-right: auto;
    gap: 0;
    width: 300px;
  }
  .page-footer .page-container .footer-logo {
    width: 167px;
  }
  .page-footer .page-container .footer-part h3 {
    font-size: 19px;
  }
  .page-footer .page-container .footer-part .form-title {
    margin-top: 0;
  }
  .page-footer .footer-form-subscription {
    width: 424px;
  }
}
