@font-face {
  font-family: 'SFProDisplay';
  src: url("../fonts/SFProDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProDisplay';
  src: url("../fonts/SFProDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProDisplay';
  src: url("../fonts/SFProDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

section {
  overflow: hidden;
  position: relative;
}

:root {
  --container-width: 1246px;
  --container-padding: 15px;

  --font-main: SFProDisplay, sans-serif;

  --page-bg: #fff;
  --text-color: #141414;
  --accent: #f22525;
  --link-color: #8c55fb;
  --slide-bg: rgba(247, 246, 245, 1);
  --text-accent: #434343;
  --about-bg: rgba(45, 54, 75, 1);
  --carer-bg: rgba(254, 103, 0, 0.12);
  --reviews-slide: rgba(245, 245, 245, 1);
  --form-bg: rgba(140, 85, 251, 0.12);
}

html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--link-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--link-color);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);

  max-width: var(--container-width);
  width: 100%;
}

.container-right {
  padding-left: calc(
    (100% - var(--container-width)) / 2 + var(--container-padding)
  );
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (max-width: 1250px) {
  .container-right {
    padding-left: var(--container-padding);
  }
}

.page {
  height: 100%;
  font-size: 14px;
  font-family: SFProDisplay, sans-serif;
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 38px;
  --height: 38px;

  --line-height: 4px;
  --spacing: 2px;

  --color: #000;
  --radius: 4px;

  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */

  /* Dynamic height and width */
  // height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  height: 38px;
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(241, 238, 233, 1);
  border-radius: 8px;
}

.nav-icon {
  margin: auto;
  position: relative;
  width: 20px;
  height: 2px;
  background-color: var(--color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: 20px;
  height: 2px;

  border-radius: var(--radius);
  background-color: var(--color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
  z-index: 999;
  display: none;
}

.mobile-nav {
  position: fixed;
  // top: 0;
  top: 0;
  left: -110%;
  width: 80%;
  height: 100%;
  z-index: 99;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  padding: 50px 10px 40px 40px;
  background: var(--page-bg);
  transition: all 0.4s ease-in;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__list a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 110%;
  font-weight: 400;
  color: var(--text-color);
  transition: 0.4s linear;
  width: 100%;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus,
.mobile-nav__list a:active {
  color: var(--accent);
}

.menu__close {
  display: none;
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 200;
  transition: 0.7s ease;
}
.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fixed-social__link {
  display: block;
  transition: 0.7s ease;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
}


.fixed-social.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}

.slide-item {
  width: calc((100% - 16px) / 2.8) !important;
  flex-shrink: 0;
}

.slide-item {
  display: flex !important;
  height: auto !important;
}

.reviews__slide-2 {
  display: flex !important;
  height: auto !important;
}

.reviews__inner .swiper-slide {
  display: none;
}

.reviews__inner .swiper-slide.reviews__active {
  display: flex !important;
  height: auto !important;
}

.swiper-wrapper {
  align-items: stretch;
}

.pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1px solid var(--slide-arrow);
  background-color: transparent;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pagination .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.pagination .swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-color);
}

.slider-arrow {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slide-arrow);
  border-radius: 50%;
  z-index: 50;
  cursor: pointer;
  transition: 0.4s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  border: 1px solid var(--accent);
}

.button-prev img {
  position: relative;
}

.button-next img {
  position: relative;
  transform: rotate(180deg);
}

.slide__block .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
  bottom: 0 !important;
  width: auto !important;
}

.title-1 {
  font-size: 40px;
  line-height: 120%;
  font-weight: 590;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.title-2 {
  font-size: 36px;
  line-height: 120%;
  font-weight: 510;
  font-family: var(--font-main);
  color: var(--text-color);
}

.title-3 {
  font-size: 28px;
  line-height: 120%;
  font-weight: 510;
  font-family: var(--font-main);
  color: var(--text-color);
}


.promo__name {
  align-self: flex-start;
  font-size: 16px;
  line-height: 18px;
  font-weight: 590;
  font-family: var(--font-main);
  color: var(--page-bg);
  background-color: var(--link-color);
  padding: 5px 9px;
  border-radius: 7px;
}

.promo__title {
  font-size: 28px;
  line-height: 34px;
  font-weight: 510;
  font-family: var(--font-main);
  color: var(--text-color);
}
.promo__text {
  font-size: 28px;
  line-height: 130%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.text {
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-accent);
}

.btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 510;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: var(--page-bg);
  background-color: var(--link-color);
  border-radius: 8px;
  padding: 8px 20px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn:focus,
.btn:hover,
.btn:active {
  box-shadow: 0 0 20px var(--link-color);
}

.btn__two {
  text-align: center;
  color: var(--page-bg);
  background-color: var(--accent);
  border-radius: 8px;
  padding: 8px 20px;
  transition: 0.4s linear;
}

.btn__two:focus,
.btn__two:hover,
.btn__two:active {
  box-shadow: 0 0 20px var(--accent);
}

.promo__btn {
  max-width: 127px;
  width: 100%;
}

.about__btn {
  max-width: 127px;
  width: 100%;
}
.career__btn {
  max-width: 178px;
  width: 100%;
}

.text-white {
  color: var(--page-bg);
}

.page-header {
  min-width: 320px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  background-color: transparent;
  padding: 10px 0;
  z-index: 98;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header__row {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid rgba(241, 238, 233, 1);
  border-radius: 8px;
  background-color: var(--page-bg);
}

.logo {
  flex-shrink: 0;
}

.header__nav {
  flex-grow: 1;
  margin-left: 85px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav__list a {
  font-size: 14px;
  line-height: 100%;
  font-weight: 510;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.4s linear;
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
  color: var(--link-color);
}

.header__contact {
  max-width: 190px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.header__cell {
  font-size: 14px;
  line-height: 100%;
  font-weight: 510;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.4s linear;
  padding: 11px 13px;
  border: 1px solid rgba(241, 238, 233, 1);
  border-radius: 8px;
}

.header__cell:focus,
.header__cell:hover,
.header__cell:active {
  color: var(--link-color);
}

.footer {
  background-color: var(--page-bg);
  padding: 25px 0;
}

.footer__wrapper {
  display: flex;
  gap: 156px;
}
.footer__logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

 .footer__copyright-text a{
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--text-color);
}

.footer__right {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  gap: 174px;
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__title {
  font-size: 14px;
  line-height: 16px;
  font-weight: 590;
  font-family: var(--font-main);
  color: var(--text-color);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__text {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.4s linear;
}
.footer__link:focus,
.footer__link:hover,
.footer__link:active {
  color: var(--link-color);
}

.footer__block .footer__copyright-text {
  display: none;
}

.promo {
  min-width: 320px;
  padding: 112px 0 80px 0;
}

.promo__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "item1 item2"
    "item1 item3";
  gap: 24px;
}

.promo__item:nth-child(1) {
  grid-area: item1;
}

.promo__item:nth-child(2) {
  grid-area: item2;
}

.promo__item:nth-child(3) {
  grid-area: item3;
}
.promo__item {
  position: relative;
}

.promo__info {
  display: flex;
  flex-direction: column;
  position: absolute;
  gap: 10px;
  left: 28px;
  top: 32px;
}

.promo__info-2 {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.promo__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promo__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.promo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--page-bg);
  position: absolute;
  right: 32px;
  bottom: 32px;
}


.slide-1 {
  min-width: 320px;
  padding-bottom: 80px;
}

.slide-2 {
  min-width: 320px;
  padding: 80px 0;
}

.slide__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.slide__top {
  display: flex;
  align-items: center;
  gap: 25px;
}

.slide__top .title-2 {
  max-width: 526px;
  width: 100%;
}

.slide__top .text {
  max-width: 696px;
  width: 100%;
}

.slide__block {
  position: relative;
}

.slide-item__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--slide-bg);
  border-radius: 20px;
  padding: 24px;
}
.slide-item__img {
  height: 266px;
  width: 100%;
}

.slide-item__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.slide-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-2__img {
  width: 100%;
  max-height: 400px;
}

.slide-2__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.about {
  min-width: 320px;
  padding-bottom: 80px;
}

.about__layout{
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.about__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 20px;
  padding: 32px;
}

.reverse {
  flex-direction: row-reverse;
}

.about-bg {
  background-color: var(--about-bg);
}

.about-br {
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 20px;
}

.about__img {
  max-width: 588px;
  width: 100%;
}

.about__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.about__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 588px;
  width: 100%;
}
.about__info-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-hidden {
  max-height: 150px;
  overflow: hidden;
}

.text-hidden-active {
  max-height: 3000px;
}

.map {
  min-width: 320px;
  position: relative;
}

.map__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 127px 0 122px 0;
}
.map__mobile {
  display: none;
}
.map__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  position: relative;
  z-index: 3;
}
.map__info-block {
	width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(15.4px);
  border-radius: 16px;
  border: 1px solid rgba(161, 161, 161, 1);
}

.map__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map__item:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(161, 161, 161, 1);
}

.map__link {
	width: 100%;
	justify-content: space-between;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.map__purple,
.map__red {
  flex-shrink: 0;
}

.map__laptop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map__laptop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career {
  min-width: 320px;
}

.career__wrapper {
  background-color: var(--carer-bg);
  border-radius: 20px;
  padding: 48px 32px;
  display: flex;
  gap: 205px;
}
.career__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.career__info-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.career__img {
  flex-shrink: 0;
}

.career__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.reviews {
  min-width: 320px;
  padding: 80px 0;
}

.reviews-2{
	min-width: 320px;
  padding-bottom:  80px ;
}

.reviews-3{
	min-width: 320px;
  padding-top:  40px ;
}

.reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.reviews__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.reviews__taps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 35px;
  gap: 16px;
  max-width: 240px;
  width: 100%;
}

.tabs img {
  object-fit: cover;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:5px; 
  padding: 12px 5px;
  width: 100%;
}

.tabs.tab-active {
  background-color: var(--link-color);
  border-radius: 80px;
  padding: 12px 5px;
  max-width: 127px;
  width: 100%;
}

.tabs span{
	font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-accent);
}

.tabs.tab-active span{
	color:var(--page-bg);
}

.tabs .text-svg {
  fill: #000;
}

.tabs.tab-active .text-svg {
  fill: #fff;
}

.reviews__card {
  position: relative;
}

.reviews__block {
	width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  background-color: var(--reviews-slide);
  border-radius: 8px;
}
.reviews__map {
  width: 73px;
  height: 14px;
}

.reviews__map-2{
	width: 100%;
}

.reviews__map-2 img{
	border-radius: 12px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviews__slide-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

.reviews__slide-info-block{
	display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews__text--hidden {
	position: relative;
	z-index: 3;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.reviews__text--expanded {
  max-height: 1000px;
}

.reviews-more {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--link-color);
  text-transform: uppercase;
  text-align: left;
}

.reviews-more-2 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--link-color);
  text-transform: uppercase;
  text-align: left;
  display: none;
  margin-top: auto;
}

.reviews__slide-text{
	display: flex;
  flex-direction: column;
  gap: 7px;
}

.reviews__video{
	display: flex;
	position: relative;
	min-height: 330px;
}

.reviews__video img{
	border-radius: 8px;
	object-fit: cover;
}

.reviews__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.reviews__slide{
	min-height: 330px;
}

.review-full-hidden{
	display: none;
}

.form {
  min-width: 320px;
  padding-bottom: 80px;
}

.form__wrapper {
  display: flex;
  gap: 40px;
  padding: 32px 57px 32px 32px;
  background-color: var(--form-bg);
  border-radius: 20px;
}
.form__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 624px;
  width: 100%;
}
.form__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.form-img {
  width: 100%;
  height: 136px;
}

.form-img img {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}
.form__layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 463px;
  width: 100%;
}
.form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  column-gap: 24px;
  flex-grow: 1;
}
.label-form {
  width: 100%;
}
.form__input {
  width: 100%;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  border: 1px solid rgba(20, 20, 20, 0.6);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: 0.4s linear;
}

.form__input:focus,
.form__input:hover,
.form__input:active {
  border: 1px solid var(--link-color);
}

.form__textarea {
  outline: none;
  resize: none;
  height: 86px;
  grid-column: 1 / 3;
}

.form-btn {
  grid-column: 1 / 3;
}

.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}

.modal-form__btn{
	max-width: 225px;
  width: 100%;
  background-color: var(--link-color);
  transition: 0.4s linear;
}

.modal-form__btn:focus,
.modal-form__btn:hover,
.modal-form__btn:active {
  box-shadow: 0 0 20px var(--link-color);
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 76.7%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s ease;
}

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 399;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}

.modal__active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.modal__active-bg {
  visibility: visible;
  opacity: 1;
}

.modal__wrapper {
  display: flex;
  align-items: center;
  gap: 81px;
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding: 30px;
  border-radius: 20px;
}

.modal__person{
	width: 40%;
}

.modal__person img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.modal__info{
	width: 54%;
	display: flex;
  flex-direction: column;
  gap: 7px;
}

.modal__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

