.header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transform: translateY(0);
  transition: transform 0.4s ease, background-color 0.3s ease;
  z-index: 9;
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo {
  width: 100%;
  max-width: 197px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-logo svg {
  fill: #45434f;
  transition: fill 0.5s ease;
}
.header-logo--active svg {
  fill: var(--light-color);
}

.header-logo__box p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 23px;
  line-height: 90%;
  text-transform: capitalize;
  color: var(--text-color);
  transition: color 0.5s ease;
}

.header-menu {
  width: 100%;
  max-width: 1350px;
  /* max-width: clamp(1000px, 69.31vw, 1350px); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-nav {
  width: 100%;
  /* min-width: 552px; */
  max-width: 820px;
  border-radius: 70px;
  padding: 4px 10px;
  background: var(--light-color);
}
.header-nav__list {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-nav__item {
  padding: 12px 26px;
  border-radius: 60px;
  background: transparent;
  transition: background 0.3s ease;
  cursor: pointer;
}
.header-nav__item:hover {
  background: var(--accent-color);
  color: var(--light-color);
}

.header-nav__item.active {
  background: var(--accent-color);
  color: var(--light-color);
}
.header-nav__item a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: inherit;
  transition: color 0.3s ease;
}

.header-contact {
  width: 100%;
  max-width: 388px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-contact__phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header-contact__phone span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: right;
  color: var(--text-color);
  opacity: 0.6;
}
.header-contact__phone a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--text-color);

  transition: color 0.3s ease;
}
.header-contact__phone a:hover {
  color: var(--accent-color);
}
.header-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-social__item a {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  background: transparent;
  border: 1px solid #dd9214;
  transition: all 0.3s ease;
}
.header-social__item a:hover {
  background: var(--accent-color);
  border: 1px solid var(--light-color);
}

.header-social__item svg {
  fill: #dd9214;
}
.header-social__item a:hover svg {
  fill: var(--light-color);
}

.header--scrolled {
  background-color: var(--light-color);
}
.header--hidden {
  transform: translateY(-170%);
}

.hero {
  height: 100vh;
  max-height: 970px;
  overflow: hidden;
}
.hero-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-title {
  margin-bottom: 120px;
  max-width: clamp(28px, 34.9vw, 668px);

  font-family: var(--third-family);
  font-weight: 500;
  /* font-size: clamp(28px, 3.13vw, 60px); */
  font-size: 30px;
  line-height: 135%;
  text-transform: uppercase;
  color: var(--text-color);
}

.hero-text {
  /* padding-right: 50px; */
  max-width: clamp(200px, 23.44vw, 450px);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 150%;
  color: var(--text-color);
}

.hero-subtitle {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 430px;
  font-size: 23vw;
  font-size: clamp(172px, 22.4vw, 430px);
  line-height: 90%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #d9bc8f;
  opacity: 0.54;
  pointer-events: none;
}
.hero-subtitle__item {
  transform: translateY(50%);
}
.hero-avatar,
.hero-ellipse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateX(50px);
  pointer-events: none;
}
.hero-avatar {
  width: 42vw;
  width: clamp(394px, 42vw, 812px);
  bottom: 0;
  z-index: 2;
}
.hero-ellipse {
  width: clamp(280px, 30vw, 576px);
  bottom: clamp(104px, 10.42vw, 200px);
  z-index: 1;
}

.hero-coll-text {
  position: absolute;
  width: 100%;
  bottom: clamp(24px, 5.21vw, 100px);
  right: clamp(36px, 11.98vw, 230px);
  width: clamp(126px, 9.79vw, 188px);
  animation: spin 12s linear infinite;
}
/* .hero-coll-text a {
  width: 100%;
  height: 100%;
} */

.situations {
  padding: 0px 50px 60px;
  overflow: hidden;
}
.situations-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;

  border: 1px solid #f7f3ef;
  /* border-radius: 20px; */
  padding: 50px;
  background: var(--light-color);
}
.situations-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  justify-items: start;
}
.situations-title {
  align-items: start;
  justify-items: start;
  padding: 6px 4px 2px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  background: var(--accent-color);

  color: var(--light-color);
}
.situations-subtitle {
  max-width: 860px;
  font-family: var(--third-family);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 80px);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--text-color);
}
.situations-text {
  grid-column: 2 span;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  color: var(--text-color);
}
.situations-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e6e6e6;
}
.situations-list li {
  padding: 30px;
  padding-right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.situations-list li:nth-of-type(1),
.situations-list li:nth-of-type(2),
.situations-list li:nth-of-type(3) {
  border-bottom: 1px solid #e6e6e6;
}
.situations-list li:nth-of-type(1),
.situations-list li:nth-of-type(2),
.situations-list li:nth-of-type(4),
.situations-list li:nth-of-type(5) {
  border-right: 1px solid #e6e6e6;
}
.situations-list h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  font-size: clamp(12px, 1.46vw, 28px);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--text-color);
}
.situations-list img {
  width: 11vw;
}

/* choice  */
.choice {
  padding: 60px 0px;
}

.choice-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.choice-list {
  margin-top: 50px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;
}
.choice-row {
  display: contents;
  transition: all 0.3s ease;
}

.choice-list__title {
  grid-column: span 1;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: var(--text-color);
}
.choice-list__title span {
  color: var(--accent-color);
}
.choice-list__title:nth-of-type(2) {
  padding-left: 20px;
  grid-column: 2;
}
.choice-list__item {
  padding: 60px 20px;

  font-family: var(--third-family);
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  color: var(--text-color);
  transition: all 0.3s ease;
}
.choice-list__item:nth-child(even) {
  opacity: 0.3;
}

.choice-row:hover .choice-list__item {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.choice-row:hover {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
/* choice  */

/* steps */
.steps {
  padding: 60px 50px;
  overflow: hidden;
}
.steps-container {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--text-color) url(../images/steps/steps-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.steps-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.steps-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 80px);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--light-color);
}
.steps-subtitle {
  display: inline-block;
  padding: 6px 4px 2px;
  padding-left: 12px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--light-color);
  background: var(--accent-color);
}
.steps-list li {
  padding: 40px 0px;
  display: flex;
  align-items: center;
  gap: 64px;
  border-bottom: 1px solid #a1a1a5;
}
.steps-list li span {
  width: 100%;
  max-width: 132px;
}
.steps-list li span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 80px;
  line-height: 90%;
  text-transform: uppercase;
  color: var(--accent-color);
}
.steps-list__text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.steps-list__text h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 26px;
  line-height: 90%;
  text-transform: uppercase;
  color: var(--light-color);
}
.steps-list__text p {
  max-width: 500px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #b8b8b8;
}
/* steps */

/* solutions */

.solutions {
  padding: 60px 50px;
  overflow: hidden;
}
.solutions-container {
  position: relative;
  height: 700px;
  padding: 70px 50px 50px 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.solutions-logo {
  width: 168px;
  height: 60px;
}
.solutions-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}
.solutions-box {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.solutions-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(28px, 4.69vw, 90px);
  line-height: 110%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--light-color);
}
.solutions-title span {
  color: var(--accent-color);
}
.solutions-name {
  margin-top: 36px;
  display: block;
  font-family: var(--font4);
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--accent-color);
}
.solutions-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.solutions-list__item p {
  font-family: var(--font5);
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--light-color);
}
.solutions-position {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.solutions-position p {
  font-family: var(--font5);
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  text-align: right;
  color: var(--light-color);
}
.solutions-photo {
  position: absolute;
  bottom: -177px;
  right: 150px;
  width: 568px;
  z-index: 4;
}
.solutions-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: -1;
}

.solutions-ellipse {
  position: absolute;
  width: 544px;
  bottom: 6vw;
  right: 150px;
  z-index: 3;
}

/* solutions */

/* specialization */

.specialization {
  padding: 60px 0;
  overflow: hidden;
}
.specialization-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.specialization-contact {
  grid-column: 1 / 2;
  display: flex;
  align-items: center;
}
.specialization-contact__bottom {
  display: none;
}
.specialization-contact a {
  margin-left: 22%;
  border: 1px solid #f97316;
  border-radius: 71px;
  padding: 16px 52px;
  font-family: var(--font3);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  background: var(--light-color);
  color: var(--text-color);
}

.specialization-wrapper {
  grid-column: 2 / 3;
}
.specialization-title {
  display: inline-block;
  padding: 10px;
  background: var(--accent-color);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 90%;
  text-transform: uppercase;
  color: var(--light-color);
}
.specialization-subtitle {
  max-width: 546px;
  margin-top: 10px;
  font-family: var(--third-family);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 80px);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--text-color);
}
.specialization-nav {
  margin-top: 20px;
  grid-column: 2 / 3;

  display: flex;
  align-items: start;
  gap: 12px;
}
.specialization-nav__item {
  padding: 16px 52px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;

  text-transform: uppercase;
  color: var(--light-color);
  background: var(--accent-color);
  border-radius: 30px 30px 0 0;
  cursor: pointer;
}
.specialization-nav__item.active {
  color: var(--text-color);
  background: var(--light-color);
}
.specialization-content {
  width: 100%;
  grid-column: 2 span;

  position: relative;
  transition: height 0.6s ease;
}

.specialization-list {
  position: relative;
  grid-column: 2 span;
  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.specialization-list::after {
  content: '';
  position: absolute;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light-color);
  z-index: -1;
}
.specialization-list.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.specialization-list__item {
  min-height: 212px;
  position: relative;
  padding: 40px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.specialization-list__item::after {
  content: '';
  position: absolute;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border-bottom: 1px solid #c5c5c5;
  z-index: -1;
  transition: background 0.3s ease;
}
.specialization-list__item:hover::after {
  background: var(--text-color);
}
.specialization-list__number {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 60%;
  text-transform: uppercase;
  color: var(--text-color);
  transition: font-size 0.8s ease, color 0.5s ease;
}
.specialization-list__box {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 24px;
}
.specialization-list__box h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 35px;
  line-height: 90%;
  text-transform: uppercase;
  color: var(--text-color);
  transition: color 0.5s ease;
}
.specialization-list__box p {
  max-width: 674px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--text-color);
  transition: color 0.5s ease;
}

.specialization-list__item:hover .specialization-list__number {
  align-self: center;
  font-size: clamp(50px, 10.42vw, 200px);
  color: var(--accent-color);
}
.specialization-list__item:hover .specialization-list__box p {
  color: var(--light-color);
}
.specialization-list__item:hover .specialization-list__box h4 {
  color: var(--accent-color);
}

/* specialization */

/* services */
.services {
  padding: 60px 0;
  background: var(--bg-color);
  overflow: hidden;
}
.services-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services-title {
  max-width: 560px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(32px, 4.17vw, 80px);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--text-color);
}
.services-list {
  display: grid;
  grid-auto-flow: column;
  column-gap: 30px;
  grid-template-rows: repeat(3, auto);
}
.services-list__item {
  padding: 40px 0px;
  display: flex;
  align-items: center;
  gap: 140px;
  border-bottom: 1px solid #a1a1a5;
}
.services-list__item span {
  width: clamp(54px, 6.88vw, 132px);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(32px, 4.17vw, 80px);
  line-height: 90%;
  text-transform: uppercase;
  color: var(--accent-color);
}
.services-list__item p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 100%;
  text-transform: uppercase;
  color: #282534;
}
/* services */

/* clients */
.clients {
  padding: 60px 0;
}
.clients-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 60px;
}

.clients-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(32px, 4.17vw, 80px);
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #191626;
}
.clients-list {
  width: 100%;

  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.clients-list__item {
  flex: 0 1 348px;
  width: 100%;
  max-width: 340px;
  min-width: 200px;
  height: 236px;

  padding: 24px 20px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: var(--light-color);
}
.clients-list__item img {
  margin: auto 0;
}
.clients-list__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #171828;
}
.clients-list__title--small {
  margin-top: auto;
  font-size: 20px;
}
/* clients */

/* reviews */
.reviews {
  padding: 60px 50px;
  background: var(--bg-color);
  overflow: hidden;
}

.reviews-container {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../images/reviews/reviews-bg.png');
}
.reviews-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.reviews-title {
  align-self: flex-start;
  padding: 10px;
  background: var(--accent-color);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.04vw, 20px);
  line-height: 90%;
  text-transform: uppercase;

  color: var(--light-color);
}
.reviews-subtitle {
  margin-top: 20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(32px, 4.17vw, 80px);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--text-color);
}
.reviews-nav {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.reviews-nav__pagination {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.reviews-nav__item {
  align-items: stretch;
  width: 100%;
  /* height: 22px; */
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  /* line-height: 140%; */
  background: none;
  color: var(--text-color);
  opacity: 1;
}
.swiper-pagination-bullet-active.reviews-nav__item {
  color: var(--accent-color);
}

.reviews-nav__btn {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.reviews-nav__btn--next,
.reviews-nav__btn--prev {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-color);
  cursor: pointer;
  transition: fill 0.3s ease;
}
.reviews-nav__btn--next svg,
.reviews-nav__btn--prev svg {
  width: 33px;
}
.reviews-nav__btn--next:hover,
.reviews-nav__btn--prev:hover {
  fill: var(--accent-color);
}

.reviews-slider {
  max-width: 880px;
  height: clamp(312px, 37.92vw, 728px);

  background: var(--light-color);
  overflow: hidden;
}
.reviews-slider__item {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews-slider__item img {
  width: clamp(92px, 10.42vw, 200px);
}
.reviews-slider__item p {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.77vw, 34px);
  line-height: 140%;
  text-align: center;
  color: var(--text-color);
}
.reviews-slider__author {
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.reviews-slider__name {
  font-family: var(--font4);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 50px);
  line-height: 110%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  text-align: right;
  color: var(--text-color);
}
.reviews-slider__position {
  font-family: var(--font5);
  font-weight: 500;
  font-size: clamp(12px, 1.04vw, 20px);
  line-height: 170%;
  text-align: right;
  color: var(--accent-color);
}
/* reviews */

/* finance */

.finance {
  background: var(--bg-color);
}

.finance-content {
  position: relative;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}
.finance-content::after {
  content: '';
  position: absolute;
  background: rgba(4, 14, 31, 0.66);
  /* background: rgba(255, 255, 255, 0.3); */
  inset: 0;
  z-index: 2;
}
.finance-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
.finance-bg video {
  width: 100%;
}

.finance-wrapper {
  position: relative;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;

  z-index: 5;
}
.finance-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 60px;
  line-height: 110%;

  text-transform: uppercase;
  color: var(--accent-color);
}
.finance-title span {
  font-family: var(--font-family);
  font-weight: 400;

  text-transform: capitalize;
  color: var(--light-color);
}
.finance-text {
  font-family: var(--font5);
  font-weight: 400;
  font-size: 28px;
  line-height: 140%;

  color: var(--light-color);
}
.finance-link {
  position: relative;
  width: 100%;
  max-width: 360px;
  z-index: 5;

  padding: 16px 52px;
  font-family: var(--font3);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: var(--light-color);
  background: var(--accent-color);
  border-radius: 71px;
}

/* finance */

/* contact */
.contact {
  padding: 60px 50px;
  background: var(--bg-color);
  overflow: hidden;
}
.contact-container {
  padding: 0;
}
.contact-wrapper {
  width: 100%;
  padding: clamp(30px, 4.69vw, 90px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  min-height: 100%;
  background: var(--light-color);
}
.contact-info {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-self: stretch;
}
.contact-title {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: clamp(26px, 3.13vw, 60px);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--text-color);
}

.contact-phone {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(26px, 3.13vw, 60px);
  line-height: 150%;
  color: var(--text-color);
}
.contact-email {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 150%;
  color: var(--text-color);
}
.contact-socials {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-socials a {
  width: clamp(40px, 4.17vw, 80px);
  height: clamp(40px, 4.17vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--text-color);
  transition: background 0.3s ease;
}
.contact-socials a svg {
  width: clamp(20px, 2.08vw, 40px);
  fill: var(--light-color);
}
.contact-socials a:hover {
  background: var(--accent-color);
}
.contact-form {
  width: 100%;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-self: stretch;
}
.contact-form__label {
  width: 100%;
  margin-top: 28px;
  position: relative;
  display: flex;
  border-bottom: 1px solid #ccd1cb;
}
.contact-form__label:nth-of-type(3) {
  margin-top: auto;
}
.contact-form__label.error {
  border: 2px solid red;
  border-radius: 8px;
}
.contact-form__title {
  position: absolute;
  top: 0;
  left: 5px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #747474;
  pointer-events: none;
  transition: 0.5s;
}
.contact-form__label input:focus ~ span,
.contact-form__label input:user-valid ~ span {
  top: -32px;
}
.contact-form__label input:is-valid ~ span {
  top: -32px;
}
.contact-form__label textarea:focus ~ span,
.contact-form__label textarea:user-valid ~ span {
  top: -32px;
}
.contact-form__text {
  height: 40px;
}
.contact-form__input,
.contact-form__text {
  padding: 6px;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  resize: none;
  background: transparent;
}
.contact-form__text:focus,
.contact-form__input:focus {
  border-radius: 4px;
  outline: none;
}
.contact-form__btn {
  font-family: var(--font6);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--light-color);
}
/* contact */

/* footer */
.footer {
  padding: 60px 50px;
  background: var(--bg-color);
  overflow: hidden;
}
.footer-container {
  background: var(--text-color);
  padding: clamp(20px, 5.21vw, 100px);
}
.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(241, 241, 241, 0.5);
}
.footer-logo {
  fill: var(--light-color);
  width: clamp(140px, 17.81vw, 342px);
}
.footer-bottom {
  padding-top: clamp(30px, 4.69vw, 90px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}
.footer-nav {
  width: 100%;
  max-width: 530px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.08vw, 40px);
}
.footer-nav ul a {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: clamp(14px, 2.65vw, 44px);
  line-height: 100%;
  text-transform: capitalize;
  color: var(--light-color);
  transition: color 0.3s ease;
}
.footer-nav ul a:hover {
  color: var(--accent-color);
}
.footer-info {
  width: 100%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-info span {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: clamp(22px, 1.77vw, 34px);
  line-height: 100%;
  text-transform: capitalize;
  color: #fafafa;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: var(--accent-color);
}
.footer-info p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(12px, 1.25vw, 24px);
  line-height: 160%;
  color: #d2d2d2;
}
.footer-contact {
  width: 100%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
}
.footer-contact__phone,
.footer-contact__email {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 160%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #7b9eb1;
  transition: color 0.3s ease;
}
.footer-contact__phone:hover,
.footer-contact__email:hover {
  color: var(--accent-color);
}

.footer-contact__socials {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-contact__socials li a {
  width: clamp(40px, 4.17vw, 64px);
  height: clamp(40px, 4.17vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #383d38;
  transition: background 0.3s ease;
}
.footer-contact__socials li a svg {
  width: clamp(20px, 2.08vw, 40px);
  fill: var(--light-color);
}
.footer-contact__socials a:hover {
  background: var(--accent-color);
}
/* footer */
