.contact {
    display: inline-flex;
    align-items: center;
    padding: 0 0 0 35px;
    font-weight: 400;
    font-size: 16px;
    transition-duration: .1s;
    position: relative;
}

a.contact[href^="tel:"] {
    white-space: nowrap;
}

a.contact[href^="email:"] {
    white-space: nowrap;
}

.contact:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contact.contact_location:before {
    background-image: url('../image/location.svg');
}

.contact.contact_email:before {
    background-image: url('../image/email.svg');
}

.contact.contact_phone:before {
    background-image: url('../image/phone.svg');
}

a.contact:hover {
    color: var(--main-color-1);
    text-decoration: underline;
}

.logo {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 23px;
}

.logo.logo_light {
    color: white;
}

.social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.menu ul {
    display: inline-flex;
    align-items: center;
    gap: 25px;
}

.menu ul li {
    position: relative;
}

.menu a {
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    transition-duration: .1s;
}

.menu a:hover {
    color: var(--main-color-1);
}

.menu li ul {
    opacity: 0;
    visibility: hidden;
    transition-duration: .1s;
    background-color: white;
    max-width: 300px;
    min-width: 280px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 2;
    top: calc(100% + 30px);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.menu li:has(ul) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu li:has(ul):after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-image: url('../image/dropdown.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.menu li:has(ul):hover:before {
    content: "";
    position: absolute;
    top: 100%;
    height: 30px;
    left: 0;
    right: 0;
}

.menu li:has(ul):hover ul {
    opacity: 1 !important;
    visibility: visible !important;
}

.cookie-notification-text {
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 10px 0;
}

.drawer {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 390px;
    background: linear-gradient(180deg, #0084ac 0%, #00526f 9.76%, #003d55 23.97%, #002c3e 36.73%, #001923 54.99%, #00202d 66.49%, #001e2a 81.12%, #000406 95.76%);
    z-index: 150;
    transform: translateX(100%);
    transition-duration: .2s;
    display: flex;
    flex-direction: column;
}

.drawer * {
    color: white;
}

.drawer.drawer_active {
    transform: translateX(0);
}

.drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 15px;
    margin: 0 0 30px 0;
}

.drawer__title {
    font-weight: 700;
    font-size: 16px;
}

.drawer__body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 15px;
}

.drawer-menu {
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.drawer-menu a {
    font-weight: 500;
    font-size: 16px;
    transition-duration: .1s;
}

.drawer-menu a:hover {
    text-decoration: underline;
}

.drawer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero {
    background-image: url('../image/hero_bg.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero__wave {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.hero__wrapper {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 70px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 53px;
}

.hero__title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 60px;
}

.hero__cutaway {
    position: relative;
    padding: 0 0 120px 0;
}

.hero__cutaway .cataway__content {
    position: absolute;
    bottom: 0;
}

.cutaway {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cutaway__image {
    width: 100%;
    aspect-ratio: 1/1;
    background-image: url('../image/cutaway_frame.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px;
}

.cutaway__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.cataway__content {
    width: 100%;
    padding: 60px 20px 70px 20px;
    background-image: url('../image/cutaway_text_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.cutaway__title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 10px 0;
}

.cutaway__desc {
    font-weight: 400;
    font-size: 16px;
}

.mainpage {
    background: linear-gradient(180deg, #0084ac 0%, #00526f 9.76%, #003d55 23.97%, #002c3e 36.73%, #001923 54.99%, #00202d 66.49%, #001e2a 81.12%, #000406 95.76%);
    position: relative;
    overflow: hidden;
}

.mainpage__gradient-item {
    position: absolute;
    display: block;
    width: 1500px;
    height: 1500px;
    background: radial-gradient(50% 50% at 50% 50%, #000507 0%, rgba(0, 5, 7, 0.62) 8%, rgba(0, 5, 7, 0.38) 34%, rgba(0, 5, 7, 0.14) 58%, rgba(0, 5, 7, 0.03) 77%, rgba(0, 5, 7, 0) 92%, rgba(0, 5, 7, 0) 100%);
    opacity: 0.7;
}

.mainpage__gradient-item.mainpage__gradient-item_left {
    left: -50%;
    --k: 1000px;
}

.mainpage__gradient-item.mainpage__gradient-item_right {
    right: -50%;
    --k: 800px;
}

.mainpage__gradient-item.mainpage__gradient-item_1 {
    top: calc(0 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_2 {
    top: calc(1 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_3 {
    top: calc(2 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_4 {
    top: calc(3 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_5 {
    top: calc(4 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_6 {
    top: calc(5 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_7 {
    top: calc(6 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_8 {
    top: calc(7 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_9 {
    top: calc(8 * var(--k));
}

.mainpage__gradient-item.mainpage__gradient-item_10 {
    top: calc(9 * var(--k));
}

.mainpage__bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.mainpage__stars {
    position: absolute;
    mix-blend-mode: color-dodge;
    opacity: 0.6;
}

.mainpage__stars.mainpage__stars_1 {
    top: 3000px;
}

.mainpage__stars.mainpage__stars_2 {
    top: 5000px;
}

.mainpage__bubbles {
    position: absolute;
}

.mainpage__bubbles.mainpage__bubbles_1 {
    top: 2000px;
}

.mainpage .section {
    position: relative;
    z-index: 5;
}

.puzzle-block .container {
    position: relative;
}

.puzzle-block__element {
    position: absolute;
    z-index: 2;
}

.puzzle-block__element.puzzle-block__element_1 {
    rotate: -30deg;
    top: 300px;
    left: 50px;
}

.puzzle-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 215px);
    gap: 10px;
}

.puzzle {
    --ledge: -53px;
    width: 216px;
    height: 216px;
    position: relative;
    padding: 6px;
    z-index: 5;
}

.puzzle__title {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    display: block;
    text-align: center;
}

.puzzle__title.puzzle__title_white {
    color: white;
}

.puzzle__title b {
    font-weight: 600;
    font-style: italic;
}

.puzzle__number {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    right: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

.puzzle:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, .4);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.puzzle.puzzle_empty {
    opacity: 0;
}

.puzzle.puzzle_1:after {
    right: var(--ledge);
    mask-image: url('../image/puzzle_1.svg');
}

.puzzle.puzzle_2:after {
    bottom: var(--ledge);
    mask-image: url('../image/puzzle_2.svg');
}

.puzzle.puzzle_3:after {
    top: var(--ledge);
    mask-image: url('../image/puzzle_3.svg');
}

.puzzle.puzzle_4:after {
    top: var(--ledge);
    left: var(--ledge);
    bottom: var(--ledge);
    mask-image: url('../image/puzzle_4.svg');
}

.puzzle.puzzle_5:after {
    background-color: rgba(15, 162, 181, .6);
    left: var(--ledge);
    mask-image: url('../image/puzzle_5.svg');
}

.puzzle.puzzle_6:after {
    top: var(--ledge);
    left: var(--ledge);
    bottom: var(--ledge);
    mask-image: url('../image/puzzle_6.svg');
    background-color: rgb(6, 10, 18, .6);
}

.puzzle.puzzle_7:after {
    background-color: rgba(15, 162, 181, .6);
    mask-image: url('../image/puzzle_7.svg');
}

.puzzle.puzzle_8:after {
    top: var(--ledge);
    left: var(--ledge);
    mask-image: url('../image/puzzle_8.svg');
}

.puzzle.puzzle_9:after {
    top: var(--ledge);
    left: var(--ledge);
    bottom: var(--ledge);
    right: var(--ledge);
    mask-image: url('../image/puzzle_9.svg');
}

.puzzle.puzzle_10:after {
    top: var(--ledge);
    right: var(--ledge);
    mask-image: url('../image/puzzle_10.svg');
}

.path-block {
    position: relative;   
}

.path-block__element {
    position: absolute;
    z-index: 2;
}

.path-block__element.path-block__element_1 {
    top: -100px;
    left: -170px;
}

.path-block__element.path-block__element_2 {
    bottom: 0;
    right: -100px;
}

.path-block .container {
    position: relative;
    z-index: 3;
}

.path-list {
    position: relative;
    min-height: 1100px;
}

.path-bg {
    position: relative;
    z-index: 1;
}

.path-bg.path-bg_2 {
    display: none;
}

.path-item {
    position: absolute;
    z-index: 2;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.path-item:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 0.75;
    background: var(--main-color-1);
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.path-item.path-item_1 {
    left: -70px;
    top: 42px;
}

.path-item.path-item_2 {
    left: 35%;
    top: 317px;
}

.path-item.path-item_3 {
    left: 75%;
    top: 146px;
}

.path-item.path-item_4 {
    left: -9%;
    top: 425px;
}

.path-item.path-item_5 {
    left: 30%;
    top: 717px;
}

.path-item.path-item_6 {
    left: 66%;
    top: 583px;
}

.path-element {
    position: absolute;
    z-index: 2;
}

.path-element.path-element_1 {
    rotate: -8deg;
    left: 13%;
    top: 10%;
    width: 245px;
}

.path-element.path-element_2 {
    width: 410px;
    left: 50%;
    top: 120px;
}

.path-element.path-element_3 {
    left: 0;
    bottom: 0;
    width: 365px;
}

.form-style {
    border: 2px solid #fff1a0;
    background-image: url('../image/form_1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.form-style.form-style_v2 {
    background-image: url('../image/form_2.png');
}

.callback-block {
    position: relative;   
}

.callback-block__element {
    position: absolute;
    z-index: 2;
}

.callback-block__element.callback-block__element_1 {
    bottom: -200px;
    right: -350px;
}

.callback {
    padding: 80px 70px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 530px 450px;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.callback__subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.about-block {
    position: relative;
    z-index: 6 !important;
}

.about__content {
    border-radius: 0 30px 30px 30px;
    background: rgba(60, 60, 60, 0.2);
    border: 1px solid rgba(255, 255, 255, .25);
    border-top: none;
    backdrop-filter: blur(5px) saturate(135%);
    -webkit-backdrop-filter: blur(5px) saturate(135%);
    padding: 60px;
    display: grid;
    align-items: flex-start;
    grid-template-columns: 560px 1fr;
    gap: 100px;
    position: relative;
}

.about__content:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 258px;
    height: 60px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-radius: 0 30px 0 0;
}

.about__image {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    padding-top: 100%;
}

.about__image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about__text * {
    color: white;
}

.about__tab {
    display: flex;
    gap: 5px;
}

.about__tab-item {
    width: 260px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    border-radius: 15px 15px 0 0;
    background: rgba(15, 162, 181, 0.2);
    border: 1px solid rgba(255, 255, 255, .25);
    border-bottom: none;
    backdrop-filter: blur(5px) saturate(135%);
    -webkit-backdrop-filter: blur(5px) saturate(135%);
}

.about__tab-item.about__tab-item_active {
    background: rgba(60, 60, 60, 0.2);
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dropdown {
    padding: 20px 24px;
    background: rgba(6, 10, 18, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(5px) saturate(135%);
    -webkit-backdrop-filter: blur(5px) saturate(135%);
}

.dropdown__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown__wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 0 0 0 55px;
}

.dropdown__icon {
    width: 40px;
    height: 40px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

.dropdown__icon img {
    max-width: 20px;
    max-height: 20px;
    width: auto;
    height: auto;
}

.dropdown__name {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #fff;
}

.dropdown__inner {
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dropdown__content .text * {
    color: white;
}

.dropdown__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown.dropdown_active .dropdown__content {
    max-height: 5000px;
}

.dropdown__button img {
    transition: transform 0.1s ease;
}

.dropdown.dropdown_active .dropdown__button img {
    transform: rotate(45deg);
}

.text-block-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.text-block {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 247, 242, 0.3);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(5px) saturate(135%);
    -webkit-backdrop-filter: blur(5px) saturate(135%);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .25);
}

.text-block .text * {
    color: white;
}

.method-block {
    position: relative;   
}

.method-block__element {
    position: absolute;
    z-index: 2;
}

.method-block__element.method-block__element_1 {
    left: 100px;
    top: 0;
    rotate: -30deg;
}

.method-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method {
    position: relative;
    z-index: 5;
    padding: 20px;
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 20px;
    border-radius: 12px;
    background: rgba(6, 10, 18, 0.2);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(5px) saturate(135%);
    -webkit-backdrop-filter: blur(5px) saturate(135%);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .25);
}

.method__image {
    padding-top: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.method__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.method__content {
    position: relative;
}

.method__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px 0;
}

.method__desc {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.method__number {
    position: absolute;
    bottom: 0;
    right: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 156%;
    text-transform: uppercase;
    color: #fff;
}

.direction-block {
    position: relative;   
}

.direction-block .container {
    position: relative;
}

.direction-block__element {
    position: absolute;
    z-index: 2;
}

.direction-block__element.direction-block__element_1 {
    top: -150px;
    right: 0;
}

.direction-block__element.direction-block__element_2 {
    top: -200px;
    left: -250px;
}

.direction-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.direction {
    position: relative;
    z-index: 5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 12px;
    background: rgba(6, 10, 18, 0.2);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(5px) saturate(135%);
    -webkit-backdrop-filter: blur(5px) saturate(135%);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .25);
}

.direction__label {
    position: absolute;
    left: -1px;
    top: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    padding: 8px 10px;
    background: var(--main-color-1);
    z-index: 2;
}

.direction__image {
    height: 270px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.direction__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.direction__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    flex-grow: 1;
}

.direction__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    min-height: 60px;
    text-transform: uppercase;
    color: #fff;
}

.direction__button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.event-block {
    position: relative;   
    z-index: 15 !important;
}

.event-block .container {
    position: relative;
}

.event-block__element {
    position: absolute;
    z-index: 2;
}

.event-block__element.event-block__element_1 {
    top: -200px;
    left: -350px;
    transform: scaleX(-1);
}

.event-block__element.event-block__element_2 {
    width: 500px;
    bottom: -200px;
    left: -200px;
}

.event-block__element.event-block__element_3 {
    width: 600px;
    top: -100px;
    right: -200px;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 12px;
    background: rgba(6, 10, 18, 0.2);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(5px) saturate(135%);
    -webkit-backdrop-filter: blur(5px) saturate(135%);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .25);
    position: relative;
    z-index: 5;
}

.event__date {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    height: 40px;
    position: relative;
    padding: 0 0 0 30px;
}

.event__date:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-image: url('../image/calendar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
    position: absolute;
    left: 0;
}

.event__title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 30px;
    line-height: 140%;
    text-transform: uppercase;
    color: #fff;
}

.event__price {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.event__button {
    display: grid;
    align-items: flex-end;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex-grow: 1;
}

.gallery-block {
    position: relative;
}

.gallery-block .container {
    position: relative;
}

.gallery-block__element {
    position: absolute;
    z-index: 2;
}

.gallery-block__element.gallery-block__element_1 {
    top: -200px;
    left: -250px;
}

.gallery {
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.gallery__slide {
    border: 2px solid #fff1a0;
    border-radius: 12px;
    height: 670px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.gallery__slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.review-block {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-block__element {
    position: absolute;
    z-index: 2;
}

.review-block__element.review-block__element_1 {
    top: -200px;
    right: -330px;
    z-index: 6;
}

.review-block__element.review-block__element_2 {
    bottom: -150px;
    right: -800px;
    transform: scaleX(-1);
}

.review-block__element.review-block__element_3 {
    width: 1100px;
    filter: grayscale(1);
    opacity: 0.35;
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

.review {
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.review__slide {
    position: relative;
    height: 770px !important;
    background-image: url('../image/review.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.review__text {
    position: absolute;
    padding: 15px;
    background-color: white;
    width: 373px;
    height: 350px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    transform: rotate(-11deg);
    left: 317px;
    top: 160px;
}

.review__text button {
    text-decoration: underline;
}

.review__text button:hover {
    text-decoration: none;
}

.grecaptcha-badge {
    display: none !important;
}

.fixed-button-list {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition-duration: .2s;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fixed-button-list.fixed-button-list_active {
    opacity: 1;
    visibility: visible;
}

.fixed-button-go-up {
    rotate: 90deg;
}