html {
    overflow-x: hidden;
}
a.btn {
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
    color: #ff0000 !important;
    font-weight: 400 !important;
    font-family: 'Zagolovki';
    font-size: 34px;
    text-decoration: none;
}
a.btn:hover{
   text-decoration:  underline;
}
/* Прелоадер */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Внутренний блок */
.preloader-inner {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  color: #e11d48;
}

/* Надпись */
.preloader-inner p {
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 1px;
  font-style: italic;
}

/* Сердечко */
.heart {
  width: 40px;
  height: 40px;
  background: #e11d48;
  position: relative;
  transform: rotate(-45deg);
  animation: pulse 1.2s infinite;
  margin: 0 auto;
}

.heart::before,
.heart::after {
  content: "";
  width: 40px;
  height: 40px;
  background: #e11d48;
  border-radius: 50%;
  position: absolute;
}

.heart::before {
  top: -20px;
  left: 0;
}

.heart::after {
  top: 0;
  left: 20px;
}

/* Пульсация */
@keyframes pulse {
  0%, 100% {
    transform: scale(1) rotate(-45deg);
  }
  50% {
    transform: scale(1.2) rotate(-45deg);
  }
}
.carousel-container {
    position: relative;
    padding: 0px 20px;
    background: #fff;
    margin-top: 0px;
}

.tariff-carousel {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: center;
}

.tariff {
  /* flex: 0 0 85%; */
  max-width: 360px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tariff:hover {
    transform: translateY(-6px);
    box-shadow: 0px 0px 20px rgb(255 0 0 / 40%);
}

.tariff h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    color: #ff0000;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: "Inter/Kyiv", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}

.tariff ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.tariff ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.6;
    color: #333;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 24px;
}

.tariff ul li::before {
    content: "♥";
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 14px;
    color: #ff0000;
}

.tariff p {
  font-size: 23px;
  color: #999;
  margin-top: auto;
}

.tariff p em {
  display: block;
  font-style: italic;
  color: #ff0000;
  font-size: 14px;
  margin-bottom: 4px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ff0000;
  color: #ff0000;
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.carousel-button:hover {
    background: #ff0000;
    color: #fff;
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}
.carousel-container {
  position: relative;
  padding: 25px 20px;
  background: #fff;
}

.tariff-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0 20px 325px!important;
    scroll-snap-type: x mandatory;
    margin-left: 340px;
    justify-content: flex-start;
    position: relative;
    cursor: grab;
}


.tariff-carousel::-webkit-scrollbar {
  display: none; /* Скрыть скроллбар в Chrome/Safari */
}

.tariff {
    min-width: 280px;
    max-width: 360px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgb(255 255 255 / 5%);
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-drag: none;
    justify-content: space-between;
}
@media (max-width: 768px) {
  .tariff {
    flex: 0 0 calc(90% - 12px);
  }
  
  .carousel-button {
    display: none; /* Скрыть кнопки на мобильных */
  }
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden!important;
}
.t1003__outer {
    position: relative;
    max-width: 100vw;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    overflow: hidden !important;
}
.tariff-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    position: relative;
    /* left: 325px; */
}
.tariff {
    min-width: 500px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border-color: red;
}
.flex_tariff{
    display: flex;
    justify-content: space-between;
}
.flex_tariff_p {
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
    color: #ff0000 !important;
    font-weight: 400 !important;
    font-family: 'Zagolovki';
    font-size: 20px!important;
    font-size: 24px;
    font-family: "Inter/Kyiv", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}
.tn-atom_tariff {
    display: inline-block;
    background-color: #ff0000;
    color: #fff!important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 89%;
    margin-top: 25px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    transform-origin: center center;
}

.tn-atom_tariff:hover {
    background-color: #b90000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
}

.tn-atom_tariff:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(225, 29, 72, 0.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255,255,255,0.8);
    border: none;
    font-size: 25px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 29px;
}

.carousel-button.left {
    left: 296px;
}

.carousel-button.right {
  right: 10px;
}
.tariff-carousel.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.tariff-carousel {
  cursor: grab;
  user-select: none;
}

@font-face {
  font-family: 'LOVE';
  src:  url(../fonts/dance_partner.woff);
       font-style: normal;
       font-weight: normal;
}

@font-face {
    font-family: 'lovelab';
    src: url('https://static.tildacdn.com/tild3365-6336-4331-b633-323965363961/NeutralFace.woff') format('woff');
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: 'lovelab';
    src: url('https://static.tildacdn.com/tild6463-6564-4631-a366-346433653235/ceremonioustwo.woff') format('woff');
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: 'lovelab';
    src: url('https://static.tildacdn.com/tild3131-3830-4832-b138-376135663432/allegroscript-_1_.woff') format('woff');
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'lovelab';
    src: url('https://static.tildacdn.com/tild6230-6436-4333-b464-373762393337/UMTypewriter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'lovelab';
    src: url('https://static.tildacdn.com/tild3366-3161-4361-a239-373531623630/TAN-Rosebud.woff') format('woff');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'lovelab';
    src: url('https://static.tildacdn.com/tild6537-6265-4537-b336-646461313663/Fontspring-DEMO-thes.woff') format('woff');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'lovelab';
    src: url('https://static.tildacdn.com/tild3336-6338-4861-a132-373730623133/Roboto-Light.woff') format('woff');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'lovelab';
    src: url('/fonts2/FoglihtenNo06_076.woff') format('woff');
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: 'lovelab';
    src: url('https://static.tildacdn.com/tild6562-6363-4337-b032-383661653233/Felidae.woff') format('woff');
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild3737-3364-4230-a539-343165623232/ofontru_Rosarium.woff') format('woff');
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild6566-6639-4337-a164-643630313161/MixcaseUnmixed.woff') format('woff');
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild3563-3461-4437-b539-383262633233/RobotoMono-Regular.woff') format('woff');
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild6338-3330-4131-a637-633166303066/ViaodaLibre-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild6630-3530-4064-a438-653062613931/Merriweather-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild6263-3639-4666-a338-383637616564/romantica_script-_1_.woff') format('woff');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild3937-3032-4539-b166-353262613939/times.woff') format('woff');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild3732-6466-4334-a637-336231373738/Montserrat-Regular.woff') format('woff');
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab2';
    src: url('https://static.tildacdn.com/tild3262-3539-4231-a532-663738623139/EBGaramond-VariableF.woff') format('woff');
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: 'Lovelab3';
    src: url('https://static.tildacdn.com/tild6439-3033-4365-b732-333565343165/ofontru_Rosarium.woff') format('woff');
    font-weight: 400;
    font-style: normal
}
        
@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild6466-6538-4665-b134-306264373966/RondoluxCyrillic-Ser.woff') format('woff');
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild3666-3064-4931-b331-353335386463/Miss_Katherine_cyril.woff') format('woff');
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild6261-6133-4239-a338-393431653735/HoneyVineyard-Regula.woff') format('woff');
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild6664-6332-4538-a237-313165323330/CormorantInfant-Regu.woff') format('woff');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild6563-6536-4234-b137-636262373961/LeJardinFloral.woff') format('woff');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild3130-3765-4762-b364-623032393564/LeJardinRegular.woff') format('woff');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild3035-6633-4064-b433-393661333364/PlayfairDisplay-Regu.woff') format('woff');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild3230-3437-4530-a232-396664323034/CormorantGaramond-Re.woff') format('woff');
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: 'Zagolovki';
    src: url('https://static.tildacdn.com/tild3736-3036-4933-a362-326464376337/CormorantSC-Medium.woff') format('woff');
    font-weight: 900;
    font-style: normal
}
@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild6263-3365-4433-b337-623132313864/PlayfairDisplay.woff') format('woff');
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild3138-6535-4261-b831-323665333962/marianna.woff') format('woff');
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild6631-3231-4933-b135-393339306438/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild6432-3765-4963-a162-336334356133/Forum-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild3636-3338-4434-a531-383532383536/timesnewromanpsmt.woff') format('woff');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild3833-6639-4730-b632-363930313034/FuturaBookC.woff') format('woff');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild3137-3935-4163-a335-383161336530/FuturaLightC.woff') format('woff');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild6462-6235-4234-b335-323535366661/Floriselscript.woff') format('woff');
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: 'primer';
    src: url('https://static.tildacdn.com/tild6631-6438-4639-b138-343435303433/AlayaRozaDemo.woff') format('woff');
    font-weight: 900;
    font-style: normal
}
       
           .t396 .t-animate[data-animate-style="fadein"],
            .t396 .t-animate[data-animate-style="fadeinup"],
            .t396 .t-animate[data-animate-style="fadeindown"],
            .t396 .t-animate[data-animate-style="fadeinleft"],
            .t396 .t-animate[data-animate-style="fadeinright"],
            .t396 .t-animate[data-animate-style="zoomin"],
            .t396 .t-animate[data-animate-style="zoomout"] {
                opacity: 0;
                -webkit-transition-property: opacity, transform;
                transition-property: opacity, transform;
                -webkit-transition-duration: 1s;
                transition-duration: 1s;
                -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                .t396 .t-animate[data-animate-style-res-960="fadein"],
                .t396 .t-animate[data-animate-style-res-960="fadeinup"],
                .t396 .t-animate[data-animate-style-res-960="fadeindown"],
                .t396 .t-animate[data-animate-style-res-960="fadeinleft"],
                .t396 .t-animate[data-animate-style-res-960="fadeinright"],
                .t396 .t-animate[data-animate-style-res-960="zoomin"],
                .t396 .t-animate[data-animate-style-res-960="zoomout"] {
                    opacity: 0;
                    -webkit-transition-property: opacity, transform;
                    transition-property: opacity, transform;
                    -webkit-transition-duration: 1s;
                    transition-duration: 1s;
                    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                    -webkit-backface-visibility: hidden;
                    backface-visibility: hidden;
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                .t396 .t-animate[data-animate-style-res-640="fadein"],
                .t396 .t-animate[data-animate-style-res-640="fadeinup"],
                .t396 .t-animate[data-animate-style-res-640="fadeindown"],
                .t396 .t-animate[data-animate-style-res-640="fadeinleft"],
                .t396 .t-animate[data-animate-style-res-640="fadeinright"],
                .t396 .t-animate[data-animate-style-res-640="zoomin"],
                .t396 .t-animate[data-animate-style-res-640="zoomout"] {
                    opacity: 0;
                    -webkit-transition-property: opacity, transform;
                    transition-property: opacity, transform;
                    -webkit-transition-duration: 1s;
                    transition-duration: 1s;
                    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                    -webkit-backface-visibility: hidden;
                    backface-visibility: hidden;
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                .t396 .t-animate[data-animate-style-res-480="fadein"],
                .t396 .t-animate[data-animate-style-res-480="fadeinup"],
                .t396 .t-animate[data-animate-style-res-480="fadeindown"],
                .t396 .t-animate[data-animate-style-res-480="fadeinleft"],
                .t396 .t-animate[data-animate-style-res-480="fadeinright"],
                .t396 .t-animate[data-animate-style-res-480="zoomin"],
                .t396 .t-animate[data-animate-style-res-480="zoomout"] {
                    opacity: 0;
                    -webkit-transition-property: opacity, transform;
                    transition-property: opacity, transform;
                    -webkit-transition-duration: 1s;
                    transition-duration: 1s;
                    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                    -webkit-backface-visibility: hidden;
                    backface-visibility: hidden;
                }
            }
            @media screen and (max-width: 479px) {
                .t396 .t-animate[data-animate-style-res-320="fadein"],
                .t396 .t-animate[data-animate-style-res-320="fadeinup"],
                .t396 .t-animate[data-animate-style-res-320="fadeindown"],
                .t396 .t-animate[data-animate-style-res-320="fadeinleft"],
                .t396 .t-animate[data-animate-style-res-320="fadeinright"],
                .t396 .t-animate[data-animate-style-res-320="zoomin"],
                .t396 .t-animate[data-animate-style-res-320="zoomout"] {
                    opacity: 0;
                    -webkit-transition-property: opacity, transform;
                    transition-property: opacity, transform;
                    -webkit-transition-duration: 1s;
                    transition-duration: 1s;
                    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
                    -webkit-backface-visibility: hidden;
                    backface-visibility: hidden;
                }
            }
            .t396 .t-title.t-animate {
                -webkit-transition-duration: 1.2s;
                transition-duration: 1.2s;
            }
            .t396 .t-descr.t-animate,
            .t396 .t-uptitle.t-animate,
            .t396 .t-subtitle.t-animate,
            .t396 .t-text.t-animate {
                -webkit-transition-duration: 0.7s;
                transition-duration: 0.7s;
            }
            .t396 .t-item.t-animate {
                -webkit-transition-duration: 0.5s;
                transition-duration: 0.5s;
            }
            .t396 .t-animate[data-animate-style="fadein"] {
                opacity: 0;
                transform: none;
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate[data-animate-style-res-960="fadein"] {
                    opacity: 0;
                    transform: none;
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate[data-animate-style-res-640="fadein"] {
                    opacity: 0;
                    transform: none;
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate[data-animate-style-res-480="fadein"] {
                    opacity: 0;
                    transform: none;
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate[data-animate-style-res-320="fadein"] {
                    opacity: 0;
                    transform: none;
                }
            }
            .t396 .t-animate_started[data-animate-style="fadein"] {
                opacity: 1;
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-960="fadein"] {
                    opacity: 1;
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-640="fadein"] {
                    opacity: 1;
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-480="fadein"] {
                    opacity: 1;
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-320="fadein"] {
                    opacity: 1;
                }
            }
            .t396 .t-animate[data-animate-style="fadeinup"] {
                -webkit-transform: translate(0, 100px);
                transform: translate(0, 100px);
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate[data-animate-style-res-960="fadeinup"] {
                    -webkit-transform: translate(0, 100px);
                    transform: translate(0, 100px);
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate[data-animate-style-res-640="fadeinup"] {
                    -webkit-transform: translate(0, 100px);
                    transform: translate(0, 100px);
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate[data-animate-style-res-480="fadeinup"] {
                    -webkit-transform: translate(0, 100px);
                    transform: translate(0, 100px);
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate[data-animate-style-res-320="fadeinup"] {
                    -webkit-transform: translate(0, 100px);
                    transform: translate(0, 100px);
                }
            }
            .t396 .t-animate_started[data-animate-style="fadeinup"] {
                opacity: 1;
                -webkit-transform: none;
                transform: none;
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-960="fadeinup"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-640="fadeinup"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-480="fadeinup"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-320="fadeinup"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            .t396 .t-animate[data-animate-style="fadeindown"] {
                -webkit-transform: translate(0, -100px);
                transform: translate(0, -100px);
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate[data-animate-style-res-960="fadeindown"] {
                    -webkit-transform: translate(0, -100px);
                    transform: translate(0, -100px);
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate[data-animate-style-res-640="fadeindown"] {
                    -webkit-transform: translate(0, -100px);
                    transform: translate(0, -100px);
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate[data-animate-style-res-480="fadeindown"] {
                    -webkit-transform: translate(0, -100px);
                    transform: translate(0, -100px);
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate[data-animate-style-res-320="fadeindown"] {
                    -webkit-transform: translate(0, -100px);
                    transform: translate(0, -100px);
                }
            }
            .t396 .t-animate_started[data-animate-style="fadeindown"] {
                opacity: 1;
                -webkit-transform: none;
                transform: none;
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-960="fadeindown"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-640="fadeindown"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-480="fadeindown"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-320="fadeindown"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            .t396 .t-animate[data-animate-style="fadeinleft"] {
                -webkit-transform: translate(100px, 0);
                transform: translate(100px, 0);
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate[data-animate-style-res-960="fadeinleft"] {
                    -webkit-transform: translate(100px, 0);
                    transform: translate(100px, 0);
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate[data-animate-style-res-640="fadeinleft"] {
                    -webkit-transform: translate(100px, 0);
                    transform: translate(100px, 0);
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate[data-animate-style-res-480="fadeinleft"] {
                    -webkit-transform: translate(100px, 0);
                    transform: translate(100px, 0);
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate[data-animate-style-res-320="fadeinleft"] {
                    -webkit-transform: translate(100px, 0);
                    transform: translate(100px, 0);
                }
            }
            .t396 .t-animate_started[data-animate-style="fadeinleft"] {
                opacity: 1;
                -webkit-transform: none;
                transform: none;
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-960="fadeinleft"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-640="fadeinleft"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-480="fadeinleft"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-320="fadeinleft"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            .t396 .t-animate[data-animate-style="fadeinright"] {
                -webkit-transform: translate(-100px, 0);
                transform: translate(-100px, 0);
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate[data-animate-style-res-960="fadeinright"] {
                    -webkit-transform: translate(-100px, 0);
                    transform: translate(-100px, 0);
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate[data-animate-style-res-640="fadeinright"] {
                    -webkit-transform: translate(-100px, 0);
                    transform: translate(-100px, 0);
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate[data-animate-style-res-480="fadeinright"] {
                    -webkit-transform: translate(-100px, 0);
                    transform: translate(-100px, 0);
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate[data-animate-style-res-320="fadeinright"] {
                    -webkit-transform: translate(-100px, 0);
                    transform: translate(-100px, 0);
                }
            }
            .t396 .t-animate_started[data-animate-style="fadeinright"] {
                opacity: 1;
                -webkit-transform: none;
                transform: none;
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-960="fadeinright"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-640="fadeinright"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-480="fadeinright"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-320="fadeinright"] {
                    opacity: 1;
                    -webkit-transform: none;
                    transform: none;
                }
            }
            .t396 .t-animate[data-animate-style="zoomin"] {
                -webkit-transform: scale(0.9);
                transform: scale(0.9);
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate[data-animate-style-res-960="zoomin"] {
                    -webkit-transform: scale(0.9);
                    transform: scale(0.9);
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate[data-animate-style-res-640="zoomin"] {
                    -webkit-transform: scale(0.9);
                    transform: scale(0.9);
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate[data-animate-style-res-480="zoomin"] {
                    -webkit-transform: scale(0.9);
                    transform: scale(0.9);
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate[data-animate-style-res-320="zoomin"] {
                    -webkit-transform: scale(0.9);
                    transform: scale(0.9);
                }
            }
            .t396 .t-animate_started[data-animate-style="zoomin"] {
                opacity: 1;
                -webkit-transform: scale(1);
                transform: scale(1);
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-960="zoomin"] {
                    opacity: 1;
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-640="zoomin"] {
                    opacity: 1;
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-480="zoomin"] {
                    opacity: 1;
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-320="zoomin"] {
                    opacity: 1;
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }
            }
            .t396 .t-animate[data-animate-style="zoomout"] {
                -webkit-transform: scale(1.2);
                transform: scale(1.2);
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate[data-animate-style-res-960="zoomout"] {
                    -webkit-transform: scale(1.2);
                    transform: scale(1.2);
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate[data-animate-style-res-640="zoomout"] {
                    -webkit-transform: scale(1.2);
                    transform: scale(1.2);
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate[data-animate-style-res-480="zoomout"] {
                    -webkit-transform: scale(1.2);
                    transform: scale(1.2);
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate[data-animate-style-res-320="zoomout"] {
                    -webkit-transform: scale(1.2);
                    transform: scale(1.2);
                }
            }
            .t396 .t-animate_started[data-animate-style="zoomout"] {
                opacity: 1;
                -webkit-transform: scale(1);
                transform: scale(1);
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-960="zoomout"] {
                    opacity: 1;
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-640="zoomout"] {
                    opacity: 1;
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-480="zoomout"] {
                    opacity: 1;
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate_started[data-animate-style-res-320="zoomout"] {
                    opacity: 1;
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }
            }
            .t396 .t-animate_started[data-animate-distance],
            .t396 .t-animate_started[data-animate-scale] {
                -webkit-transform: none !important;
                transform: none !important;
            }
            @media screen and (min-width: 960px) and (max-width: 1199px) {
                #allrecords .t396 .t-animate_started[data-animate-distance-res-960],
                #allrecords .t396 .t-animate_started[data-animate-style-res-960="zoomout"] {
                    -webkit-transform: none !important;
                    transform: none !important;
                }
            }
            @media screen and (min-width: 640px) and (max-width: 959px) {
                #allrecords .t396 .t-animate_started[data-animate-distance-res-640],
                #allrecords .t396 .t-animate_started[data-animate-style-res-640="zoomout"] {
                    -webkit-transform: none !important;
                    transform: none !important;
                }
            }
            @media screen and (min-width: 480px) and (max-width: 639px) {
                #allrecords .t396 .t-animate_started[data-animate-distance-res-480],
                #allrecords .t396 .t-animate_started[data-animate-style-res-480="zoomout"] {
                    -webkit-transform: none !important;
                    transform: none !important;
                }
            }
            @media screen and (max-width: 479px) {
                #allrecords .t396 .t-animate_started[data-animate-distance-res-320],
                #allrecords .t396 .t-animate_started[data-animate-style-res-320="zoomout"] {
                    -webkit-transform: none !important;
                    transform: none !important;
                }
            }
          .t360__bar {
                        background-color: #030bff;
                    }
            .t-input-group.js-error-control-box .t-input-phonemask {
                border: 0 !important;
            }
            .t-input_pvis.t-input-phonemask__wrap {
                padding-top: 0;
                padding-bottom: 0;
            }
            .t-input-phonemask__wrap {
                position: relative;
                display: -ms-flexbox;
                display: -webkit-box;
                display: flex;
            }
            .t-input .t-input-phonemask,
            .t-input-phonemask {
                height: auto;
                padding: 0;
                background-color: transparent;
            }
            .t-input-phonemask__options-wrap {
                display: none;
                z-index: 9999999;
                position: fixed;
                min-width: 410px;
                max-height: 200px;
                padding-top: 5px;
                padding-bottom: 5px;
                background-color: #fff;
                border: 1px solid #eee;
                border-radius: 7px;
                -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
                box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
                overflow-y: scroll;
            }
            .t-input-phonemask__options-wrap.t-input-phonemask__options-wrap_open {
                display: block;
            }
            .t-input-phonemask__options-item {
                display: -ms-flexbox;
                display: -webkit-box;
                display: flex;
                -ms-flex-pack: end;
                -webkit-box-pack: justify;
                justify-content: space-between;
                -ms-flex-align: center;
                -webkit-box-align: center;
                align-items: center;
                padding: 8px 10px;
                font-family: sans-serif;
                font-size: 14px;
                color: #000 !important;
                cursor: pointer;
            }
            .t-input-phonemask__options-right {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }
            .t-input-phonemask__options-item.t-input-phonemask__options-item_chosen,
            .t-input-phonemask__options-item:hover {
                background-color: #eee;
            }
            .t-input-phonemask__select {
                display: -ms-flexbox;
                display: -webkit-box;
                display: flex;
                -ms-flex-align: center;
                -webkit-box-align: center;
                align-items: center;
                -ms-flex-negative: 0;
                flex-shrink: 0;
                margin-right: 5px;
                margin-left: 0;
                font-size: 16px;
                cursor: pointer;
            }
            .t-input-phonemask__select-triangle {
                position: relative;
                margin-left: 6px;
                border-style: solid;
                border-width: 5px 4px 0;
                border-color: #9a9a9a transparent transparent;
            }
            .t-input-phonemask__select-code {
                white-space: nowrap;
            }
            .t-input-phonemask__options-code,
            .t-input-phonemask__select-code {
                margin-left: 10px;
            }
            .t-input-phonemask__options-flag,
            .t-input-phonemask__select-flag {
                width: 18px;
                min-width: 18px;
                height: 13px;
                background-color: #c5c5c5;
                -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            }
            .t-input-phonemask__options-flag {
                margin-left: 8px;
            }
            .t-input-phonemask__options-wrap::-webkit-scrollbar {
                width: 8px;
                height: 15px;
            }
            .t-input-phonemask__options-wrap::-webkit-scrollbar-thumb {
                border-radius: 7px;
                background: #c2c9d2;
            }
            @media screen and (max-width: 640px) {
                .t-input-phonemask__options-wrap {
                    min-width: auto;
                }
            }
            .t-input-phonemask__options-flag,
            .t-input-phonemask__select-flag {
                background-image: url(https://static.tildacdn.com/lib/flags/flags7.png);
                background-repeat: no-repeat;
                display: inline-block;
            }
            .t-input-phonemask__options-flag_np,
            .t-input-phonemask__select-flag[data-phonemask-flag="np"] {
                width: 16px;
                min-width: 16px;
            }
            .t-input-phonemask__options-flag_ad,
            .t-input-phonemask__select-flag[data-phonemask-flag="ad"] {
                background-position: -5px -5px;
            }
            .t-input-phonemask__options-flag_ae,
            .t-input-phonemask__select-flag[data-phonemask-flag="ae"] {
                background-position: -33px -5px;
            }
            .t-input-phonemask__options-flag_af,
            .t-input-phonemask__select-flag[data-phonemask-flag="af"] {
                background-position: -61px -5px;
            }
            .t-input-phonemask__options-flag_ag,
            .t-input-phonemask__select-flag[data-phonemask-flag="ag"] {
                background-position: -89px -5px;
            }
            .t-input-phonemask__options-flag_al,
            .t-input-phonemask__select-flag[data-phonemask-flag="al"] {
                background-position: -117px -5px;
            }
            .t-input-phonemask__options-flag_am,
            .t-input-phonemask__select-flag[data-phonemask-flag="am"] {
                background-position: -145px -5px;
            }
            .t-input-phonemask__options-flag_ao,
            .t-input-phonemask__select-flag[data-phonemask-flag="ao"] {
                background-position: -173px -5px;
            }
            .t-input-phonemask__options-flag_ar,
            .t-input-phonemask__select-flag[data-phonemask-flag="ar"] {
                background-position: -201px -5px;
            }
            .t-input-phonemask__options-flag_at,
            .t-input-phonemask__select-flag[data-phonemask-flag="at"] {
                background-position: -229px -5px;
            }
            .t-input-phonemask__options-flag_au,
            .t-input-phonemask__select-flag[data-phonemask-flag="au"] {
                background-position: -257px -5px;
            }
            .t-input-phonemask__options-flag_az,
            .t-input-phonemask__select-flag[data-phonemask-flag="az"] {
                background-position: -285px -5px;
            }
            .t-input-phonemask__options-flag_ba,
            .t-input-phonemask__select-flag[data-phonemask-flag="ba"] {
                background-position: -313px -5px;
            }
            .t-input-phonemask__options-flag_bb,
            .t-input-phonemask__select-flag[data-phonemask-flag="bb"] {
                background-position: -5px -28px;
            }
            .t-input-phonemask__options-flag_bd,
            .t-input-phonemask__select-flag[data-phonemask-flag="bd"] {
                background-position: -33px -28px;
            }
            .t-input-phonemask__options-flag_be,
            .t-input-phonemask__select-flag[data-phonemask-flag="be"] {
                background-position: -61px -28px;
            }
            .t-input-phonemask__options-flag_bf,
            .t-input-phonemask__select-flag[data-phonemask-flag="bf"] {
                background-position: -89px -28px;
            }
            .t-input-phonemask__options-flag_bg,
            .t-input-phonemask__select-flag[data-phonemask-flag="bg"] {
                background-position: -117px -28px;
            }
            .t-input-phonemask__options-flag_bh,
            .t-input-phonemask__select-flag[data-phonemask-flag="bh"] {
                background-position: -145px -28px;
            }
            .t-input-phonemask__options-flag_bi,
            .t-input-phonemask__select-flag[data-phonemask-flag="bi"] {
                background-position: -173px -28px;
            }
            .t-input-phonemask__options-flag_bj,
            .t-input-phonemask__select-flag[data-phonemask-flag="bj"] {
                background-position: -201px -28px;
            }
            .t-input-phonemask__options-flag_bm,
            .t-input-phonemask__select-flag[data-phonemask-flag="bm"] {
                background-position: -229px -28px;
            }
            .t-input-phonemask__options-flag_bn,
            .t-input-phonemask__select-flag[data-phonemask-flag="bn"] {
                background-position: -257px -28px;
            }
            .t-input-phonemask__options-flag_bo,
            .t-input-phonemask__select-flag[data-phonemask-flag="bo"] {
                background-position: -285px -28px;
            }
            .t-input-phonemask__options-flag_bq,
            .t-input-phonemask__select-flag[data-phonemask-flag="bq"] {
                background-position: -89px -258px;
            }
            .t-input-phonemask__options-flag_br,
            .t-input-phonemask__select-flag[data-phonemask-flag="br"] {
                background-position: -313px -28px;
            }
            .t-input-phonemask__options-flag_bs,
            .t-input-phonemask__select-flag[data-phonemask-flag="bs"] {
                background-position: -5px -51px;
            }
            .t-input-phonemask__options-flag_bt,
            .t-input-phonemask__select-flag[data-phonemask-flag="bt"] {
                background-position: -33px -51px;
            }
            .t-input-phonemask__options-flag_bw,
            .t-input-phonemask__select-flag[data-phonemask-flag="bw"] {
                background-position: -61px -51px;
            }
            .t-input-phonemask__options-flag_by,
            .t-input-phonemask__select-flag[data-phonemask-flag="by"] {
                background-position: -89px -51px;
            }
            .t-input-phonemask__options-flag_bz,
            .t-input-phonemask__select-flag[data-phonemask-flag="bz"] {
                background-position: -117px -51px;
            }
            .t-input-phonemask__options-flag_ca,
            .t-input-phonemask__select-flag[data-phonemask-flag="ca"] {
                background-position: -145px -51px;
            }
            .t-input-phonemask__options-flag_ky,
            .t-input-phonemask__select-flag[data-phonemask-flag="ky"] {
                background-position: -367px -28px;
            }
            .t-input-phonemask__options-flag_cd,
            .t-input-phonemask__select-flag[data-phonemask-flag="cd"] {
                background-position: -173px -51px;
            }
            .t-input-phonemask__options-flag_cf,
            .t-input-phonemask__select-flag[data-phonemask-flag="cf"] {
                background-position: -201px -51px;
            }
            .t-input-phonemask__options-flag_cg,
            .t-input-phonemask__select-flag[data-phonemask-flag="cg"] {
                background-position: -229px -51px;
            }
            .t-input-phonemask__options-flag_ch,
            .t-input-phonemask__select-flag[data-phonemask-flag="ch"] {
                background-position: -257px -51px;
            }
            .t-input-phonemask__options-flag_ci,
            .t-input-phonemask__select-flag[data-phonemask-flag="ci"] {
                background-position: -285px -51px;
            }
            .t-input-phonemask__options-flag_ck,
            .t-input-phonemask__select-flag[data-phonemask-flag="ck"] {
                background-position: -313px -51px;
            }
            .t-input-phonemask__options-flag_cl,
            .t-input-phonemask__select-flag[data-phonemask-flag="cl"] {
                background-position: -5px -74px;
            }
            .t-input-phonemask__options-flag_cm,
            .t-input-phonemask__select-flag[data-phonemask-flag="cm"] {
                background-position: -33px -74px;
            }
            .t-input-phonemask__options-flag_cn,
            .t-input-phonemask__select-flag[data-phonemask-flag="cn"] {
                background-position: -61px -74px;
            }
            .t-input-phonemask__options-flag_co,
            .t-input-phonemask__select-flag[data-phonemask-flag="co"] {
                background-position: -89px -74px;
            }
            .t-input-phonemask__options-flag_cr,
            .t-input-phonemask__select-flag[data-phonemask-flag="cr"] {
                background-position: -117px -74px;
            }
            .t-input-phonemask__options-flag_cu,
            .t-input-phonemask__select-flag[data-phonemask-flag="cu"] {
                background-position: -145px -74px;
            }
            .t-input-phonemask__options-flag_cv,
            .t-input-phonemask__select-flag[data-phonemask-flag="cv"] {
                background-position: -173px -74px;
            }
            .t-input-phonemask__options-flag_cz,
            .t-input-phonemask__select-flag[data-phonemask-flag="cz"] {
                background-position: -229px -74px;
            }
            .t-input-phonemask__options-flag_cy,
            .t-input-phonemask__select-flag[data-phonemask-flag="cy"] {
                background-position: -201px -74px;
            }
            .t-input-phonemask__options-flag_de,
            .t-input-phonemask__select-flag[data-phonemask-flag="de"] {
                background-position: -257px -74px;
            }
            .t-input-phonemask__options-flag_dj,
            .t-input-phonemask__select-flag[data-phonemask-flag="dj"] {
                background-position: -285px -74px;
            }
            .t-input-phonemask__options-flag_dk,
            .t-input-phonemask__select-flag[data-phonemask-flag="dk"] {
                background-position: -313px -74px;
            }
            .t-input-phonemask__options-flag_dm,
            .t-input-phonemask__select-flag[data-phonemask-flag="dm"] {
                background-position: -5px -97px;
            }
            .t-input-phonemask__options-flag_do,
            .t-input-phonemask__select-flag[data-phonemask-flag="do"] {
                background-position: -33px -97px;
            }
            .t-input-phonemask__options-flag_dz,
            .t-input-phonemask__select-flag[data-phonemask-flag="dz"] {
                background-position: -61px -97px;
            }
            .t-input-phonemask__options-flag_ec,
            .t-input-phonemask__select-flag[data-phonemask-flag="ec"] {
                background-position: -89px -97px;
            }
            .t-input-phonemask__options-flag_ee,
            .t-input-phonemask__select-flag[data-phonemask-flag="ee"] {
                background-position: -117px -97px;
            }
            .t-input-phonemask__options-flag_eg,
            .t-input-phonemask__select-flag[data-phonemask-flag="eg"] {
                background-position: -145px -97px;
            }
            .t-input-phonemask__options-flag_eh,
            .t-input-phonemask__select-flag[data-phonemask-flag="eh"] {
                background-position: -173px -97px;
            }
            .t-input-phonemask__options-flag_er,
            .t-input-phonemask__select-flag[data-phonemask-flag="er"] {
                background-position: -201px -97px;
            }
            .t-input-phonemask__options-flag_es,
            .t-input-phonemask__select-flag[data-phonemask-flag="es"] {
                background-position: -229px -97px;
            }
            .t-input-phonemask__options-flag_et,
            .t-input-phonemask__select-flag[data-phonemask-flag="et"] {
                background-position: -257px -97px;
            }
            .t-input-phonemask__options-flag_fi,
            .t-input-phonemask__select-flag[data-phonemask-flag="fi"] {
                background-position: -285px -97px;
            }
            .t-input-phonemask__options-flag_fj,
            .t-input-phonemask__select-flag[data-phonemask-flag="fj"] {
                background-position: -313px -97px;
            }
            .t-input-phonemask__options-flag_fm,
            .t-input-phonemask__select-flag[data-phonemask-flag="fm"] {
                background-position: -5px -120px;
            }
            .t-input-phonemask__options-flag_fr,
            .t-input-phonemask__select-flag[data-phonemask-flag="fr"] {
                background-position: -33px -120px;
            }
            .t-input-phonemask__options-flag_ga,
            .t-input-phonemask__select-flag[data-phonemask-flag="ga"] {
                background-position: -61px -120px;
            }
            .t-input-phonemask__options-flag_gb,
            .t-input-phonemask__select-flag[data-phonemask-flag="gb"] {
                background-position: -89px -120px;
            }
            .t-input-phonemask__options-flag_gd,
            .t-input-phonemask__select-flag[data-phonemask-flag="gd"] {
                background-position: -117px -120px;
            }
            .t-input-phonemask__options-flag_ge,
            .t-input-phonemask__select-flag[data-phonemask-flag="ge"] {
                background-position: -145px -120px;
            }
            .t-input-phonemask__options-flag_gh,
            .t-input-phonemask__select-flag[data-phonemask-flag="gh"] {
                background-position: -173px -120px;
            }
            .t-input-phonemask__options-flag_gm,
            .t-input-phonemask__select-flag[data-phonemask-flag="gm"] {
                background-position: -201px -120px;
            }
            .t-input-phonemask__options-flag_gn,
            .t-input-phonemask__select-flag[data-phonemask-flag="gn"] {
                background-position: -229px -120px;
            }
            .t-input-phonemask__options-flag_gq,
            .t-input-phonemask__select-flag[data-phonemask-flag="gq"] {
                background-position: -257px -120px;
            }
            .t-input-phonemask__options-flag_gr,
            .t-input-phonemask__select-flag[data-phonemask-flag="gr"] {
                background-position: -285px -120px;
            }
            .t-input-phonemask__options-flag_gt,
            .t-input-phonemask__select-flag[data-phonemask-flag="gt"] {
                background-position: -313px -120px;
            }
            .t-input-phonemask__options-flag_gw,
            .t-input-phonemask__select-flag[data-phonemask-flag="gw"] {
                background-position: -5px -143px;
            }
            .t-input-phonemask__options-flag_gy,
            .t-input-phonemask__select-flag[data-phonemask-flag="gy"] {
                background-position: -33px -143px;
            }
            .t-input-phonemask__options-flag_hk,
            .t-input-phonemask__select-flag[data-phonemask-flag="hk"] {
                background-position: -61px -143px;
            }
            .t-input-phonemask__options-flag_hn,
            .t-input-phonemask__select-flag[data-phonemask-flag="hn"] {
                background-position: -89px -143px;
            }
            .t-input-phonemask__options-flag_hr,
            .t-input-phonemask__select-flag[data-phonemask-flag="hr"] {
                background-position: -117px -143px;
            }
            .t-input-phonemask__options-flag_ht,
            .t-input-phonemask__select-flag[data-phonemask-flag="ht"] {
                background-position: -145px -143px;
            }
            .t-input-phonemask__options-flag_hu,
            .t-input-phonemask__select-flag[data-phonemask-flag="hu"] {
                background-position: -173px -143px;
            }
            .t-input-phonemask__options-flag_id,
            .t-input-phonemask__select-flag[data-phonemask-flag="id"] {
                background-position: -201px -143px;
            }
            .t-input-phonemask__options-flag_ie,
            .t-input-phonemask__select-flag[data-phonemask-flag="ie"] {
                background-position: -229px -143px;
            }
            .t-input-phonemask__options-flag_il,
            .t-input-phonemask__select-flag[data-phonemask-flag="il"] {
                background-position: -257px -143px;
            }
            .t-input-phonemask__options-flag_in,
            .t-input-phonemask__select-flag[data-phonemask-flag="in"] {
                background-position: -285px -143px;
            }
            .t-input-phonemask__options-flag_iq,
            .t-input-phonemask__select-flag[data-phonemask-flag="iq"] {
                background-position: -313px -143px;
            }
            .t-input-phonemask__options-flag_ir,
            .t-input-phonemask__select-flag[data-phonemask-flag="ir"] {
                background-position: -5px -166px;
            }
            .t-input-phonemask__options-flag_is,
            .t-input-phonemask__select-flag[data-phonemask-flag="is"] {
                background-position: -33px -166px;
            }
            .t-input-phonemask__options-flag_it,
            .t-input-phonemask__select-flag[data-phonemask-flag="it"] {
                background-position: -61px -166px;
            }
            .t-input-phonemask__options-flag_jm,
            .t-input-phonemask__select-flag[data-phonemask-flag="jm"] {
                background-position: -89px -166px;
            }
            .t-input-phonemask__options-flag_jo,
            .t-input-phonemask__select-flag[data-phonemask-flag="jo"] {
                background-position: -117px -166px;
            }
            .t-input-phonemask__options-flag_jp,
            .t-input-phonemask__select-flag[data-phonemask-flag="jp"] {
                background-position: -145px -166px;
            }
            .t-input-phonemask__options-flag_ke,
            .t-input-phonemask__select-flag[data-phonemask-flag="ke"] {
                background-position: -173px -166px;
            }
            .t-input-phonemask__options-flag_kg,
            .t-input-phonemask__select-flag[data-phonemask-flag="kg"] {
                background-position: -201px -166px;
            }
            .t-input-phonemask__options-flag_kh,
            .t-input-phonemask__select-flag[data-phonemask-flag="kh"] {
                background-position: -229px -166px;
            }
            .t-input-phonemask__options-flag_ki,
            .t-input-phonemask__select-flag[data-phonemask-flag="ki"] {
                background-position: -257px -166px;
            }
            .t-input-phonemask__options-flag_km,
            .t-input-phonemask__select-flag[data-phonemask-flag="km"] {
                background-position: -285px -166px;
            }
            .t-input-phonemask__options-flag_kn,
            .t-input-phonemask__select-flag[data-phonemask-flag="kn"] {
                background-position: -313px -166px;
            }
            .t-input-phonemask__options-flag_kp,
            .t-input-phonemask__select-flag[data-phonemask-flag="kp"] {
                background-position: -5px -189px;
            }
            .t-input-phonemask__options-flag_kr,
            .t-input-phonemask__select-flag[data-phonemask-flag="kr"] {
                background-position: -33px -189px;
            }
            .t-input-phonemask__options-flag_ks,
            .t-input-phonemask__select-flag[data-phonemask-flag="ks"] {
                background-position: -61px -189px;
            }
            .t-input-phonemask__options-flag_kw,
            .t-input-phonemask__select-flag[data-phonemask-flag="kw"] {
                background-position: -89px -189px;
            }
            .t-input-phonemask__options-flag_kz,
            .t-input-phonemask__select-flag[data-phonemask-flag="kz"] {
                background-position: -117px -189px;
            }
            .t-input-phonemask__options-flag_la,
            .t-input-phonemask__select-flag[data-phonemask-flag="la"] {
                background-position: -145px -189px;
            }
            .t-input-phonemask__options-flag_lb,
            .t-input-phonemask__select-flag[data-phonemask-flag="lb"] {
                background-position: -173px -189px;
            }
            .t-input-phonemask__options-flag_lc,
            .t-input-phonemask__select-flag[data-phonemask-flag="lc"] {
                background-position: -201px -189px;
            }
            .t-input-phonemask__options-flag_li,
            .t-input-phonemask__select-flag[data-phonemask-flag="li"] {
                background-position: -229px -189px;
            }
            .t-input-phonemask__options-flag_lk,
            .t-input-phonemask__select-flag[data-phonemask-flag="lk"] {
                background-position: -257px -189px;
            }
            .t-input-phonemask__options-flag_lr,
            .t-input-phonemask__select-flag[data-phonemask-flag="lr"] {
                background-position: -285px -189px;
            }
            .t-input-phonemask__options-flag_ls,
            .t-input-phonemask__select-flag[data-phonemask-flag="ls"] {
                background-position: -313px -189px;
            }
            .t-input-phonemask__options-flag_lt,
            .t-input-phonemask__select-flag[data-phonemask-flag="lt"] {
                background-position: -5px -212px;
            }
            .t-input-phonemask__options-flag_lu,
            .t-input-phonemask__select-flag[data-phonemask-flag="lu"] {
                background-position: -33px -212px;
            }
            .t-input-phonemask__options-flag_lv,
            .t-input-phonemask__select-flag[data-phonemask-flag="lv"] {
                background-position: -61px -212px;
            }
            .t-input-phonemask__options-flag_ly,
            .t-input-phonemask__select-flag[data-phonemask-flag="ly"] {
                background-position: -89px -212px;
            }
            .t-input-phonemask__options-flag_ma,
            .t-input-phonemask__select-flag[data-phonemask-flag="ma"] {
                background-position: -117px -212px;
            }
            .t-input-phonemask__options-flag_mc,
            .t-input-phonemask__select-flag[data-phonemask-flag="mc"] {
                background-position: -145px -212px;
            }
            .t-input-phonemask__options-flag_md,
            .t-input-phonemask__select-flag[data-phonemask-flag="md"] {
                background-position: -173px -212px;
            }
            .t-input-phonemask__options-flag_me,
            .t-input-phonemask__select-flag[data-phonemask-flag="me"] {
                background-position: -201px -212px;
            }
            .t-input-phonemask__options-flag_mg,
            .t-input-phonemask__select-flag[data-phonemask-flag="mg"] {
                background-position: -229px -212px;
            }
            .t-input-phonemask__options-flag_mh,
            .t-input-phonemask__select-flag[data-phonemask-flag="mh"] {
                background-position: -257px -212px;
            }
            .t-input-phonemask__options-flag_mk,
            .t-input-phonemask__select-flag[data-phonemask-flag="mk"] {
                background-position: -285px -212px;
            }
            .t-input-phonemask__options-flag_ml,
            .t-input-phonemask__select-flag[data-phonemask-flag="ml"] {
                background-position: -313px -212px;
            }
            .t-input-phonemask__options-flag_mm,
            .t-input-phonemask__select-flag[data-phonemask-flag="mm"] {
                background-position: -5px -235px;
            }
            .t-input-phonemask__options-flag_mn,
            .t-input-phonemask__select-flag[data-phonemask-flag="mn"] {
                background-position: -33px -235px;
            }
            .t-input-phonemask__options-flag_mo,
            .t-input-phonemask__select-flag[data-phonemask-flag="mo"] {
                background-position: -61px -235px;
            }
            .t-input-phonemask__options-flag_mr,
            .t-input-phonemask__select-flag[data-phonemask-flag="mr"] {
                background-position: -89px -235px;
            }
            .t-input-phonemask__options-flag_mt,
            .t-input-phonemask__select-flag[data-phonemask-flag="mt"] {
                background-position: -117px -235px;
            }
            .t-input-phonemask__options-flag_mu,
            .t-input-phonemask__select-flag[data-phonemask-flag="mu"] {
                background-position: -145px -235px;
            }
            .t-input-phonemask__options-flag_mv,
            .t-input-phonemask__select-flag[data-phonemask-flag="mv"] {
                background-position: -173px -235px;
            }
            .t-input-phonemask__options-flag_mw,
            .t-input-phonemask__select-flag[data-phonemask-flag="mw"] {
                background-position: -201px -235px;
            }
            .t-input-phonemask__options-flag_mb,
            .t-input-phonemask__select-flag[data-phonemask-flag="mb"] {
                background-position: -229px -235px;
            }
            .t-input-phonemask__options-flag_mx,
            .t-input-phonemask__select-flag[data-phonemask-flag="mx"] {
                background-position: -229px -235px;
            }
            .t-input-phonemask__options-flag_my,
            .t-input-phonemask__select-flag[data-phonemask-flag="my"] {
                background-position: -257px -235px;
            }
            .t-input-phonemask__options-flag_mz,
            .t-input-phonemask__select-flag[data-phonemask-flag="mz"] {
                background-position: -285px -235px;
            }
            .t-input-phonemask__options-flag_na,
            .t-input-phonemask__select-flag[data-phonemask-flag="na"] {
                background-position: -313px -235px;
            }
            .t-input-phonemask__options-flag_ne,
            .t-input-phonemask__select-flag[data-phonemask-flag="ne"] {
                background-position: -5px -258px;
            }
            .t-input-phonemask__options-flag_ng,
            .t-input-phonemask__select-flag[data-phonemask-flag="ng"] {
                background-position: -33px -258px;
            }
            .t-input-phonemask__options-flag_ni,
            .t-input-phonemask__select-flag[data-phonemask-flag="ni"] {
                background-position: -61px -258px;
            }
            .t-input-phonemask__options-flag_nl,
            .t-input-phonemask__select-flag[data-phonemask-flag="nl"] {
                background-position: -89px -258px;
            }
            .t-input-phonemask__options-flag_no,
            .t-input-phonemask__select-flag[data-phonemask-flag="no"] {
                background-position: -117px -258px;
            }
            .t-input-phonemask__options-flag_np,
            .t-input-phonemask__select-flag[data-phonemask-flag="np"] {
                background-position: -341px -5px;
            }
            .t-input-phonemask__options-flag_nr,
            .t-input-phonemask__select-flag[data-phonemask-flag="nr"] {
                background-position: -145px -258px;
            }
            .t-input-phonemask__options-flag_nu,
            .t-input-phonemask__select-flag[data-phonemask-flag="nu"] {
                background-position: -173px -258px;
            }
            .t-input-phonemask__options-flag_nc,
            .t-input-phonemask__select-flag[data-phonemask-flag="nc"] {
                background-position: -229px -350px;
            }
            .t-input-phonemask__options-flag_nz,
            .t-input-phonemask__select-flag[data-phonemask-flag="nz"] {
                background-position: -201px -258px;
            }
            .t-input-phonemask__options-flag_om,
            .t-input-phonemask__select-flag[data-phonemask-flag="om"] {
                background-position: -229px -258px;
            }
            .t-input-phonemask__options-flag_pa,
            .t-input-phonemask__select-flag[data-phonemask-flag="pa"] {
                background-position: -257px -258px;
            }
            .t-input-phonemask__options-flag_pe,
            .t-input-phonemask__select-flag[data-phonemask-flag="pe"] {
                background-position: -285px -258px;
            }
            .t-input-phonemask__options-flag_pg,
            .t-input-phonemask__select-flag[data-phonemask-flag="pg"] {
                background-position: -313px -258px;
            }
            .t-input-phonemask__options-flag_ph,
            .t-input-phonemask__select-flag[data-phonemask-flag="ph"] {
                background-position: -5px -281px;
            }
            .t-input-phonemask__options-flag_pk,
            .t-input-phonemask__select-flag[data-phonemask-flag="pk"] {
                background-position: -33px -281px;
            }
            .t-input-phonemask__options-flag_pl,
            .t-input-phonemask__select-flag[data-phonemask-flag="pl"] {
                background-position: -61px -281px;
            }
            .t-input-phonemask__options-flag_ps,
            .t-input-phonemask__select-flag[data-phonemask-flag="ps"] {
                background-position: -89px -281px;
            }
            .t-input-phonemask__options-flag_pt,
            .t-input-phonemask__select-flag[data-phonemask-flag="pt"] {
                background-position: -117px -281px;
            }
            .t-input-phonemask__options-flag_pw,
            .t-input-phonemask__select-flag[data-phonemask-flag="pw"] {
                background-position: -145px -281px;
            }
            .t-input-phonemask__options-flag_py,
            .t-input-phonemask__select-flag[data-phonemask-flag="py"] {
                background-position: -173px -281px;
            }
            .t-input-phonemask__options-flag_qa,
            .t-input-phonemask__select-flag[data-phonemask-flag="qa"] {
                background-position: -201px -281px;
            }
            .t-input-phonemask__options-flag_ro,
            .t-input-phonemask__select-flag[data-phonemask-flag="ro"] {
                background-position: -229px -281px;
            }
            .t-input-phonemask__options-flag_rs,
            .t-input-phonemask__select-flag[data-phonemask-flag="rs"] {
                background-position: -257px -281px;
            }
            .t-input-phonemask__options-flag_ru,
            .t-input-phonemask__select-flag[data-phonemask-flag="ru"] {
                background-position: -285px -281px;
            }
            .t-input-phonemask__options-flag_rw,
            .t-input-phonemask__select-flag[data-phonemask-flag="rw"] {
                background-position: -313px -281px;
            }
            .t-input-phonemask__options-flag_sa,
            .t-input-phonemask__select-flag[data-phonemask-flag="sa"] {
                background-position: -5px -304px;
            }
            .t-input-phonemask__options-flag_sb,
            .t-input-phonemask__select-flag[data-phonemask-flag="sb"] {
                background-position: -33px -304px;
            }
            .t-input-phonemask__options-flag_sc,
            .t-input-phonemask__select-flag[data-phonemask-flag="sc"] {
                background-position: -61px -304px;
            }
            .t-input-phonemask__options-flag_sd,
            .t-input-phonemask__select-flag[data-phonemask-flag="sd"] {
                background-position: -89px -304px;
            }
            .t-input-phonemask__options-flag_se,
            .t-input-phonemask__select-flag[data-phonemask-flag="se"] {
                background-position: -117px -304px;
            }
            .t-input-phonemask__options-flag_sg,
            .t-input-phonemask__select-flag[data-phonemask-flag="sg"] {
                background-position: -145px -304px;
            }
            .t-input-phonemask__options-flag_si,
            .t-input-phonemask__select-flag[data-phonemask-flag="si"] {
                background-position: -173px -304px;
            }
            .t-input-phonemask__options-flag_sk,
            .t-input-phonemask__select-flag[data-phonemask-flag="sk"] {
                background-position: -201px -304px;
            }
            .t-input-phonemask__options-flag_sl,
            .t-input-phonemask__select-flag[data-phonemask-flag="sl"] {
                background-position: -229px -304px;
            }
            .t-input-phonemask__options-flag_sm,
            .t-input-phonemask__select-flag[data-phonemask-flag="sm"] {
                background-position: -257px -304px;
            }
            .t-input-phonemask__options-flag_sn,
            .t-input-phonemask__select-flag[data-phonemask-flag="sn"] {
                background-position: -285px -304px;
            }
            .t-input-phonemask__options-flag_so,
            .t-input-phonemask__select-flag[data-phonemask-flag="so"] {
                background-position: -313px -304px;
            }
            .t-input-phonemask__options-flag_sr,
            .t-input-phonemask__select-flag[data-phonemask-flag="sr"] {
                background-position: -5px -327px;
            }
            .t-input-phonemask__options-flag_ss,
            .t-input-phonemask__select-flag[data-phonemask-flag="ss"] {
                background-position: -33px -327px;
            }
            .t-input-phonemask__options-flag_st,
            .t-input-phonemask__select-flag[data-phonemask-flag="st"] {
                background-position: -61px -327px;
            }
            .t-input-phonemask__options-flag_sv,
            .t-input-phonemask__select-flag[data-phonemask-flag="sv"] {
                background-position: -89px -327px;
            }
            .t-input-phonemask__options-flag_sy,
            .t-input-phonemask__select-flag[data-phonemask-flag="sy"] {
                background-position: -117px -327px;
            }
            .t-input-phonemask__options-flag_sz,
            .t-input-phonemask__select-flag[data-phonemask-flag="sz"] {
                background-position: -145px -327px;
            }
            .t-input-phonemask__options-flag_td,
            .t-input-phonemask__select-flag[data-phonemask-flag="td"] {
                background-position: -173px -327px;
            }
            .t-input-phonemask__options-flag_tg,
            .t-input-phonemask__select-flag[data-phonemask-flag="tg"] {
                background-position: -201px -327px;
            }
            .t-input-phonemask__options-flag_th,
            .t-input-phonemask__select-flag[data-phonemask-flag="th"] {
                background-position: -229px -327px;
            }
            .t-input-phonemask__options-flag_tj,
            .t-input-phonemask__select-flag[data-phonemask-flag="tj"] {
                background-position: -257px -327px;
            }
            .t-input-phonemask__options-flag_tl,
            .t-input-phonemask__select-flag[data-phonemask-flag="tl"] {
                background-position: -285px -327px;
            }
            .t-input-phonemask__options-flag_tm,
            .t-input-phonemask__select-flag[data-phonemask-flag="tm"] {
                background-position: -313px -327px;
            }
            .t-input-phonemask__options-flag_tn,
            .t-input-phonemask__select-flag[data-phonemask-flag="tn"] {
                background-position: -367px -5px;
            }
            .t-input-phonemask__options-flag_to,
            .t-input-phonemask__select-flag[data-phonemask-flag="to"] {
                background-position: -341px -28px;
            }
            .t-input-phonemask__options-flag_tr,
            .t-input-phonemask__select-flag[data-phonemask-flag="tr"] {
                background-position: -341px -51px;
            }
            .t-input-phonemask__options-flag_tt,
            .t-input-phonemask__select-flag[data-phonemask-flag="tt"] {
                background-position: -341px -74px;
            }
            .t-input-phonemask__options-flag_tv,
            .t-input-phonemask__select-flag[data-phonemask-flag="tv"] {
                background-position: -341px -97px;
            }
            .t-input-phonemask__options-flag_tw,
            .t-input-phonemask__select-flag[data-phonemask-flag="tw"] {
                background-position: -341px -120px;
            }
            .t-input-phonemask__options-flag_tz,
            .t-input-phonemask__select-flag[data-phonemask-flag="tz"] {
                background-position: -341px -143px;
            }
            .t-input-phonemask__options-flag_ua,
            .t-input-phonemask__select-flag[data-phonemask-flag="ua"] {
                background-position: -341px -166px;
            }
            .t-input-phonemask__options-flag_ug,
            .t-input-phonemask__select-flag[data-phonemask-flag="ug"] {
                background-position: -341px -189px;
            }
            .t-input-phonemask__options-flag_us,
            .t-input-phonemask__select-flag[data-phonemask-flag="us"] {
                background-position: -341px -212px;
            }
            .t-input-phonemask__options-flag_uy,
            .t-input-phonemask__select-flag[data-phonemask-flag="uy"] {
                background-position: -341px -235px;
            }
            .t-input-phonemask__options-flag_uz,
            .t-input-phonemask__select-flag[data-phonemask-flag="uz"] {
                background-position: -341px -258px;
            }
            .t-input-phonemask__options-flag_va,
            .t-input-phonemask__select-flag[data-phonemask-flag="va"] {
                background-position: -341px -281px;
            }
            .t-input-phonemask__options-flag_vc,
            .t-input-phonemask__select-flag[data-phonemask-flag="vc"] {
                background-position: -341px -304px;
            }
            .t-input-phonemask__options-flag_ve,
            .t-input-phonemask__select-flag[data-phonemask-flag="ve"] {
                background-position: -341px -327px;
            }
            .t-input-phonemask__options-flag_vn,
            .t-input-phonemask__select-flag[data-phonemask-flag="vn"] {
                background-position: -5px -350px;
            }
            .t-input-phonemask__options-flag_vu,
            .t-input-phonemask__select-flag[data-phonemask-flag="vu"] {
                background-position: -33px -350px;
            }
            .t-input-phonemask__options-flag_ws,
            .t-input-phonemask__select-flag[data-phonemask-flag="ws"] {
                background-position: -61px -350px;
            }
            .t-input-phonemask__options-flag_xk,
            .t-input-phonemask__select-flag[data-phonemask-flag="xk"] {
                background-position: -89px -350px;
            }
            .t-input-phonemask__options-flag_ye,
            .t-input-phonemask__select-flag[data-phonemask-flag="ye"] {
                background-position: -117px -350px;
            }
            .t-input-phonemask__options-flag_za,
            .t-input-phonemask__select-flag[data-phonemask-flag="za"] {
                background-position: -145px -350px;
            }
            .t-input-phonemask__options-flag_zm,
            .t-input-phonemask__select-flag[data-phonemask-flag="zm"] {
                background-position: -173px -350px;
            }
            .t-input-phonemask__options-flag_zw,
            .t-input-phonemask__select-flag[data-phonemask-flag="zw"] {
                background-position: -201px -350px;
            }
          @media screen and (min-width: 980px) {
                        .t-records {
                            opacity: 0;
                        }
                        .t-records_animated {
                            -webkit-transition: opacity ease-in-out 0.5s;
                            -moz-transition: opacity ease-in-out 0.5s;
                            -o-transition: opacity ease-in-out 0.5s;
                            transition: opacity ease-in-out 0.5s;
                        }
                        .t-records.t-records_visible,
                        .t-records .t-records {
                            opacity: 1;
                        }
                    }
                    #rec1048481861 .t657__text {
                        font-size: 14px;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec1048481861 .t657__text {
                            font-size: 10px;
                        }
                    }
                  
                            .t-menuburger {
                                position: relative;
                                flex-shrink: 0;
                                width: 28px;
                                height: 20px;
                                padding: 0;
                                border: none;
                                background-color: transparent;
                                outline: none;
                                -webkit-transform: rotate(0deg);
                                transform: rotate(0deg);
                                transition: transform 0.5s ease-in-out;
                                cursor: pointer;
                                z-index: 999;
                            }
                            .t-menuburger span {
                                display: block;
                                position: absolute;
                                width: 100%;
                                opacity: 1;
                                left: 0;
                                -webkit-transform: rotate(0deg);
                                transform: rotate(0deg);
                                transition: 0.25s ease-in-out;
                                height: 3px;
                                background-color: #000;
                            }
                            .t-menuburger span:nth-child(1) {
                                top: 0px;
                            }
                            .t-menuburger span:nth-child(2),
                            .t-menuburger span:nth-child(3) {
                                top: 8px;
                            }
                            .t-menuburger span:nth-child(4) {
                                top: 16px;
                            }
                            .t-menuburger__big {
                                width: 42px;
                                height: 32px;
                            }
                            .t-menuburger__big span {
                                height: 5px;
                            }
                            .t-menuburger__big span:nth-child(2),
                            .t-menuburger__big span:nth-child(3) {
                                top: 13px;
                            }
                            .t-menuburger__big span:nth-child(4) {
                                top: 26px;
                            }
                            .t-menuburger__small {
                                width: 22px;
                                height: 14px;
                            }
                            .t-menuburger__small span {
                                height: 2px;
                            }
                            .t-menuburger__small span:nth-child(2),
                            .t-menuburger__small span:nth-child(3) {
                                top: 6px;
                            }
                            .t-menuburger__small span:nth-child(4) {
                                top: 12px;
                            }
                            .t-menuburger-opened span:nth-child(1) {
                                top: 8px;
                                width: 0%;
                                left: 50%;
                            }
                            .t-menuburger-opened span:nth-child(2) {
                                -webkit-transform: rotate(45deg);
                                transform: rotate(45deg);
                            }
                            .t-menuburger-opened span:nth-child(3) {
                                -webkit-transform: rotate(-45deg);
                                transform: rotate(-45deg);
                            }
                            .t-menuburger-opened span:nth-child(4) {
                                top: 8px;
                                width: 0%;
                                left: 50%;
                            }
                            .t-menuburger-opened.t-menuburger__big span:nth-child(1) {
                                top: 6px;
                            }
                            .t-menuburger-opened.t-menuburger__big span:nth-child(4) {
                                top: 18px;
                            }
                            .t-menuburger-opened.t-menuburger__small span:nth-child(1),
                            .t-menuburger-opened.t-menuburger__small span:nth-child(4) {
                                top: 6px;
                            }
                            @media (hover), (min-width: 0\0) {
                                .t-menuburger_first:hover span:nth-child(1) {
                                    transform: translateY(1px);
                                }
                                .t-menuburger_first:hover span:nth-child(4) {
                                    transform: translateY(-1px);
                                }
                                .t-menuburger_first.t-menuburger__big:hover span:nth-child(1) {
                                    transform: translateY(3px);
                                }
                                .t-menuburger_first.t-menuburger__big:hover span:nth-child(4) {
                                    transform: translateY(-3px);
                                }
                            }
                            .t-menuburger_second span:nth-child(2),
                            .t-menuburger_second span:nth-child(3) {
                                width: 80%;
                                left: 20%;
                                right: 0;
                            }
                            @media (hover), (min-width: 0\0) {
                                .t-menuburger_second.t-menuburger-hovered span:nth-child(2),
                                .t-menuburger_second.t-menuburger-hovered span:nth-child(3) {
                                    animation: t-menuburger-anim 0.3s ease-out normal forwards;
                                }
                                .t-menuburger_second.t-menuburger-unhovered span:nth-child(2),
                                .t-menuburger_second.t-menuburger-unhovered span:nth-child(3) {
                                    animation: t-menuburger-anim2 0.3s ease-out normal forwards;
                                }
                            }
                            .t-menuburger_second.t-menuburger-opened span:nth-child(2),
                            .t-menuburger_second.t-menuburger-opened span:nth-child(3) {
                                left: 0;
                                right: 0;
                                width: 100% !important;
                            }
                            .t-menuburger_third span:nth-child(4) {
                                width: 70%;
                                left: unset;
                                right: 0;
                            }
                            @media (hover), (min-width: 0\0) {
                                .t-menuburger_third:not(.t-menuburger-opened):hover span:nth-child(4) {
                                    width: 100%;
                                }
                            }
                            .t-menuburger_third.t-menuburger-opened span:nth-child(4) {
                                width: 0 !important;
                                right: 50%;
                            }
                            .t-menuburger_fourth {
                                height: 12px;
                            }
                            .t-menuburger_fourth.t-menuburger__small {
                                height: 8px;
                            }
                            .t-menuburger_fourth.t-menuburger__big {
                                height: 18px;
                            }
                            .t-menuburger_fourth span:nth-child(2),
                            .t-menuburger_fourth span:nth-child(3) {
                                top: 4px;
                                opacity: 0;
                            }
                            .t-menuburger_fourth span:nth-child(4) {
                                top: 8px;
                            }
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(2),
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(3) {
                                top: 3px;
                            }
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(4) {
                                top: 6px;
                            }
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(2),
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(3) {
                                top: 3px;
                            }
                            .t-menuburger_fourth.t-menuburger__small span:nth-child(4) {
                                top: 6px;
                            }
                            .t-menuburger_fourth.t-menuburger__big span:nth-child(2),
                            .t-menuburger_fourth.t-menuburger__big span:nth-child(3) {
                                top: 6px;
                            }
                            .t-menuburger_fourth.t-menuburger__big span:nth-child(4) {
                                top: 12px;
                            }
                            @media (hover), (min-width: 0\0) {
                                .t-menuburger_fourth:not(.t-menuburger-opened):hover span:nth-child(1) {
                                    transform: translateY(1px);
                                }
                                .t-menuburger_fourth:not(.t-menuburger-opened):hover span:nth-child(4) {
                                    transform: translateY(-1px);
                                }
                                .t-menuburger_fourth.t-menuburger__big:not(.t-menuburger-opened):hover span:nth-child(1) {
                                    transform: translateY(3px);
                                }
                                .t-menuburger_fourth.t-menuburger__big:not(.t-menuburger-opened):hover span:nth-child(4) {
                                    transform: translateY(-3px);
                                }
                            }
                            .t-menuburger_fourth.t-menuburger-opened span:nth-child(1),
                            .t-menuburger_fourth.t-menuburger-opened span:nth-child(4) {
                                top: 4px;
                            }
                            .t-menuburger_fourth.t-menuburger-opened span:nth-child(2),
                            .t-menuburger_fourth.t-menuburger-opened span:nth-child(3) {
                                opacity: 1;
                            }
                            @keyframes t-menuburger-anim {
                                0% {
                                    width: 80%;
                                    left: 20%;
                                    right: 0;
                                }
                                50% {
                                    width: 100%;
                                    left: 0;
                                    right: 0;
                                }
                                100% {
                                    width: 80%;
                                    left: 0;
                                    right: 20%;
                                }
                            }
                            @keyframes t-menuburger-anim2 {
                                0% {
                                    width: 80%;
                                    left: 0;
                                }
                                50% {
                                    width: 100%;
                                    right: 0;
                                    left: 0;
                                }
                                100% {
                                    width: 80%;
                                    left: 20%;
                                    right: 0;
                                }
                            }
                     
                    #rec857237467 .t-menu__link-item {
                        position: relative;
                    }
                    #rec857237467 .t-menu__link-item:not(.t-active):not(.tooltipstered)::after {
                        content: "";
                        position: absolute;
                        left: 0;
                        bottom: 20%;
                        opacity: 0;
                        width: 100%;
                        height: 100%;
                        border-bottom: 0px solid #0000ff;
                        -webkit-box-shadow: inset 0px -1px 0px 0px #0000ff;
                        -moz-box-shadow: inset 0px -1px 0px 0px #0000ff;
                        box-shadow: inset 0px -1px 0px 0px #0000ff;
                        -webkit-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                        pointer-events: none;
                    }
                    #rec857237467 .t-menu__link-item:not(.t-active):not(.tooltipstered):hover::after {
                        opacity: 1;
                        bottom: -0px;
                    }
                    #rec857237467 .t-menu__link-item:not(.t-active):not(.tooltipstered):focus-visible::after {
                        opacity: 1;
                        bottom: -0px;
                    }
                    @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
                        #rec857237467 .t-menu__link-item,
                        #rec857237467 .t-menu__link-item.t-active {
                            opacity: 1 !important;
                        }
                    }
                
                
                    #rec857237467 .t450__logo {
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    @media screen and (min-width: 480px) {
                        #rec857237467 .t450__logo {
                            font-size: 28px;
                        }
                    }
                
                
                    #rec857237467 .t450__logowrapper a {
                        font-size: 28px;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    #rec857237467 a.t-menu__link-item {
                        font-size: 15px;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec857237467 a.t-menu__link-item {
                            font-size: 12px;
                        }
                    }
                  
                    #rec857237468 .t396__artboard {
                        height: 426px;
                        background-color: #ffffff;
                    }
                    #rec857237468 .t396__filter {
                        height: 578px;
                    }
                    #rec857237468 .t396__carrier {
                        height: 578px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                      .menu-item {
    padding: 8px 5px!important;
    border-radius: 4px;
    transition: all 0.3s;
}
.menu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    padding: 17px 37px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 999;
    justify-content: space-evenly!important;
}
                      .menu-item a {
    font-family: 'SVERDLOVSK', sans-serif;
    font-size: 8px!important;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: -2px 1px 0px rgb(255 255 255 / 84%);
    color: red!important;
    font-weight: 400;
    font-family: "Inter/Kyiv";
    text-transform: uppercase;
}
                        #rec857237468 .t396__artboard,
                        #rec857237468 .t396__filter,
                        #rec857237468 .t396__carrier {
                            height: 385px;
                        }
                        #rec857237468 .t396__filter {
                        }
                        #rec857237468 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237468 .t396__artboard,
                        #rec857237468 .t396__filter,
                        #rec857237468 .t396__carrier {
                        }
                        #rec857237468 .t396__filter {
                        }
                        #rec857237468 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                       
                        #rec857237468 .t396__filter {
                        }
                        #rec857237468 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        
                        #rec857237468 .t396__filter {
                        }
                        #rec857237468 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570192"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 3;
                        top: 25px;
                        left: calc(50% - 600px + 261px);
                        width: 78px;
                        height: auto;
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570192"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        text-transform: lowercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570192"] {
                            left: calc(50% - 480px + 200px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570192"] {
                            top: 30px;
                            left: calc(50% - 320px + 68px);
                            width: 78px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570192"] {
                            top: 25px;
                            height: auto;
                        }
                        #rec857237468 .tn-elem[data-elem-id="1701891570192"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570192"] {
                            top: 25px;
                            left: calc(50% - 160px + 9px);
                            height: auto;
                        }
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570196"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 4;
                        top: 25px;
                        left: calc(50% - 600px + 542px);
                        width: 97px;
                        height: auto;
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570196"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        text-transform: lowercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570196"] {
                            left: calc(50% - 480px + 421px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570196"] {
                            top: 30px;
                            left: calc(50% - 320px + 258px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570196"] {
                            top: 25px;
                            left: calc(50% - 240px + 182px);
                            height: auto;
                        }
                        #rec857237468 .tn-elem[data-elem-id="1701891570196"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570196"] {
                            top: 24px;
                            left: calc(50% - 160px + 139px);
                            width: 53px;
                            height: auto;
                        }
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570199"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 5;
                        top: 52px;
                        left: calc(50% - 600px + 270px);
                        width: 68px;
                        height: auto;
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570199"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        text-transform: lowercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570199"] .tn-atom {
                        -webkit-transform: rotate(1deg);
                        -moz-transform: rotate(1deg);
                        transform: rotate(1deg);
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570199"] {
                            left: calc(50% - 480px + 210px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570199"] {
                            top: 57px;
                            left: calc(50% - 320px + 78px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570199"] {
                            top: 49px;
                            height: auto;
                        }
                        #rec857237468 .tn-elem[data-elem-id="1701891570199"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570199"] {
                            top: 49px;
                            left: calc(50% - 160px + 19px);
                            height: auto;
                        }
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570203"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 6;
                        top: 52px;
                        left: calc(50% - 600px + 559px);
                        width: 80px;
                        height: auto;
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570203"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        text-transform: lowercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570203"] {
                            left: calc(50% - 480px + 438px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570203"] {
                            top: 55px;
                            left: calc(50% - 320px + 280px);
                            width: 70px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570203"] {
                            top: 49px;
                            left: calc(50% - 240px + 209px);
                            height: auto;
                        }
                        #rec857237468 .tn-elem[data-elem-id="1701891570203"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570203"] {
                            top: 49px;
                            left: calc(50% - 160px + 127px);
                            width: 59px;
                            height: auto;
                        }
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570206"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 7;
                        top: 52px;
                        left: calc(50% - 600px + 850px);
                        width: 89px;
                        height: auto;
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570206"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        text-transform: lowercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570206"] {
                            left: calc(50% - 480px + 670px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570206"] {
                            top: 55px;
                            left: calc(50% - 320px + 489px);
                            width: 70px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570206"] {
                            top: 48px;
                            left: calc(50% - 240px + 341px);
                            height: auto;
                        }
                        #rec857237468 .tn-elem[data-elem-id="1701891570206"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570206"] {
                            top: 49px;
                            left: calc(50% - 160px + 229px);
                            width: 60px;
                            height: auto;
                        }
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570213"] {
                        z-index: 8;
                        top: 94px;
                        left: calc(50% - 600px + 378px);
                        width: 445px;
                        height: 420px;
                    }
                    #rec857237468 .tn-elem[data-elem-id="1701891570213"] .tn-atom {
                        border-radius: 30px 30px 30px 30px;
                        background-position: 0% 51.194%;
                        background-size: 100%;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570213"] {
                            top: 96px;
                            left: calc(50% - 480px + 272px);
                            width: 417px;
                            height: 393px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570213"] {
                            top: 99px;
                            left: calc(50% - 320px + 114px);
                            width: 413px;
                            height: 399px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570213"] {
                            top: 78px;
                            left: calc(50% - 240px + 68px);
                            width: 344px;
                            height: 346px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237468 .tn-elem[data-elem-id="1701891570213"] {
                            top: 78px;
                            left: calc(50% - 160px + -9px);
                            width: 338px;
                            height: 344px;
                        }
                        #rec857237468 .tn-elem[data-elem-id="1701891570213"] .tn-atom {
                            background-position: 0% 50.138%;
                            background-size: 100%;
                        }
                    }
              
   
   @keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
h1 {
  animation: fadeUp 1.5s ease-out both;
}
#rec857237468 .t396__artboard {
    /* height: auto!important; */
    /* background-color: #fffefc; */
    /* background: linear-gradient(135deg, rgb(252, 228, 236), rgb(232, 234, 246))!important; */
}
    @font-face {
  font-family: "WonderScript";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts2/WonderGardenScript-Regular.woff2") format("woff2"),
       /* Если браузер не поддерживает woff2, загрузит woff */
       url("/fonts2/WonderGardenScript-Regular.woff") format("woff");
}
@font-face{
  font-family: "mak";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts2/MAK.otf");
}
@font-face{
  font-family: "SVERDLOVSK";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts2/SVERDLOVSK.ttf");
}
.menu {
    /* Стили для контейнера меню */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
    background: #f5f5f5;
}
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu .t396__elem {
        width: 100% !important;
        left: 0 !important;
        text-align: center;
    }
}
.h1 {
    /* font-family: 'SVERDLOVSK', sans-serif!important; */
    /* font-size: 60px!important; */
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0px 0px rgb(0, 0, 0)!important;
    vertical-align: middle;
    color: #000000;
    font-size: 35px!important; 
    font-family: 'lovelab', Arial, sans-serif!important; 
    line-height: 1.35;
    font-weight: 800!important; 
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

#rec857240080 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
    vertical-align: middle;
    color: #ff0000!important;
    font-size: 24px;
    font-family: "Inter/Kyiv", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
#rec857240080 .tn-elem[data-elem-id="1734010130066"] .tn-atom {
    vertical-align: middle;
    color: #000000 !important;
    font-size: 18px;
    font-family: "Inter/Kyiv", Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.banner {
    font-family: 'WonderScript', sans-serif;
    font-size: 551px!important;
    color: #ff0000!important;
    position: absolute;
    top: 257px !important;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7!important;
    filter: blur(1px)!important;
    z-index: 0!important;
    opacity: 1!important;
}
@media (max-width: 1200px) {
    #rec866092198 .t396__carrier, #rec866092198 .t396__filter, #rec866092198 .t396__artboard {
    height: 1553px !important;
    background: url(/img/11.jpg);
    background-position: center;
    background-size: cover;
}
#rec866092198 .tn-elem[data-elem-id="1734010357614"] {
    color: #ff0000;
    z-index: 3;
    top: 0px;
    left: calc(50% - 600px + 80px);
    width: 811px;
    height: auto;
    left: 29px!important
    ;
}
.t396 .tn-atom {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    max-width: 832px;
    font-size: 20px!important;
    line-height: 1.6!important;
    color: #333;
    font-family: 'Zagolovki';
    font-weight: 300;
    -ms-text-size-adjust: 100%;
}
#rec864541108 .t396__carrier, #rec864541108 .t396__filter, #rec864541108 .t396__artboard {
    height: 710px !important;
}
.cards-container {
    display: flex;
    grid-template-columns: 1fr;
    gap: 0rem;
    max-width: 1173px;
    margin: 0 auto;
    padding: 0px;
    margin-top: 72px;
    flex-direction: column;
}
    .tariff-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0 20px 0 !important;
    scroll-snap-type: x mandatory;
    margin-left: 0px;
    justify-content: flex-start;
    position: relative;
    cursor: grab;
}
.tariff ul li::before {
    content: "♥";
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 14px;
    color: #ff0000;
}
.tariff ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.6;
    color: #333;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 13px;
}
.tariff h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    color: #ff0000;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: "Inter/Kyiv", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}
.flex_tariff_p {
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
    color: #ff0000 !important;
    font-weight: 400 !important;
    font-family: 'Zagolovki';
    font-size: 11px!important;
    font-size: 24px;
    font-family: "Inter/Kyiv", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}
.tn-atom_tariff {
    display: inline-block;
    background-color: #ff0000;
    color: #fff!important;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    width: 77%;
    margin-top: 25px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    transform-origin: center center;
}
.tariff {
    min-width: 272px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border-color: red;
}
    #rec857271773 .t396__artboard:not(.t396__artboard-flex), #rec857271773 .t396__artboard:not(.t396__artboard-flex) .t396__carrier, #rec857271773 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
    width: 84vw !important;
    max-width: 100%;
}
.t396 .tn-atom {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    max-width: 832px;
    font-size: 24px!important;
    line-height: 1.6!important;
    color: #333;
    font-family: 'Zagolovki';
    font-weight: 900;
    -ms-text-size-adjust: 100%;
}
  .banner{
    font-family: 'WonderScript', sans-serif;
    font-size: 417px!important;
    color: #ff0000;
    position: absolute;
    top: -210px!important;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    filter: blur(2px);
    z-index: 0;
    opacity: 0.5;
  }
.t396 .t-animate_started[data-animate-style="fadein"] {
    opacity: 1;
    top: 36px!important;
}

.h1 {
    font-family: 'SVERDLOVSK', sans-serif;
    font-size: 26px!important;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0px 0px rgb(0, 0, 0);
}
.menu {
    position: fixed;
    top: 0px!important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0px!important;
    padding: 14px 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 999;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}}
@media (max-width: 780px) {
.banner {
    font-family: 'WonderScript', sans-serif;
    font-size: 365px !important;
    color: #ff0007;
    position: absolute;
    top: -187px !important;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    filter: blur(2px);
    z-index: 0;
    opacity: 0.5;
}
}
@media screen and (max-width: 1199px) {
    #rec857240080 .tn-elem[data-elem-id="1734010357614"] {
        top: 39px !important;
        left: 9px !important;
        height: auto;
    }
}
@media screen and (max-width: 1199px) {
    #rec857240080 .tn-elem[data-elem-id="1734010130066"] {
        top: 80px!important;
        left: 9px !important;
        width: 637px;
        height: auto;
    }
}
@media screen and (max-width: 1199px) {
    #rec857240080 .tn-elem[data-elem-id="1734010130066"] .tn-atom {
        font-size: 11px!important;
        line-height: 1.3;
        background-size: cover;
    }
}
@media screen and (max-width: 1199px) {
#rec857240080 .tn-elem[data-elem-id="1734010130066"] {
    top: 149px;
    left: 9px !important;
    width: auto!important;
    margin: 5px 15px 5px 5px;
    height: auto;
}
}
.menu .t396__elem {
    /* Стили для всех пунктов меню */
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.menu .t396__elem:hover {
    color: #ff6600; /* Цвет при наведении */
}

.menu .tn-atom a {
    /* Стили для ссылок внутри пунктов */
    text-decoration: none;
    color: inherit;
}

.menu .tn-atom a:hover {
    text-decoration: underline;
}
    .t-rec#recnewbanner {
        overflow: visible;
    }
    #recnewbanner .t396__artboard:not(.t396__artboard-flex),
    #recnewbanner .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
    #recnewbanner .t396__artboard:not(.t396__artboard-flex) .t396__filter {
        width: 100% !important;
        max-width: 100%;
    }
    #recnewbanner .t396__carrier,
    #recnewbanner .t396__filter,
    #recnewbanner .t396__artboard {
        height: 494px !important;
    }
    .t-bgimg {
        width: 100%;
        height: 100%;
    }
    @keyframes float {
        0% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0); }
    }

    .menu {
    display: flex;           /* Горизонтальное расположение */
    gap: 20px;               /* Расстояние между пунктами */
    padding: 15px;           /* Внутренний отступ */
    background: #f8f8f8;     /* Фон меню (опционально) */
    list-style: none;        /* Убираем маркеры (если это `<ul>`) */
    margin: 0;               /* Убираем внешние отступы */
    font-family: Arial, sans-serif; /* Шрифт */
}

.menu-item {
    padding: 8px 12px;       /* Отступы внутри пунктов */
    border-radius: 4px;      /* Закругленные углы */
    transition: all 0.3s;    /* Плавные анимации */
}

.menu-item a {
    text-decoration: none;   /* Убираем подчеркивание */
    color: #333;             /* Цвет текста */
    font-weight: 500;        /* Жирность шрифта */
}

.menu-item a:hover {
    color: #ff6600;          /* Цвет при наведении */
}

.menu {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  padding: 14px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 999;
}

.menu-item a {
    font-family: 'SVERDLOVSK', sans-serif;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: -2px 1px 0px rgb(255 255 255 / 84%);
    color: red!important;
    font-weight: 400;
    font-family: "Inter/Kyiv";
    text-transform: uppercase;
    text-shadow: 2px -2px 0px rgb(255 255 255);
}
.menu-item a:hover {
    color: #ff0055;
    text-shadow: -1px -1px 0px rgb(0 0 0);
}



                    #rec857240902 .t1003__item-txt {
                        font-size: 16px;
                        color: #fffefc;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec857240902 .t1003__item-txt {
                            font-size: 13px;
                        }
                    }
            

                    @keyframes t1003__anim-scrolling_857240902 {
                        0% {
                            transform: translateX(0px);
                            -webkit-transform: translateX(0px);
                        }
                        100% {
                            transform: translateX(-1155px);
                            -webkit-transform: translateX(-1155px);
                        }
                    }
             
                    #rec857240080 .t396__artboard {
                        height: 610px;
                        background-color: #fffefc;
                    }
                    #rec857240080 .t396__filter {
                        height: 610px;
                    }
                    #rec857240080 .t396__carrier {
                        height: 610px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857240080 .t396__artboard,
                        #rec857240080 .t396__filter,
                        #rec857240080 .t396__carrier {
                            height: 489px;
                        }
                        #rec857240080 .t396__filter {
                        }
                        #rec857240080 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857240080 .t396__artboard,
                        #rec857240080 .t396__filter,
                        #rec857240080 .t396__carrier {
                            height: 560px;
                        }
                        #rec857240080 .t396__filter {
                        }
                        #rec857240080 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857240080 .t396__artboard,
                        #rec857240080 .t396__filter,
                        #rec857240080 .t396__carrier {
                            height: 570px;
                        }
                        #rec857240080 .t396__filter {
                        }
                        #rec857240080 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857240080 .t396__artboard,
                        #rec857240080 .t396__filter,
                        #rec857240080 .t396__carrier {
                            height: 615px;
                        }
                        #rec857240080 .t396__filter {
                        }
                        #rec857240080 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec857240080 .tn-elem[data-elem-id="1734010041202"] {
                        color: #ff0000;
                        z-index: 3;
                        top: 585px;
                        left: 0;
                        width: 100%;
                        height: auto;
                        margin-top: 20px;
                    }
                    #rec857240080 .tn-elem[data-elem-id="1734010041202"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 24px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                      @media screen and (max-width: 1199px) {
  #rec857240080 .tn-elem[data-elem-id="1734010041202"] {
    top: 449px !important;
    left: 25px!important;
    height: auto;
}

                        #rec857240080 .tn-elem[data-elem-id="1734010041202"] .tn-atom {
                            font-size: 22px;
                            background-size: cover;
                        }
                    }
                   
                    @media screen and (max-width: 639px) {
                       
                        #rec857240080 .tn-elem[data-elem-id="1734010041202"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
.title_main1 {
    vertical-align: middle;
    color: #ffffff !important;
    font-size: 37px !important;
    font-family: 'LOVE'!important;
    line-height: 1.55;
    font-weight: 900 !important;
    background-position: center center;
}
                    .t396__elem.tn-elem.tn-elem1 {
    color: #ff0000;
    z-index: 2;
    top: 567px;
    left: 0;
    width: 100%;
    height: 1034px;
    background: url(/img/2.png) 100%;
}
#rec857240080 .tn-elem[data-elem-id="1734010130066"] {
    color: #ff0000;
    z-index: 4;
    top: 204px;
    left: calc(46% - 600px + 140px);
    width: 886px;
    height: auto;
}          #rec857240080 .tn-elem[data-elem-id="1734010130066"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 18px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                 .t396__elem.tn-elem.tn-elem1 {
    color: #ff0000;
    z-index: 2;
    top: 440px!important;
    left: 0!important;
    width: 100%!important;
    height: 1344px!important;
    background: url(/img/7.jpeg) 100%;
    display: flex;
    flex-direction: column;
}
                        #rec857240080 .tn-elem[data-elem-id="1734010130066"] {
                            top: 149px;
                            left: calc(50% - 480px + 0px);
                            width: 637px;
                            height: auto;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1734010130066"] .tn-atom {
                            font-size: 16px;
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010130066"] {
                            top: 134px;
                            left: calc(50% - 320px + 0px);
                            width: 471px;
                            height: auto;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1734010130066"] .tn-atom {
                            font-size: 15px;
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010130066"] {
                            top: 171px;
                            left: calc(50% - 240px + 0px);
                            width: 480px;
                            height: auto;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1734010130066"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010130066"] {
                            top: 158px;
                            left: calc(50% - 160px + 0px);
                            width: 335px;
                            height: auto;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1734010130066"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                        }
                    }
                    #rec857240080 .tn-elem[data-elem-id="1739303926325"] {
                        z-index: 5;
                        top: 414px;
                        left: calc(50% - 600px + 80px);
                        width: 194px;
                        height: 16px;
                    }
                    #rec857240080 .tn-elem[data-elem-id="1739303926325"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303926325"] {
                            top: 327px;
                            left: calc(50% - 480px + 0px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303926325"] {
                            top: 379px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303926325"] {
                            top: 416px;
                            left: calc(50% - 240px + 0px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303926325"] {
                            top: 433px;
                        }
                    }
                    #rec857240080 .tn-elem[data-elem-id="1734010223494"] {
                        z-index: 0;
                        top: -10px;
                        left: calc(56% - 600px + 800px);
                        width: 292px;
                        height: 623px;
                    }
                    #rec857240080 .tn-elem[data-elem-id="1734010223494"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media (min-width: 1199px) { 
                        .menu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    padding: 14px 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 999;
    width: 857px!important;
    justify-content: space-around;
}}
                    @media screen and (max-width: 1199px) {
                       
                        #rec857240080 .tn-elem[data-elem-id="1734010223494"] {
                            top: -11px;
                            left: calc(50% - 480px + 592px);
                            width: 240px;
                            height: 513px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010223494"] {
                            top: -4px;
                            left: calc(50% - 320px + 442px);
                            width: 250px;
                            height: 566px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010223494"] {
                            top: -96px;
                            left: calc(50% - 240px + -331px);
                            width: 223px;
                            height: 502px;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1734010223494"] .tn-atom {
                            background-size: cover;
                            opacity: 0;
                        }
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec857240080 .tn-elem[data-elem-id="1734010357614"] {
                        color: #ff0000;
                        z-index: 7;
                        top: 90px;
                        left: calc(46% - 600px + 140px);
                        width: 560px;
                        height: auto;
                    }
                    #rec857240080 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 24px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010357614"] {
                            top: 80px;
                            left: calc(50% - 480px + 0px);
                            height: auto;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                            font-size: 22px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010357614"] {
                            top: 70px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010357614"] {
                            top: 105px;
                            width: 169px;
                            height: auto;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857240080 .tn-elem[data-elem-id="1734010357614"] {
                            top: 106px;
                            height: auto;
                        }
                    }
                    #rec857240080 .tn-elem[data-elem-id="1739303977764"] {
                        z-index: 8;
                        top: 44px;
                        left: calc(50% - 600px + 0px);
                        width: 123px;
                        height: 16px;
                    }
                    #rec857240080 .tn-elem[data-elem-id="1739303977764"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        opacity: 0;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303977764"] {
                            top: 39px;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1739303977764"] .tn-atom {
                            background-size: cover;
                            opacity: 0;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303977764"] {
                            top: 528px;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1739303977764"] .tn-atom {
                            background-size: cover;
                            opacity: 0;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303977764"] {
                            top: 530px;
                            width: 108px;
                            height: 14px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303977764"] {
                            top: 578px;
                        }
                    }
                    #rec857240080 .tn-elem[data-elem-id="1739303630027"] {
                        z-index: 9;
                        top: 0px;
                        left: calc(50% - 600px + 0px);
                        width: 100px;
                        height: 100px;
                    }
                    #rec857240080 .tn-elem[data-elem-id="1739303630027"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        opacity: 0;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303630027"] {
                            width: 85px;
                            height: 69px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303630027"] {
                            top: -34px;
                            left: calc(50% - 240px + 261px);
                            width: 295px;
                            height: 205px;
                        }
                        #rec857240080 .tn-elem[data-elem-id="1739303630027"] .tn-atom {
                            background-size: cover;
                            opacity: 1;
                            -webkit-transform: rotate(350deg);
                            -moz-transform: rotate(350deg);
                            transform: rotate(350deg);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857240080 .tn-elem[data-elem-id="1739303630027"] {
                            top: -119px;
                            left: calc(50% - 160px + 120px);
                        }
                        #rec857240080 .tn-elem[data-elem-id="1739303630027"] .tn-atom {
                            background-size: cover;
                            -webkit-transform: rotate(357deg);
                            -moz-transform: rotate(357deg);
                            transform: rotate(357deg);
                        }
                    }
                    .t1003__content-wrapper {
                      background-color: rgb(237 0 0)!important;
    height: 55px;
    opacity: 1;
}

       
                    #rec857240577 .t390__title {
                        font-size: 16px;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                    }
                    #rec857240577 .t390__descr {
                        font-size: 16px;
                        line-height: 1.4;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec857240577 .t390__descr {
                            font-size: 14px;
                            line-height: 1.3;
                        }
                    }
                     
                    #rec857241494 .t396__artboard {
                        height: 865px;
                        background-color: #fffefc;
                        overflow: auto;
                    }
                    #rec857241494 .t396__filter {
                        height: 865px;
                    }
                    #rec857241494 .t396__carrier {
                        height: 865px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .t396__artboard,
                        #rec857241494 .t396__filter,
                        #rec857241494 .t396__carrier {
                            height: 778px;
                        }
                        #rec857241494 .t396__filter {
                        }
                        #rec857241494 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .t396__artboard,
                        #rec857241494 .t396__filter,
                        #rec857241494 .t396__carrier {
                            height: 870px;
                        }
                        #rec857241494 .t396__filter {
                        }
                        #rec857241494 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .t396__artboard,
                        #rec857241494 .t396__filter,
                        #rec857241494 .t396__carrier {
                            height: 370px;
                        }
                        #rec857241494 .t396__filter {
                        }
                        #rec857241494 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .t396__artboard,
                        #rec857241494 .t396__filter,
                        #rec857241494 .t396__carrier {
                            height: 339px;
                        }
                        #rec857241494 .t396__filter {
                        }
                        #rec857241494 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010704784"] {
                        z-index: 3;
                        top: 390px;
                        left: calc(50% - 600px + 800px);
                        width: 320px;
                        height: 350px;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010704784"] .tn-atom {
                        border-radius: 5px 5px 5px 5px;
                        background-color: #dddd7b;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010704784"] {
                            top: 360px;
                            left: calc(50% - 480px + 660px);
                            width: 300px;
                            height: 330px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010704784"] {
                            top: 494px;
                            left: calc(50% - 320px + 330px);
                            width: 310px;
                            height: 300px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010704784"] {
                            top: 0px;
                            left: calc(50% - 240px + 1231px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010704784"] {
                            left: calc(50% - 160px + 1200px);
                            height: 280px;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010578680"] {
                        color: #000000;
                        z-index: 4;
                        top: 561px;
                        left: calc(50% - 600px + 825px);
                        width: 266px;
                        height: auto;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010578680"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010578680"] {
                            top: 506px;
                            left: calc(50% - 480px + 675px);
                            width: 277px;
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010578680"] .tn-atom {
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010578680"] {
                            top: 633px;
                            left: calc(50% - 320px + 345px);
                            width: 268px;
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010578680"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010578680"] {
                            top: 139px;
                            left: calc(50% - 240px + 1246px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010578680"] {
                            top: 136px;
                            left: calc(50% - 160px + 1220px);
                            width: 251px;
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010578680"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010621273"] {
                        color: #000000;
                        z-index: 5;
                        top: 415px;
                        left: calc(50% - 600px + 825px);
                        width: 247px;
                        height: auto;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010621273"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 20px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010621273"] {
                            top: 385px;
                            left: calc(50% - 480px + 675px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010621273"] {
                            top: 519px;
                            left: calc(50% - 320px + 345px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010621273"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010621273"] {
                            top: 25px;
                            left: calc(50% - 240px + 1246px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010621273"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010621273"] {
                            left: calc(50% - 160px + 1220px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010621273"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010677468"] {
                        z-index: 6;
                        top: 390px;
                        left: calc(50% - 600px + 80px);
                        width: 320px;
                        height: 350px;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010677468"] .tn-atom {
                        border-radius: 5px 5px 5px 5px;
                        background-color: #ffdbdf;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010677468"] {
                            top: 360px;
                            left: calc(50% - 480px + 0px);
                            width: 300px;
                            height: 330px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010677468"] {
                            top: 494px;
                            left: calc(50% - 320px + 0px);
                            width: 310px;
                            height: 300px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010677468"] {
                            top: 0px;
                            left: calc(50% - 240px + 901px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010677468"] {
                            left: calc(50% - 160px + 870px);
                            height: 280px;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010746792"] {
                        color: #000000;
                        z-index: 7;
                        top: 561px;
                        left: calc(50% - 600px + 105px);
                        width: 248px;
                        height: auto;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010746792"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010746792"] {
                            top: 506px;
                            left: calc(50% - 480px + 15px);
                            width: 259px;
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010746792"] .tn-atom {
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010746792"] {
                            top: 635px;
                            left: calc(50% - 320px + 15px);
                            width: 285px;
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010746792"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010746792"] {
                            top: 140px;
                            left: calc(50% - 240px + 916px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010746792"] {
                            top: 137px;
                            left: calc(50% - 160px + 890px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010746792"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010746803"] {
                        color: #000000;
                        z-index: 8;
                        top: 415px;
                        left: calc(50% - 600px + 105px);
                        width: 255px;
                        height: auto;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734010746803"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 20px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010746803"] {
                            top: 385px;
                            left: calc(50% - 480px + 15px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010746803"] {
                            top: 519px;
                            left: calc(50% - 320px + 15px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010746803"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010746803"] {
                            top: 25px;
                            left: calc(50% - 240px + 916px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010746803"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734010746803"] {
                            left: calc(50% - 160px + 890px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734010746803"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1738011282349"] {
                        z-index: 9;
                        top: 0px;
                        left: calc(50% - 600px + 440px);
                        width: 320px;
                        height: 350px;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1738011282349"] .tn-atom {
                        border-radius: 5px 5px 5px 5px;
                        background-color: #e9adc9;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1738011282349"] {
                            left: calc(50% - 480px + 330px);
                            width: 300px;
                            height: 330px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1738011282349"] {
                            left: calc(50% - 320px + 330px);
                            width: 310px;
                            height: 300px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1738011282349"] {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1738011282349"] {
                            height: 280px;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011082959"] {
                        color: #ffffff;
                        z-index: 10;
                        top: 171px;
                        left: calc(50% - 600px + 465px);
                        width: 259px;
                        height: auto;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011082959"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082959"] {
                            top: 146px;
                            left: calc(50% - 480px + 345px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011082959"] .tn-atom {
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082959"] {
                            top: 139px;
                            left: calc(50% - 320px + 345px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011082959"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082959"] {
                            top: 136px;
                            left: calc(50% - 160px + 350px);
                            width: 240px;
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011082959"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011082974"] {
                        color: #ffffff;
                        z-index: 11;
                        top: 25px;
                        left: calc(50% - 600px + 465px);
                        width: 247px;
                        height: auto;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011082974"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 20px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082974"] {
                            left: calc(50% - 480px + 345px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082974"] {
                            left: calc(50% - 320px + 345px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011082974"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082974"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082974"] {
                            left: calc(50% - 160px + 350px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011082974"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011082985"] {
                        z-index: 12;
                        top: 0px;
                        left: calc(50% - 600px + 80px);
                        width: 320px;
                        height: 350px;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011082985"] .tn-atom {
                        border-radius: 5px 5px 5px 5px;
                        background-color: #ffe797;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082985"] {
                            left: calc(50% - 480px + 0px);
                            width: 300px;
                            height: 330px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082985"] {
                            width: 310px;
                            height: 300px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082985"] {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082985"] {
                            height: 280px;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011082995"] {
                        color: #000000;
                        z-index: 13;
                        top: 171px;
                        left: calc(50% - 600px + 105px);
                        width: 265px;
                        height: auto;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011082995"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082995"] {
                            top: 146px;
                            left: calc(50% - 480px + 15px);
                            width: 258px;
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011082995"] .tn-atom {
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082995"] {
                            top: 139px;
                            width: 282px;
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011082995"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011082995"] {
                            top: 136px;
                            left: calc(50% - 160px + 20px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011082995"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011083005"] {
                        color: #000000;
                        z-index: 14;
                        top: 25px;
                        left: calc(50% - 600px + 105px);
                        width: 255px;
                        height: auto;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734011083005"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 20px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011083005"] {
                            left: calc(50% - 480px + 15px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011083005"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011083005"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734011083005"] {
                            left: calc(50% - 160px + 20px);
                            height: auto;
                        }
                        #rec857241494 .tn-elem[data-elem-id="1734011083005"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734012185110"] {
                        z-index: 15;
                        top: 517px;
                        left: calc(50% - 600px + 500px);
                        width: 201px;
                        height: 94px;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1734012185110"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857241494 .tn-elem[data-elem-id="1734012185110"] {
                            top: 484px;
                            left: calc(50% - 480px + 379px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857241494 .tn-elem[data-elem-id="1734012185110"] {
                            top: 350px;
                            left: calc(50% - 320px + 220px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1734012185110"] {
                            top: 103px;
                            left: calc(50% - 240px + 670px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1734012185110"] {
                            top: 100px;
                            width: 170px;
                            height: 80px;
                        }
                    }
                    #rec857241494 .tn-elem[data-elem-id="1739304849293"] {
                        z-index: 16;
                        top: 38px;
                        left: calc(50% - 600px + 939px);
                        width: 100px;
                        height: 100px;
                    }
                    #rec857241494 .tn-elem[data-elem-id="1739304849293"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        opacity: 0;
                        background-color: #fff705;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec857241494 .tn-elem[data-elem-id="1739304849293"] {
                            top: 193px;
                            left: calc(50% - 240px + 1541px);
                            width: 50px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857241494 .tn-elem[data-elem-id="1739304849293"] {
                        }
                    }
               
                    #rec857237482 .t397__tab_active {
                        border-bottom-color: #ff0000 !important;
                    }
                    #rec857237482 .t397__tab_active .t397__title {
                        color: #ff0000 !important;
                        font-weight: 800 !important;
                        font-family: 'Inter/Kyiv';
                        font-size: 34px;
                        height: 48px;
                    }
                    #rec857237482 .t397__select {
                        border: 1px solid #ff0000;
                        color: #ff0000;
                    }
                    #rec857237482 .t397__wrapper_mobile:after {
                        border-color: #ff0000 transparent transparent transparent;
                    }
                    #rec857237482 .t397__firefoxfix {
                        top: 1px;
                        bottom: 1px;
                        right: 1px;
                    }
                    #rec857237482 .t397__tab:not(.t397__tab_active):hover .t397__title {
                        opacity: 0.5 !important;
                    }
                    #allrecords [aria-labelledby$="857237482"]:focus-visible {
                        outline-color: #2015ff;
                        outline-offset: 2px;
                        outline-style: auto;
                    }
                    @media screen and (max-width: 480px) {
                        #rec857237482 .t397__select {
                            font-size: 15px;
                        }
                    }
              
                    #rec857237482 .t397__title {
                        font-size: 20px;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec857237482 .t397__title {
                            font-size: 15px;
                        }
                    }
                     
                    #rec857237483 .t396__artboard {
                        height: 3127px;
                        background-color: #fffefc;
                    }
                    #rec857237483 .t396__filter {
                        height: 3127px;
                    }
                    #rec857237483 .t396__carrier {
                        height: 3127px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .t396__artboard,
                        #rec857237483 .t396__filter,
                        #rec857237483 .t396__carrier {
                            height: 2951px;
                        }
                        #rec857237483 .t396__filter {
                        }
                        #rec857237483 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .t396__artboard,
                        #rec857237483 .t396__filter,
                        #rec857237483 .t396__carrier {
                            height: 4150px;
                        }
                        #rec857237483 .t396__filter {
                        }
                        #rec857237483 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .t396__artboard,
                        #rec857237483 .t396__filter,
                        #rec857237483 .t396__carrier {
                            height: 4139px;
                        }
                        #rec857237483 .t396__filter {
                        }
                        #rec857237483 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .t396__artboard,
                        #rec857237483 .t396__filter,
                        #rec857237483 .t396__carrier {
                            height: 8195px;
                        }
                        #rec857237483 .t396__filter {
                        }
                        #rec857237483 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474765"] {
                        z-index: 3;
                        top: 50px;
                        left: calc(50% - 600px + 80px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474765"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474765"] {
                            top: 125px;
                            left: calc(50% - 480px + 0px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474765"] {
                            top: 55px;
                            width: 308px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474765"] {
                            left: calc(50% - 240px + -34px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474765"] {
                            top: 55px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474775"] {
                        color: #ff0000;
                        text-align: right;
                        z-index: 4;
                        top: 448px;
                        left: calc(50% - 600px + 306px);
                        width: 91px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474775"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474775"] {
                            top: 497px;
                            left: calc(50% - 480px + 221px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713470474775"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474775"] {
                            top: 430px;
                            left: calc(50% - 320px + 226px);
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713470474775"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474775"] {
                            left: calc(50% - 240px + 146px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474775"] {
                            top: 430px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474782"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 5;
                        top: 66px;
                        left: calc(50% - 600px + 95px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474782"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474782"] {
                            top: 139px;
                            left: calc(50% - 480px + 14px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474782"] {
                            top: 69px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474782"] {
                            left: calc(50% - 240px + -20px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474782"] {
                            top: 68px;
                            left: calc(50% - 160px + 39px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814545"] {
                        z-index: 6;
                        top: 50px;
                        left: calc(50% - 600px + 434px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814545"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814545"] {
                            top: 125px;
                            left: calc(50% - 480px + 326px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814545"] {
                            top: 55px;
                            left: calc(50% - 320px + 332px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814545"] {
                            left: calc(50% - 240px + 245px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814545"] {
                            top: 506px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814553"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 7;
                        top: 448px;
                        left: calc(50% - 600px + 673px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814553"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814553"] {
                            top: 497px;
                            left: calc(50% - 480px + 542px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713470814553"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814553"] {
                            top: 430px;
                            left: calc(50% - 320px + 553px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814553"] {
                            left: calc(50% - 240px + 416px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814553"] {
                            top: 881px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184785"] {
                        z-index: 8;
                        top: 2054px;
                        left: calc(50% - 600px + 434px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184785"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184785"] {
                            top: 1989px;
                            left: calc(50% - 480px + 326px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184785"] {
                            top: 2761px;
                            left: calc(50% - 320px + 332px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184785"] {
                            top: 2761px;
                            left: calc(50% - 240px + 249px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184785"] {
                            top: 5915px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474787"] {
                        z-index: 9;
                        top: 438px;
                        left: calc(50% - 600px + 95px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474787"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474787"] {
                            top: 489px;
                            left: calc(50% - 480px + 15px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474787"] {
                            top: 421px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474787"] {
                            left: calc(50% - 240px + -19px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474787"] {
                            top: 420px;
                            left: calc(50% - 160px + 39px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814560"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 10;
                        top: 65px;
                        left: calc(50% - 600px + 449px);
                        width: 31px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814560"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814560"] {
                            top: 139px;
                            left: calc(50% - 480px + 340px);
                            width: 31px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814560"] {
                            top: 69px;
                            left: calc(50% - 320px + 346px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814560"] {
                            left: calc(50% - 240px + 259px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814560"] {
                            top: 519px;
                            left: calc(50% - 160px + 39px);
                            width: 31px;
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814566"] {
                        z-index: 11;
                        top: 443px;
                        left: calc(50% - 600px + 803px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814566"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #e9adc9;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814566"] {
                            top: 491px;
                            left: calc(50% - 480px + 665px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814566"] {
                            top: 872px;
                            left: calc(50% - 320px + 13px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814566"] {
                            left: calc(50% - 240px + -21px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814566"] {
                            top: 1322px;
                            left: calc(50% - 160px + 38px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474791"] {
                        color: #e9adc9;
                        text-align: CENTER;
                        z-index: 12;
                        top: 453px;
                        left: calc(50% - 600px + 815px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470474791"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474791"] {
                            top: 500px;
                            left: calc(50% - 480px + 676px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474791"] {
                            top: 881px;
                            left: calc(50% - 320px + 24px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474791"] {
                            left: calc(50% - 240px + -10px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470474791"] {
                            top: 1331px;
                            left: calc(50% - 160px + 49px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814571"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 13;
                        top: 447px;
                        left: calc(50% - 600px + 107px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814571"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814571"] {
                            top: 497px;
                            left: calc(50% - 480px + 26px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814571"] {
                            top: 430px;
                            left: calc(50% - 320px + 26px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814571"] {
                            left: calc(50% - 240px + -8px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814571"] {
                            top: 428px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470818085"] {
                        z-index: 14;
                        top: -4658px;
                        left: calc(50% - 600px + -5400px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470818085"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #ffffff;
                        background-position: center center;
                        border-color: #e9adc9;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470818090"] {
                        color: #e9adc9;
                        text-align: RIGHT;
                        z-index: 15;
                        top: -4658px;
                        left: calc(50% - 600px + -5400px);
                        width: 183px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470818090"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 18px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470818095"] {
                        color: #e9adc9;
                        text-align: LEFT;
                        z-index: 16;
                        top: -4658px;
                        left: calc(50% - 600px + -5400px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470818095"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 18px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031607"] {
                        z-index: 17;
                        top: 50px;
                        left: calc(50% - 600px + 788px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031607"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031607"] {
                            top: 125px;
                            left: calc(50% - 480px + 652px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031607"] {
                            top: 506px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031607"] {
                            left: calc(50% - 240px + -34px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031607"] {
                            top: 956px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031616"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 18;
                        top: 448px;
                        left: calc(50% - 600px + 1027px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031616"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031616"] {
                            top: 497px;
                            left: calc(50% - 480px + 868px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713471031616"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031616"] {
                            top: 881px;
                            left: calc(50% - 320px + 221px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031616"] {
                            left: calc(50% - 240px + 146px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031616"] {
                            top: 1331px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031623"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 19;
                        top: 65px;
                        left: calc(50% - 600px + 803px);
                        width: 32px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031623"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031623"] {
                            top: 139px;
                            left: calc(50% - 480px + 665px);
                            width: 32px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031623"] {
                            top: 520px;
                            left: calc(50% - 320px + 13px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031623"] {
                            left: calc(50% - 240px + -21px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031623"] {
                            top: 970px;
                            left: calc(50% - 160px + 38px);
                            width: 32px;
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031649"] {
                        z-index: 20;
                        top: 438px;
                        left: calc(50% - 600px + 449px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031649"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031649"] {
                            top: 489px;
                            left: calc(50% - 480px + 341px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031649"] {
                            top: 421px;
                            left: calc(50% - 320px + 347px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031649"] {
                            left: calc(50% - 240px + 260px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031649"] {
                            top: 870px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031653"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 21;
                        top: 447px;
                        left: calc(50% - 600px + 461px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471031653"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031653"] {
                            top: 497px;
                            left: calc(50% - 480px + 352px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031653"] {
                            top: 429px;
                            left: calc(50% - 320px + 358px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031653"] {
                            left: calc(50% - 240px + 271px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471031653"] {
                            top: 878px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471177336"] {
                        z-index: 22;
                        top: 95px;
                        left: calc(50% - 600px + 123px);
                        width: 247px;
                        height: 310px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471177336"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471177336"] {
                            top: 170px;
                            left: calc(50% - 480px + 40px);
                            width: 229px;
                            height: 288px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471177336"] {
                            top: 113px;
                            left: calc(50% - 320px + 40px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471177336"] {
                            left: calc(50% - 240px + -14px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471177336"] {
                            top: 105px;
                            left: calc(50% - 160px + 44px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471456418"] {
                        z-index: 23;
                        top: 95px;
                        left: calc(50% - 600px + 477px);
                        width: 247px;
                        height: 310px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471456418"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471456418"] {
                            top: 170px;
                            left: calc(50% - 480px + 366px);
                            width: 229px;
                            height: 288px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471456418"] {
                            top: 113px;
                            left: calc(50% - 320px + 372px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471456418"] {
                            left: calc(50% - 240px + 265px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471456418"] {
                            top: 556px;
                            left: calc(50% - 160px + 46px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471572707"] {
                        z-index: 24;
                        top: 438px;
                        left: calc(50% - 600px + 803px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471572707"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471572707"] {
                            top: 489px;
                            left: calc(50% - 480px + 667px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471572707"] {
                            top: 872px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471572707"] {
                            left: calc(50% - 240px + -19px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471572707"] {
                            top: 1322px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471572714"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 25;
                        top: 447px;
                        left: calc(50% - 600px + 815px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471572714"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471572714"] {
                            top: 497px;
                            left: calc(50% - 480px + 678px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471572714"] {
                            top: 881px;
                            left: calc(50% - 320px + 26px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471572714"] {
                            left: calc(50% - 240px + -8px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471572714"] {
                            top: 1330px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471601162"] {
                        z-index: 26;
                        top: 95px;
                        left: calc(50% - 600px + 832px);
                        width: 247px;
                        height: 310px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713471601162"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471601162"] {
                            top: 170px;
                            left: calc(50% - 480px + 692px);
                            width: 229px;
                            height: 288px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471601162"] {
                            top: 564px;
                            left: calc(50% - 320px + 40px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471601162"] {
                            left: calc(50% - 240px + -14px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713471601162"] {
                            top: 1006px;
                            left: calc(50% - 160px + 45px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071547"] {
                        z-index: 27;
                        top: 551px;
                        left: calc(50% - 600px + 80px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071547"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071547"] {
                            top: 591px;
                            left: calc(50% - 480px + 0px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071547"] {
                            top: 506px;
                            left: calc(50% - 320px + 332px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071547"] {
                            left: calc(50% - 240px + 245px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071547"] {
                            top: 1407px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071555"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 28;
                        top: 948px;
                        left: calc(50% - 600px + 325px);
                        width: 72px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071555"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071555"] {
                            top: 966px;
                            left: calc(50% - 480px + 221px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713472071555"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071555"] {
                            top: 881px;
                            left: calc(50% - 320px + 558px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071555"] {
                            left: calc(50% - 240px + 416px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071555"] {
                            top: 1782px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184754"] {
                        z-index: 29;
                        top: 2054px;
                        left: calc(50% - 600px + 80px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184754"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184754"] {
                            top: 1989px;
                            left: calc(50% - 480px + 0px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184754"] {
                            top: 2761px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184754"] {
                            top: 2762px;
                            left: calc(50% - 240px + -35px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184754"] {
                            top: 5465px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071562"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 30;
                        top: 566px;
                        left: calc(50% - 600px + 95px);
                        width: 31px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071562"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071562"] {
                            top: 605px;
                            left: calc(50% - 480px + 12px);
                            width: 31px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071562"] {
                            top: 520px;
                            left: calc(50% - 320px + 346px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071562"] {
                            left: calc(50% - 240px + 259px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071562"] {
                            top: 1420px;
                            left: calc(50% - 160px + 39px);
                            width: 31px;
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071567"] {
                        z-index: 31;
                        top: 939px;
                        left: calc(50% - 600px + 95px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071567"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071567"] {
                            top: 955px;
                            left: calc(50% - 480px + 15px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071567"] {
                            top: 872px;
                            left: calc(50% - 320px + 347px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071567"] {
                            left: calc(50% - 240px + 260px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071567"] {
                            top: 1772px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071571"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 32;
                        top: 948px;
                        left: calc(50% - 600px + 107px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071571"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071571"] {
                            top: 963px;
                            left: calc(50% - 480px + 26px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071571"] {
                            top: 880px;
                            left: calc(50% - 320px + 358px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071571"] {
                            left: calc(50% - 240px + 271px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071571"] {
                            top: 1780px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071577"] {
                        z-index: 33;
                        top: 596px;
                        left: calc(50% - 600px + 122px);
                        width: 247px;
                        height: 310px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472071577"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071577"] {
                            top: 636px;
                            left: calc(50% - 480px + 40px);
                            width: 229px;
                            height: 288px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071577"] {
                            top: 564px;
                            left: calc(50% - 320px + 372px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071577"] {
                            left: calc(50% - 240px + 265px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472071577"] {
                            top: 1457px;
                            left: calc(50% - 160px + 45px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226755"] {
                        z-index: 34;
                        top: 2946px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226755"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #e9adc9;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226755"] {
                            top: 2820px;
                            left: calc(50% - 480px + 663px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226755"] {
                            top: 4028px;
                            left: calc(50% - 320px + 342px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226755"] {
                            top: 4029px;
                            left: calc(50% - 240px + 261px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226755"] {
                            top: 8085px;
                            left: calc(50% - 160px + 37px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226760"] {
                        color: #e9adc9;
                        text-align: CENTER;
                        z-index: 35;
                        top: 2957px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226760"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226760"] {
                            top: 2830px;
                            left: calc(50% - 480px + 675px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226760"] {
                            top: 4038px;
                            left: calc(50% - 320px + 352px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226760"] {
                            top: 4039px;
                            left: calc(50% - 240px + 272px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226760"] {
                            top: 8094px;
                            left: calc(50% - 160px + 48px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226772"] {
                        z-index: 36;
                        top: 2554px;
                        left: calc(50% - 600px + 788px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226772"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226772"] {
                            top: 2455px;
                            left: calc(50% - 480px + 652px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226772"] {
                            top: 3663px;
                            left: calc(50% - 320px + 330px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226772"] {
                            top: 3663px;
                            left: calc(50% - 240px + 249px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226772"] {
                            top: 7719px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226776"] {
                        color: #e9adc9;
                        text-align: RIGHT;
                        z-index: 37;
                        top: 2951px;
                        left: calc(50% - 600px + 1025px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226776"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226776"] {
                            top: 2821px;
                            left: calc(50% - 480px + 868px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713472226776"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226776"] {
                            top: 4038px;
                            left: calc(50% - 320px + 550px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226776"] {
                            top: 4039px;
                            left: calc(50% - 240px + 429px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226776"] {
                            top: 8094px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226781"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 38;
                        top: 2569px;
                        left: calc(50% - 600px + 801px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226781"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226781"] {
                            top: 2468px;
                            left: calc(50% - 480px + 663px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226781"] {
                            top: 3676px;
                            left: calc(50% - 320px + 342px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226781"] {
                            top: 3677px;
                            left: calc(50% - 240px + 261px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226781"] {
                            top: 7730px;
                            left: calc(50% - 160px + 37px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226796"] {
                        z-index: 39;
                        top: 2942px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226796"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226796"] {
                            top: 2814px;
                            left: calc(50% - 480px + 665px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226796"] {
                            top: 4028px;
                            left: calc(50% - 320px + 345px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226796"] {
                            top: 4029px;
                            left: calc(50% - 240px + 264px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226796"] {
                            top: 8085px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226799"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 40;
                        top: 2951px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226799"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226799"] {
                            top: 2821px;
                            left: calc(50% - 480px + 677px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226799"] {
                            top: 4037px;
                            left: calc(50% - 320px + 357px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226799"] {
                            top: 4038px;
                            left: calc(50% - 240px + 276px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226799"] {
                            top: 8092px;
                            left: calc(50% - 160px + 52px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226805"] {
                        z-index: 41;
                        top: 2599px;
                        left: calc(50% - 600px + 830px);
                        width: 247px;
                        height: 310px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472226805"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226805"] {
                            top: 2499px;
                            left: calc(50% - 480px + 692px);
                            width: 229px;
                            height: 288px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226805"] {
                            top: 3709px;
                            left: calc(50% - 320px + 370px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226805"] {
                            top: 3710px;
                            left: calc(50% - 240px + 269px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472226805"] {
                            top: 7769px;
                            left: calc(50% - 160px + 45px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435358"] {
                        z-index: 42;
                        top: 944px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435358"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #e9adc9;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435358"] {
                            top: 957px;
                            left: calc(50% - 480px + 664px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435358"] {
                            top: 1323px;
                            left: calc(50% - 320px + 344px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435358"] {
                            left: calc(50% - 240px + 257px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435358"] {
                            top: 2676px;
                            left: calc(50% - 160px + 37px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435364"] {
                        color: #e9adc9;
                        text-align: CENTER;
                        z-index: 43;
                        top: 954px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435364"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435364"] {
                            top: 966px;
                            left: calc(50% - 480px + 675px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435364"] {
                            top: 1332px;
                            left: calc(50% - 320px + 355px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435364"] {
                            left: calc(50% - 240px + 268px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435364"] {
                            top: 2684px;
                            left: calc(50% - 160px + 48px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435376"] {
                        z-index: 44;
                        top: 551px;
                        left: calc(50% - 600px + 788px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435376"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435376"] {
                            top: 591px;
                            left: calc(50% - 480px + 652px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435376"] {
                            top: 957px;
                            left: calc(50% - 320px + 332px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435376"] {
                            left: calc(50% - 240px + 245px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435376"] {
                            top: 2309px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435380"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 45;
                        top: 948px;
                        left: calc(50% - 600px + 1025px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435380"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435380"] {
                            top: 966px;
                            left: calc(50% - 480px + 868px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713472435380"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435380"] {
                            top: 1332px;
                            left: calc(50% - 320px + 553px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435380"] {
                            left: calc(50% - 240px + 416px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435380"] {
                            top: 2684px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435386"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 46;
                        top: 566px;
                        left: calc(50% - 600px + 801px);
                        width: 32px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435386"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435386"] {
                            top: 605px;
                            left: calc(50% - 480px + 664px);
                            width: 32px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435386"] {
                            top: 971px;
                            left: calc(50% - 320px + 344px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435386"] {
                            left: calc(50% - 240px + 257px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435386"] {
                            top: 2323px;
                            left: calc(50% - 160px + 37px);
                            width: 32px;
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435409"] {
                        z-index: 47;
                        top: 939px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435409"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435409"] {
                            top: 955px;
                            left: calc(50% - 480px + 667px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435409"] {
                            top: 1323px;
                            left: calc(50% - 320px + 347px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435409"] {
                            left: calc(50% - 240px + 260px);
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713472435409"] .tn-atom {
                            background-size: cover;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435409"] {
                            top: 2676px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435413"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 48;
                        top: 948px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435413"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435413"] {
                            top: 963px;
                            left: calc(50% - 480px + 678px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435413"] {
                            top: 1331px;
                            left: calc(50% - 320px + 359px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435413"] {
                            left: calc(50% - 240px + 272px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435413"] {
                            top: 2684px;
                            left: calc(50% - 160px + 52px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435420"] {
                        z-index: 49;
                        top: 596px;
                        left: calc(50% - 600px + 830px);
                        width: 247px;
                        height: 316px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713472435420"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435420"] {
                            top: 636px;
                            left: calc(50% - 480px + 690px);
                            width: 229px;
                            height: 294px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435420"] {
                            top: 1002px;
                            left: calc(50% - 320px + 370px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435420"] {
                            left: calc(50% - 240px + 265px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713472435420"] {
                            top: 2359px;
                            left: calc(50% - 160px + 45px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179031"] {
                        z-index: 50;
                        top: 1445px;
                        left: calc(50% - 600px + 447px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179031"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #e9adc9;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179031"] {
                            top: 1423px;
                            left: calc(50% - 480px + 338px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179031"] {
                            top: 1774px;
                            left: calc(50% - 320px + 344px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179031"] {
                            left: calc(50% - 240px + -22px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179031"] {
                            top: 3578px;
                            left: calc(50% - 160px + 37px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179035"] {
                        color: #e9adc9;
                        text-align: CENTER;
                        z-index: 51;
                        top: 1455px;
                        left: calc(50% - 600px + 459px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179035"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179035"] {
                            top: 1432px;
                            left: calc(50% - 480px + 349px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179035"] {
                            top: 1783px;
                            left: calc(50% - 320px + 355px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179035"] {
                            left: calc(50% - 240px + -11px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179035"] {
                            top: 3586px;
                            left: calc(50% - 160px + 48px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179045"] {
                        z-index: 52;
                        top: 1052px;
                        left: calc(50% - 600px + 434px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179045"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179045"] {
                            top: 1057px;
                            left: calc(50% - 480px + 326px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179045"] {
                            top: 1408px;
                            left: calc(50% - 320px + 332px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179045"] {
                            left: calc(50% - 240px + -34px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179045"] {
                            top: 3211px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179049"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 53;
                        top: 1449px;
                        left: calc(50% - 600px + 671px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179049"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179049"] {
                            top: 1429px;
                            left: calc(50% - 480px + 542px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713815179049"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179049"] {
                            top: 1783px;
                            left: calc(50% - 320px + 553px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179049"] {
                            left: calc(50% - 240px + 146px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179049"] {
                            top: 3586px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179054"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 54;
                        top: 1067px;
                        left: calc(50% - 600px + 447px);
                        width: 32px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179054"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179054"] {
                            top: 1071px;
                            left: calc(50% - 480px + 338px);
                            width: 32px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179054"] {
                            top: 1422px;
                            left: calc(50% - 320px + 344px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179054"] {
                            left: calc(50% - 240px + -22px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179054"] {
                            top: 3226px;
                            left: calc(50% - 160px + 37px);
                            width: 32px;
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179070"] {
                        z-index: 55;
                        top: 1440px;
                        left: calc(50% - 600px + 447px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179070"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179070"] {
                            top: 1421px;
                            left: calc(50% - 480px + 339px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179070"] {
                            top: 1774px;
                            left: calc(50% - 320px + 347px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179070"] {
                            left: calc(50% - 240px + -19px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179070"] {
                            top: 3578px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179074"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 56;
                        top: 1449px;
                        left: calc(50% - 600px + 459px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179074"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179074"] {
                            top: 1429px;
                            left: calc(50% - 480px + 350px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179074"] {
                            top: 1782px;
                            left: calc(50% - 320px + 359px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179074"] {
                            left: calc(50% - 240px + -7px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179074"] {
                            top: 3586px;
                            left: calc(50% - 160px + 52px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179080"] {
                        z-index: 57;
                        top: 1097px;
                        left: calc(50% - 600px + 476px);
                        width: 247px;
                        height: 310px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179080"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179080"] {
                            top: 1102px;
                            left: calc(50% - 480px + 366px);
                            width: 229px;
                            height: 288px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179080"] {
                            top: 1454px;
                            left: calc(50% - 320px + 372px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179080"] {
                            left: calc(50% - 240px + -14px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179080"] {
                            top: 3261px;
                            left: calc(50% - 160px + 45px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179098"] {
                        z-index: 58;
                        top: 1445px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179098"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #e9adc9;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179098"] {
                            top: 1423px;
                            left: calc(50% - 480px + 664px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179098"] {
                            top: 2225px;
                            left: calc(50% - 320px + 12px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179098"] {
                            top: 2225px;
                            left: calc(50% - 240px + -23px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179098"] {
                            top: 4029px;
                            left: calc(50% - 160px + 37px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814589"] {
                        color: #ffffff;
                        text-align: CENTER;
                        z-index: 59;
                        top: 1068px;
                        left: calc(50% - 600px + 135px);
                        width: 100px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713470814589"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814589"] {
                            top: 1074px;
                            left: calc(50% - 480px + 53px);
                            width: 93px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814589"] {
                            top: 1424px;
                            left: calc(50% - 320px + 50px);
                            width: 85px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814589"] {
                            top: 1424px;
                            left: calc(50% - 240px + 295px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713470814589"] {
                            top: 2777px;
                            left: calc(50% - 160px + 75px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179103"] {
                        color: #e9adc9;
                        text-align: CENTER;
                        z-index: 60;
                        top: 1455px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179103"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179103"] {
                            top: 1432px;
                            left: calc(50% - 480px + 675px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179103"] {
                            top: 2234px;
                            left: calc(50% - 320px + 23px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179103"] {
                            top: 2234px;
                            left: calc(50% - 240px + -12px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179103"] {
                            top: 4038px;
                            left: calc(50% - 160px + 48px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815178991"] {
                        z-index: 61;
                        top: 1052px;
                        left: calc(50% - 600px + 80px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815178991"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815178991"] {
                            top: 1057px;
                            left: calc(50% - 480px + 0px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815178991"] {
                            top: 1408px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815178991"] {
                            top: 1408px;
                            left: calc(50% - 240px + 245px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815178991"] {
                            top: 2760px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179113"] {
                        z-index: 62;
                        top: 1052px;
                        left: calc(50% - 600px + 788px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179113"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179113"] {
                            top: 1057px;
                            left: calc(50% - 480px + 652px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179113"] {
                            top: 1859px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179113"] {
                            top: 1859px;
                            left: calc(50% - 240px + -35px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179113"] {
                            top: 3663px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815178998"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 63;
                        top: 1449px;
                        left: calc(50% - 600px + 325px);
                        width: 72px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815178998"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815178998"] {
                            top: 1429px;
                            left: calc(50% - 480px + 221px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713815178998"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815178998"] {
                            top: 1783px;
                            left: calc(50% - 320px + 226px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815178998"] {
                            top: 1783px;
                            left: calc(50% - 240px + 416px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815178998"] {
                            top: 3135px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179118"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 64;
                        top: 1449px;
                        left: calc(50% - 600px + 1025px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179118"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179118"] {
                            top: 1429px;
                            left: calc(50% - 480px + 868px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1713815179118"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179118"] {
                            top: 2234px;
                            left: calc(50% - 320px + 221px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179118"] {
                            top: 2234px;
                            left: calc(50% - 240px + 136px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179118"] {
                            top: 4038px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179005"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 65;
                        top: 1067px;
                        left: calc(50% - 600px + 95px);
                        width: 29px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179005"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179005"] {
                            top: 1071px;
                            left: calc(50% - 480px + 14px);
                            width: 29px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179005"] {
                            top: 1422px;
                            left: calc(50% - 320px + 14px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179005"] {
                            top: 1422px;
                            left: calc(50% - 240px + 259px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179005"] {
                            top: 2773px;
                            left: calc(50% - 160px + 39px);
                            width: 29px;
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179123"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 66;
                        top: 1067px;
                        left: calc(50% - 600px + 801px);
                        width: 32px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179123"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179123"] {
                            top: 1071px;
                            left: calc(50% - 480px + 664px);
                            width: 32px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179123"] {
                            top: 1873px;
                            left: calc(50% - 320px + 12px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179123"] {
                            top: 1873px;
                            left: calc(50% - 240px + -23px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179123"] {
                            top: 3677px;
                            left: calc(50% - 160px + 37px);
                            width: 32px;
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179011"] {
                        z-index: 67;
                        top: 1440px;
                        left: calc(50% - 600px + 95px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179011"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179011"] {
                            top: 1421px;
                            left: calc(50% - 480px + 15px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179011"] {
                            top: 1774px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179011"] {
                            top: 1774px;
                            left: calc(50% - 240px + 260px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179011"] {
                            top: 3126px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179015"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 68;
                        top: 1449px;
                        left: calc(50% - 600px + 107px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179015"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179015"] {
                            top: 1429px;
                            left: calc(50% - 480px + 26px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179015"] {
                            top: 1782px;
                            left: calc(50% - 320px + 26px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179015"] {
                            top: 1782px;
                            left: calc(50% - 240px + 271px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179015"] {
                            top: 3134px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179021"] {
                        z-index: 69;
                        top: 1097px;
                        left: calc(50% - 600px + 122px);
                        width: 248px;
                        height: 308px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179021"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179021"] {
                            top: 1102px;
                            left: calc(50% - 480px + 39px);
                            width: 230px;
                            height: 286px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179021"] {
                            top: 1454px;
                            left: calc(50% - 320px + 29px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179021"] {
                            top: 1454px;
                            left: calc(50% - 240px + 264px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179021"] {
                            top: 2810px;
                            left: calc(50% - 160px + 48px);
                            width: 223px;
                            height: 278px;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179139"] {
                        z-index: 70;
                        top: 1440px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179139"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179139"] {
                            top: 1421px;
                            left: calc(50% - 480px + 665px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179139"] {
                            top: 2225px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179139"] {
                            top: 2225px;
                            left: calc(50% - 240px + -20px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179139"] {
                            top: 4029px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179144"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 71;
                        top: 1449px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179144"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179144"] {
                            top: 1429px;
                            left: calc(50% - 480px + 676px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179144"] {
                            top: 2233px;
                            left: calc(50% - 320px + 27px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179144"] {
                            top: 2233px;
                            left: calc(50% - 240px + -8px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179144"] {
                            top: 4037px;
                            left: calc(50% - 160px + 52px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179149"] {
                        z-index: 72;
                        top: 1097px;
                        left: calc(50% - 600px + 830px);
                        width: 247px;
                        height: 316px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1713815179149"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179149"] {
                            top: 1102px;
                            left: calc(50% - 480px + 690px);
                            width: 229px;
                            height: 294px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179149"] {
                            top: 1905px;
                            left: calc(50% - 320px + 38px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179149"] {
                            top: 1913px;
                            left: calc(50% - 240px + -15px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1713815179149"] {
                            top: 3713px;
                            left: calc(50% - 160px + 45px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565629"] {
                        z-index: 73;
                        top: 1946px;
                        left: calc(50% - 600px + 447px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565629"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #e9adc9;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565629"] {
                            top: 1889px;
                            left: calc(50% - 480px + 338px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565629"] {
                            top: 2676px;
                            left: calc(50% - 320px + 12px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565629"] {
                            top: 2676px;
                            left: calc(50% - 240px + -22px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565629"] {
                            top: 4929px;
                            left: calc(50% - 160px + 36px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565636"] {
                        color: #e9adc9;
                        text-align: CENTER;
                        z-index: 74;
                        top: 1956px;
                        left: calc(50% - 600px + 459px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565636"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565636"] {
                            top: 1898px;
                            left: calc(50% - 480px + 349px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565636"] {
                            top: 2686px;
                            left: calc(50% - 320px + 23px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565636"] {
                            top: 2686px;
                            left: calc(50% - 240px + -11px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565636"] {
                            top: 4940px;
                            left: calc(50% - 160px + 47px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565642"] {
                        z-index: 75;
                        top: 1553px;
                        left: calc(50% - 600px + 434px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565642"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565642"] {
                            top: 1523px;
                            left: calc(50% - 480px + 326px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565642"] {
                            top: 2310px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565642"] {
                            top: 2310px;
                            left: calc(50% - 240px + -34px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565642"] {
                            top: 4565px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565647"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 76;
                        top: 1950px;
                        left: calc(50% - 600px + 671px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565647"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565647"] {
                            top: 1890px;
                            left: calc(50% - 480px + 542px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1717845565647"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565647"] {
                            top: 2686px;
                            left: calc(50% - 320px + 221px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565647"] {
                            top: 2686px;
                            left: calc(50% - 240px + 146px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565647"] {
                            top: 4940px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565652"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 77;
                        top: 1568px;
                        left: calc(50% - 600px + 447px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565652"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565652"] {
                            top: 1537px;
                            left: calc(50% - 480px + 338px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565652"] {
                            top: 2323px;
                            left: calc(50% - 320px + 12px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565652"] {
                            top: 2323px;
                            left: calc(50% - 240px + -22px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565652"] {
                            top: 4578px;
                            left: calc(50% - 160px + 36px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565665"] {
                        z-index: 78;
                        top: 1941px;
                        left: calc(50% - 600px + 447px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565665"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565665"] {
                            top: 1882px;
                            left: calc(50% - 480px + 341px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565665"] {
                            top: 2676px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565665"] {
                            top: 2676px;
                            left: calc(50% - 240px + -19px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565665"] {
                            top: 4929px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565669"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 79;
                        top: 1950px;
                        left: calc(50% - 600px + 459px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565669"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565669"] {
                            top: 1890px;
                            left: calc(50% - 480px + 352px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565669"] {
                            top: 2685px;
                            left: calc(50% - 320px + 27px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565669"] {
                            top: 2685px;
                            left: calc(50% - 240px + -7px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565669"] {
                            top: 4937px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565673"] {
                        z-index: 80;
                        top: 1598px;
                        left: calc(50% - 600px + 476px);
                        width: 247px;
                        height: 310px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565673"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565673"] {
                            top: 1568px;
                            left: calc(50% - 480px + 366px);
                            width: 229px;
                            height: 288px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565673"] {
                            top: 2362px;
                            left: calc(50% - 320px + 40px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565673"] {
                            top: 2367px;
                            left: calc(50% - 240px + -14px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565673"] {
                            top: 4615px;
                            left: calc(50% - 160px + 44px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565686"] {
                        z-index: 81;
                        top: 1946px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565686"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #e9adc9;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565686"] {
                            top: 1889px;
                            left: calc(50% - 480px + 664px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565686"] {
                            top: 2675px;
                            left: calc(50% - 320px + 344px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565686"] {
                            top: 2676px;
                            left: calc(50% - 240px + 263px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565686"] {
                            top: 5382px;
                            left: calc(50% - 160px + 36px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565690"] {
                        color: #ffffff;
                        text-align: CENTER;
                        z-index: 82;
                        top: 1569px;
                        left: calc(50% - 600px + 135px);
                        width: 100px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565690"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565690"] {
                            top: 1540px;
                            left: calc(50% - 480px + 53px);
                            width: 93px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565690"] {
                            top: 1874px;
                            left: calc(50% - 320px + 382px);
                            width: 85px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565690"] {
                            top: 1875px;
                            left: calc(50% - 240px + 300px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565690"] {
                            top: 4128px;
                            left: calc(50% - 160px + 75px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565695"] {
                        color: #e9adc9;
                        text-align: CENTER;
                        z-index: 83;
                        top: 1956px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565695"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565695"] {
                            top: 1898px;
                            left: calc(50% - 480px + 675px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565695"] {
                            top: 2684px;
                            left: calc(50% - 320px + 354px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565695"] {
                            top: 2685px;
                            left: calc(50% - 240px + 274px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565695"] {
                            top: 5390px;
                            left: calc(50% - 160px + 47px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565699"] {
                        z-index: 84;
                        top: 1553px;
                        left: calc(50% - 600px + 80px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565699"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565699"] {
                            top: 1523px;
                            left: calc(50% - 480px + 0px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565699"] {
                            top: 1859px;
                            left: calc(50% - 320px + 332px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565699"] {
                            top: 1859px;
                            left: calc(50% - 240px + 250px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565699"] {
                            top: 4114px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565704"] {
                        z-index: 85;
                        top: 1553px;
                        left: calc(50% - 600px + 788px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565704"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565704"] {
                            top: 1523px;
                            left: calc(50% - 480px + 652px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565704"] {
                            top: 2310px;
                            left: calc(50% - 320px + 332px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565704"] {
                            top: 2310px;
                            left: calc(50% - 240px + 250px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565704"] {
                            top: 5015px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565714"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 86;
                        top: 1950px;
                        left: calc(50% - 600px + 325px);
                        width: 72px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565714"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565714"] {
                            top: 1890px;
                            left: calc(50% - 480px + 221px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1717845565714"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565714"] {
                            top: 2234px;
                            left: calc(50% - 320px + 558px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565714"] {
                            top: 2234px;
                            left: calc(50% - 240px + 421px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565714"] {
                            top: 4489px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565720"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 87;
                        top: 1950px;
                        left: calc(50% - 600px + 1025px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565720"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565720"] {
                            top: 1890px;
                            left: calc(50% - 480px + 868px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1717845565720"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565720"] {
                            top: 2684px;
                            left: calc(50% - 320px + 552px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565720"] {
                            top: 2685px;
                            left: calc(50% - 240px + 422px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565720"] {
                            top: 5390px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565725"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 88;
                        top: 1568px;
                        left: calc(50% - 600px + 95px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565725"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565725"] {
                            top: 1537px;
                            left: calc(50% - 480px + 14px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565725"] {
                            top: 1872px;
                            left: calc(50% - 320px + 346px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565725"] {
                            top: 1873px;
                            left: calc(50% - 240px + 264px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565725"] {
                            top: 4125px;
                            left: calc(50% - 160px + 39px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565729"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 89;
                        top: 1568px;
                        left: calc(50% - 600px + 801px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565729"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565729"] {
                            top: 1537px;
                            left: calc(50% - 480px + 664px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565729"] {
                            top: 2322px;
                            left: calc(50% - 320px + 344px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565729"] {
                            top: 2324px;
                            left: calc(50% - 240px + 263px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565729"] {
                            top: 5028px;
                            left: calc(50% - 160px + 36px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565735"] {
                        z-index: 90;
                        top: 1941px;
                        left: calc(50% - 600px + 95px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565735"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565735"] {
                            top: 1882px;
                            left: calc(50% - 480px + 15px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565735"] {
                            top: 2224px;
                            left: calc(50% - 320px + 347px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565735"] {
                            top: 2225px;
                            left: calc(50% - 240px + 265px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565735"] {
                            top: 4478px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565744"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 91;
                        top: 1950px;
                        left: calc(50% - 600px + 107px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565744"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565744"] {
                            top: 1890px;
                            left: calc(50% - 480px + 26px);
                            width: 126px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1717845565744"] .tn-atom {
                            background-size: cover;
                            -webkit-transform: rotate(0deg);
                            -moz-transform: rotate(0deg);
                            transform: rotate(0deg);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565744"] {
                            top: 2233px;
                            left: calc(50% - 320px + 358px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565744"] {
                            top: 2233px;
                            left: calc(50% - 240px + 276px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565744"] {
                            top: 4486px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565753"] {
                        z-index: 92;
                        top: 1598px;
                        left: calc(50% - 600px + 122px);
                        width: 248px;
                        height: 308px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565753"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565753"] {
                            top: 1568px;
                            left: calc(50% - 480px + 39px);
                            width: 230px;
                            height: 286px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565753"] {
                            top: 1905px;
                            left: calc(50% - 320px + 361px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565753"] {
                            top: 1915px;
                            left: calc(50% - 240px + 269px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565753"] {
                            top: 4164px;
                            left: calc(50% - 160px + 47px);
                            width: 223px;
                            height: 278px;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565757"] {
                        z-index: 93;
                        top: 1941px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565757"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565757"] {
                            top: 1882px;
                            left: calc(50% - 480px + 667px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565757"] {
                            top: 2675px;
                            left: calc(50% - 320px + 347px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565757"] {
                            top: 2676px;
                            left: calc(50% - 240px + 266px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565757"] {
                            top: 5382px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565766"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 94;
                        top: 1950px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565766"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565766"] {
                            top: 1890px;
                            left: calc(50% - 480px + 678px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565766"] {
                            top: 2682px;
                            left: calc(50% - 320px + 359px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565766"] {
                            top: 2684px;
                            left: calc(50% - 240px + 277px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565766"] {
                            top: 5390px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565775"] {
                        z-index: 95;
                        top: 1598px;
                        left: calc(50% - 600px + 830px);
                        width: 247px;
                        height: 316px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1717845565775"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565775"] {
                            top: 1568px;
                            left: calc(50% - 480px + 690px);
                            width: 229px;
                            height: 294px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565775"] {
                            top: 2362px;
                            left: calc(50% - 320px + 369px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565775"] {
                            top: 2365px;
                            left: calc(50% - 240px + 271px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1717845565775"] {
                            top: 5065px;
                            left: calc(50% - 160px + 44px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425550"] {
                        color: #ffffff;
                        text-align: CENTER;
                        z-index: 96;
                        top: 2571px;
                        left: calc(50% - 600px + 135px);
                        width: 100px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425550"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425550"] {
                            top: 2471px;
                            left: calc(50% - 480px + 53px);
                            width: 93px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425550"] {
                            top: 3226px;
                            left: calc(50% - 320px + 382px);
                            width: 85px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425550"] {
                            top: 3228px;
                            left: calc(50% - 240px + 299px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425550"] {
                            top: 6833px;
                            left: calc(50% - 160px + 75px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425559"] {
                        z-index: 97;
                        top: 2554px;
                        left: calc(50% - 600px + 80px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425559"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425559"] {
                            top: 2455px;
                            left: calc(50% - 480px + 0px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425559"] {
                            top: 3212px;
                            left: calc(50% - 320px + 332px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425559"] {
                            top: 3212px;
                            left: calc(50% - 240px + 249px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425559"] {
                            top: 6817px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425567"] {
                        color: #e9adc9;
                        text-align: RIGHT;
                        z-index: 98;
                        top: 2951px;
                        left: calc(50% - 600px + 325px);
                        width: 72px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425567"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425567"] {
                            top: 2821px;
                            left: calc(50% - 480px + 221px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1718913425567"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425567"] {
                            top: 3587px;
                            left: calc(50% - 320px + 558px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425567"] {
                            top: 3587px;
                            left: calc(50% - 240px + 420px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425567"] {
                            top: 7192px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425574"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 99;
                        top: 2569px;
                        left: calc(50% - 600px + 95px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425574"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425574"] {
                            top: 2468px;
                            left: calc(50% - 480px + 14px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425574"] {
                            top: 3224px;
                            left: calc(50% - 320px + 346px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425574"] {
                            top: 3225px;
                            left: calc(50% - 240px + 263px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425574"] {
                            top: 6829px;
                            left: calc(50% - 160px + 40px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425581"] {
                        z-index: 100;
                        top: 2942px;
                        left: calc(50% - 600px + 95px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425581"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425581"] {
                            top: 2814px;
                            left: calc(50% - 480px + 16px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425581"] {
                            top: 3576px;
                            left: calc(50% - 320px + 347px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425581"] {
                            top: 3578px;
                            left: calc(50% - 240px + 264px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425581"] {
                            top: 7183px;
                            left: calc(50% - 160px + 41px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425586"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 101;
                        top: 2951px;
                        left: calc(50% - 600px + 107px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425586"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425586"] {
                            top: 2821px;
                            left: calc(50% - 480px + 27px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425586"] {
                            top: 3586px;
                            left: calc(50% - 320px + 358px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425586"] {
                            top: 3585px;
                            left: calc(50% - 240px + 275px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425586"] {
                            top: 7191px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425593"] {
                        z-index: 102;
                        top: 2599px;
                        left: calc(50% - 600px + 122px);
                        width: 248px;
                        height: 308px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1718913425593"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425593"] {
                            top: 2499px;
                            left: calc(50% - 480px + 39px);
                            width: 230px;
                            height: 286px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425593"] {
                            top: 3258px;
                            left: calc(50% - 320px + 361px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425593"] {
                            top: 3268px;
                            left: calc(50% - 240px + 268px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1718913425593"] {
                            top: 6867px;
                            left: calc(50% - 160px + 48px);
                            width: 223px;
                            height: 278px;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200306"] {
                        color: #ffffff;
                        text-align: CENTER;
                        z-index: 103;
                        top: 2571px;
                        left: calc(50% - 600px + 489px);
                        width: 100px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200306"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200306"] {
                            top: 2471px;
                            left: calc(50% - 480px + 379px);
                            width: 93px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200306"] {
                            top: 3677px;
                            left: calc(50% - 320px + 50px);
                            width: 85px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200306"] {
                            top: 3680px;
                            left: calc(50% - 240px + 16px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200306"] {
                            top: 7282px;
                            left: calc(50% - 160px + 75px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200314"] {
                        z-index: 104;
                        top: 2554px;
                        left: calc(50% - 600px + 434px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200314"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200314"] {
                            top: 2455px;
                            left: calc(50% - 480px + 326px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200314"] {
                            top: 3663px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200314"] {
                            top: 3664px;
                            left: calc(50% - 240px + -34px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200314"] {
                            top: 7267px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200321"] {
                        color: #e9adc9;
                        text-align: RIGHT;
                        z-index: 105;
                        top: 2951px;
                        left: calc(50% - 600px + 679px);
                        width: 72px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200321"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200321"] {
                            top: 2821px;
                            left: calc(50% - 480px + 547px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1719573200321"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200321"] {
                            top: 4038px;
                            left: calc(50% - 320px + 226px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200321"] {
                            top: 4039px;
                            left: calc(50% - 240px + 137px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200321"] {
                            top: 7642px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200328"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 106;
                        top: 2569px;
                        left: calc(50% - 600px + 449px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200328"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200328"] {
                            top: 2468px;
                            left: calc(50% - 480px + 340px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200328"] {
                            top: 3676px;
                            left: calc(50% - 320px + 14px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200328"] {
                            top: 3677px;
                            left: calc(50% - 240px + -20px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200328"] {
                            top: 7279px;
                            left: calc(50% - 160px + 39px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200336"] {
                        z-index: 107;
                        top: 2942px;
                        left: calc(50% - 600px + 449px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200336"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200336"] {
                            top: 2814px;
                            left: calc(50% - 480px + 342px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200336"] {
                            top: 4027px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200336"] {
                            top: 4030px;
                            left: calc(50% - 240px + -19px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200336"] {
                            top: 7632px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200342"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 108;
                        top: 2951px;
                        left: calc(50% - 600px + 461px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200342"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200342"] {
                            top: 2821px;
                            left: calc(50% - 480px + 353px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200342"] {
                            top: 4037px;
                            left: calc(50% - 320px + 26px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200342"] {
                            top: 4037px;
                            left: calc(50% - 240px + -8px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200342"] {
                            top: 7639px;
                            left: calc(50% - 160px + 50px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200349"] {
                        z-index: 109;
                        top: 2599px;
                        left: calc(50% - 600px + 476px);
                        width: 248px;
                        height: 308px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1719573200349"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200349"] {
                            top: 2499px;
                            left: calc(50% - 480px + 365px);
                            width: 230px;
                            height: 286px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200349"] {
                            top: 3710px;
                            left: calc(50% - 320px + 29px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200349"] {
                            top: 3720px;
                            left: calc(50% - 240px + -15px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1719573200349"] {
                            top: 7317px;
                            left: calc(50% - 160px + 47px);
                            width: 223px;
                            height: 278px;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184808"] {
                        z-index: 110;
                        top: 2099px;
                        left: calc(50% - 600px + 476px);
                        width: 248px;
                        height: 308px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184808"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184808"] {
                            top: 2034px;
                            left: calc(50% - 480px + 365px);
                            width: 230px;
                            height: 286px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184808"] {
                            top: 2807px;
                            left: calc(50% - 320px + 361px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184808"] {
                            top: 2817px;
                            left: calc(50% - 240px + 268px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184808"] {
                            top: 5965px;
                            left: calc(50% - 160px + 47px);
                            width: 223px;
                            height: 278px;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184803"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 111;
                        top: 2451px;
                        left: calc(50% - 600px + 461px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184803"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184803"] {
                            top: 2356px;
                            left: calc(50% - 480px + 353px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184803"] {
                            top: 3135px;
                            left: calc(50% - 320px + 358px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184803"] {
                            top: 3134px;
                            left: calc(50% - 240px + 275px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184803"] {
                            top: 6287px;
                            left: calc(50% - 160px + 50px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184799"] {
                        z-index: 112;
                        top: 2442px;
                        left: calc(50% - 600px + 449px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184799"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184799"] {
                            top: 2348px;
                            left: calc(50% - 480px + 342px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184799"] {
                            top: 3125px;
                            left: calc(50% - 320px + 347px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184799"] {
                            top: 3127px;
                            left: calc(50% - 240px + 264px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184799"] {
                            top: 6279px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184794"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 113;
                        top: 2069px;
                        left: calc(50% - 600px + 449px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184794"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184794"] {
                            top: 2003px;
                            left: calc(50% - 480px + 340px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184794"] {
                            top: 2773px;
                            left: calc(50% - 320px + 346px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184794"] {
                            top: 2774px;
                            left: calc(50% - 240px + 263px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184794"] {
                            top: 5926px;
                            left: calc(50% - 160px + 39px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184789"] {
                        color: #e9adc9;
                        text-align: RIGHT;
                        z-index: 114;
                        top: 2451px;
                        left: calc(50% - 600px + 679px);
                        width: 72px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184789"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184789"] {
                            top: 2356px;
                            left: calc(50% - 480px + 547px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1741622184789"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184789"] {
                            top: 3136px;
                            left: calc(50% - 320px + 558px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184789"] {
                            top: 3136px;
                            left: calc(50% - 240px + 420px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184789"] {
                            top: 6290px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184780"] {
                        color: #ffffff;
                        text-align: CENTER;
                        z-index: 115;
                        top: 2071px;
                        left: calc(50% - 600px + 489px);
                        width: 100px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184780"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184780"] {
                            top: 2006px;
                            left: calc(50% - 480px + 379px);
                            width: 93px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184780"] {
                            top: 2775px;
                            left: calc(50% - 320px + 382px);
                            width: 85px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184780"] {
                            top: 2777px;
                            left: calc(50% - 240px + 299px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184780"] {
                            top: 5929px;
                            left: calc(50% - 160px + 75px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184776"] {
                        z-index: 116;
                        top: 2099px;
                        left: calc(50% - 600px + 122px);
                        width: 248px;
                        height: 308px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184776"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184776"] {
                            top: 2034px;
                            left: calc(50% - 480px + 39px);
                            width: 230px;
                            height: 286px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184776"] {
                            top: 2807px;
                            left: calc(50% - 320px + 29px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184776"] {
                            top: 2818px;
                            left: calc(50% - 240px + -16px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184776"] {
                            top: 5515px;
                            left: calc(50% - 160px + 48px);
                            width: 223px;
                            height: 278px;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184771"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 117;
                        top: 2451px;
                        left: calc(50% - 600px + 107px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184771"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184771"] {
                            top: 2356px;
                            left: calc(50% - 480px + 27px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184771"] {
                            top: 3135px;
                            left: calc(50% - 320px + 26px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184771"] {
                            top: 3135px;
                            left: calc(50% - 240px + -9px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184771"] {
                            top: 5838px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184767"] {
                        z-index: 118;
                        top: 2442px;
                        left: calc(50% - 600px + 95px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184767"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184767"] {
                            top: 2348px;
                            left: calc(50% - 480px + 16px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184767"] {
                            top: 3125px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184767"] {
                            top: 3128px;
                            left: calc(50% - 240px + -20px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184767"] {
                            top: 5830px;
                            left: calc(50% - 160px + 41px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184762"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 119;
                        top: 2069px;
                        left: calc(50% - 600px + 95px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184762"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184762"] {
                            top: 2003px;
                            left: calc(50% - 480px + 14px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184762"] {
                            top: 2773px;
                            left: calc(50% - 320px + 14px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184762"] {
                            top: 2775px;
                            left: calc(50% - 240px + -21px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184762"] {
                            top: 5477px;
                            left: calc(50% - 160px + 40px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184722"] {
                        z-index: 120;
                        top: 2054px;
                        left: calc(50% - 600px + 788px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184722"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184722"] {
                            top: 1989px;
                            left: calc(50% - 480px + 652px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184722"] {
                            top: 3212px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184722"] {
                            top: 3213px;
                            left: calc(50% - 240px + -34px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184722"] {
                            top: 6366px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184757"] {
                        color: #e9adc9;
                        text-align: RIGHT;
                        z-index: 121;
                        top: 2451px;
                        left: calc(50% - 600px + 325px);
                        width: 72px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184757"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184757"] {
                            top: 2356px;
                            left: calc(50% - 480px + 221px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1741622184757"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184757"] {
                            top: 3136px;
                            left: calc(50% - 320px + 226px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184757"] {
                            top: 3137px;
                            left: calc(50% - 240px + 136px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184757"] {
                            top: 5840px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184748"] {
                        color: #ffffff;
                        text-align: CENTER;
                        z-index: 122;
                        top: 2071px;
                        left: calc(50% - 600px + 135px);
                        width: 100px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184748"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184748"] {
                            top: 2006px;
                            left: calc(50% - 480px + 53px);
                            width: 93px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184748"] {
                            top: 2775px;
                            left: calc(50% - 320px + 50px);
                            width: 85px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184748"] {
                            top: 2778px;
                            left: calc(50% - 240px + 15px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184748"] {
                            top: 5480px;
                            left: calc(50% - 160px + 75px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184744"] {
                        z-index: 123;
                        top: 2099px;
                        left: calc(50% - 600px + 830px);
                        width: 247px;
                        height: 310px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184744"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184744"] {
                            top: 2034px;
                            left: calc(50% - 480px + 692px);
                            width: 229px;
                            height: 288px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184744"] {
                            top: 3259px;
                            left: calc(50% - 320px + 40px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184744"] {
                            top: 3260px;
                            left: calc(50% - 240px + -14px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184744"] {
                            top: 6416px;
                            left: calc(50% - 160px + 45px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184740"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 124;
                        top: 2451px;
                        left: calc(50% - 600px + 813px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184740"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184740"] {
                            top: 2356px;
                            left: calc(50% - 480px + 677px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184740"] {
                            top: 3586px;
                            left: calc(50% - 320px + 27px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184740"] {
                            top: 3588px;
                            left: calc(50% - 240px + -7px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184740"] {
                            top: 6740px;
                            left: calc(50% - 160px + 52px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184736"] {
                        z-index: 125;
                        top: 2442px;
                        left: calc(50% - 600px + 801px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184736"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184736"] {
                            top: 2348px;
                            left: calc(50% - 480px + 665px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184736"] {
                            top: 3577px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184736"] {
                            top: 3579px;
                            left: calc(50% - 240px + -19px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184736"] {
                            top: 6732px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184731"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 126;
                        top: 2069px;
                        left: calc(50% - 600px + 801px);
                        width: 28px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184731"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184731"] {
                            top: 2003px;
                            left: calc(50% - 480px + 663px);
                            width: 26px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184731"] {
                            top: 3226px;
                            left: calc(50% - 320px + 12px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184731"] {
                            top: 3227px;
                            left: calc(50% - 240px + -22px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184731"] {
                            top: 6378px;
                            left: calc(50% - 160px + 37px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184726"] {
                        color: #e9adc9;
                        text-align: RIGHT;
                        z-index: 127;
                        top: 2451px;
                        left: calc(50% - 600px + 1025px);
                        width: 77px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1741622184726"] .tn-atom {
                        vertical-align: middle;
                        color: #e9adc9;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184726"] {
                            top: 2356px;
                            left: calc(50% - 480px + 868px);
                            width: 72px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1741622184726"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184726"] {
                            top: 3587px;
                            left: calc(50% - 320px + 220px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184726"] {
                            top: 3589px;
                            left: calc(50% - 240px + 146px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1741622184726"] {
                            top: 6741px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880484"] {
                        color: #ffffff;
                        text-align: CENTER;
                        z-index: 128;
                        top: 569px;
                        left: calc(50% - 600px + 489px);
                        width: 100px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880484"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 500;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880484"] {
                            top: 608px;
                            left: calc(50% - 480px + 379px);
                            width: 93px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880484"] {
                            top: 970px;
                            left: calc(50% - 320px + 50px);
                            width: 85px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880484"] {
                            top: 973px;
                            left: calc(50% - 240px + 16px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880484"] {
                            top: 1873px;
                            left: calc(50% - 160px + 75px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880494"] {
                        z-index: 129;
                        top: 551px;
                        left: calc(50% - 600px + 434px);
                        width: 332px;
                        height: 448px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880494"] .tn-atom {
                        border-width: 1px;
                        border-radius: 10px 10px 10px 10px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880494"] {
                            top: 591px;
                            left: calc(50% - 480px + 326px);
                            width: 308px;
                            height: 416px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880494"] {
                            top: 957px;
                            left: calc(50% - 320px + 0px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880494"] {
                            top: 957px;
                            left: calc(50% - 240px + -34px);
                            width: 269px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880494"] {
                            top: 1858px;
                            left: calc(50% - 160px + 25px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880501"] {
                        color: #ff0000;
                        text-align: RIGHT;
                        z-index: 130;
                        top: 948px;
                        left: calc(50% - 600px + 679px);
                        width: 72px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880501"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880501"] {
                            top: 966px;
                            left: calc(50% - 480px + 547px);
                            width: 67px;
                            height: auto;
                        }
                        #rec857237483 .tn-elem[data-elem-id="1722889880501"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880501"] {
                            top: 1332px;
                            left: calc(50% - 320px + 226px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880501"] {
                            top: 1332px;
                            left: calc(50% - 240px + 137px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880501"] {
                            top: 2233px;
                            left: calc(50% - 160px + 207px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880510"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 131;
                        top: 567px;
                        left: calc(50% - 600px + 449px);
                        width: 31px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880510"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880510"] {
                            top: 605px;
                            left: calc(50% - 480px + 340px);
                            width: 31px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880510"] {
                            top: 968px;
                            left: calc(50% - 320px + 14px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880510"] {
                            top: 970px;
                            left: calc(50% - 240px + -20px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880510"] {
                            top: 1869px;
                            left: calc(50% - 160px + 38px);
                            width: 31px;
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880517"] {
                        z-index: 132;
                        top: 939px;
                        left: calc(50% - 600px + 449px);
                        width: 160px;
                        height: 40px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880517"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880517"] {
                            top: 955px;
                            left: calc(50% - 480px + 341px);
                            width: 149px;
                            height: 37px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880517"] {
                            top: 1320px;
                            left: calc(50% - 320px + 15px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880517"] {
                            top: 1323px;
                            left: calc(50% - 240px + -19px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880517"] {
                            top: 2223px;
                            left: calc(50% - 160px + 40px);
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880523"] {
                        color: #ff0000;
                        text-align: CENTER;
                        z-index: 133;
                        top: 948px;
                        left: calc(50% - 600px + 461px);
                        width: 136px;
                        height: auto;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880523"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.3;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880523"] {
                            top: 963px;
                            left: calc(50% - 480px + 352px);
                            width: 126px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880523"] {
                            top: 1331px;
                            left: calc(50% - 320px + 26px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880523"] {
                            top: 1330px;
                            left: calc(50% - 240px + -8px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880523"] {
                            top: 2231px;
                            left: calc(50% - 160px + 51px);
                            height: auto;
                        }
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880531"] {
                        z-index: 134;
                        top: 596px;
                        left: calc(50% - 600px + 476px);
                        width: 248px;
                        height: 308px;
                    }
                    #rec857237483 .tn-elem[data-elem-id="1722889880531"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880531"] {
                            top: 636px;
                            left: calc(50% - 480px + 365px);
                            width: 230px;
                            height: 286px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880531"] {
                            top: 1002px;
                            left: calc(50% - 320px + 39px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880531"] {
                            top: 1002px;
                            left: calc(50% - 240px + -15px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237483 .tn-elem[data-elem-id="1722889880531"] {
                            top: 1908px;
                            left: calc(50% - 160px + 47px);
                            width: 223px;
                            height: 278px;
                        }
                    }
                            .t-rec#rec857237483 {
                                overflow: visible;
                            }
                            #rec857237483 .t396__artboard:not(.t396__artboard-flex),
                            #rec857237483 .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
                            #rec857237483 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
                                width: 100vw !important;
                                max-width: 100%;
                            }
                            #rec857237483 .t396__carrier,
                            #rec857237483 .t396__filter,
                            #rec857237483 .t396__artboard {
                                height: 4962px !important;
                            }

                    #rec1111046961 .t1003__item-txt {
                        font-size: 16px;
                        color: #fffefc;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec1111046961 .t1003__item-txt {
                            font-size: 13px;
                        }
                    }
                    @keyframes t1003__anim-scrolling_1111046961 {
                        0% {
                            transform: translateX(0px);
                            -webkit-transform: translateX(0px);
                        }
                        100% {
                            transform: translateX(-1155px);
                            -webkit-transform: translateX(-1155px);
                        }
                    }
                    #rec866097146 .t390__title {
                        font-size: 16px;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                    }
                    #rec866097146 .t390__descr {
                        font-size: 15px;
                        line-height: 1.4;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866097146 .t390__descr {
                            font-size: 12px;
                            line-height: 1.3;
                        }
                    }
               
                    #rec864541108 .t396__artboard {
                        height: 848px;
                        background-color: #fffefc;
                        overflow: auto;
                    }
                    #rec864541108 .t396__filter {
                        height: 848px;
                    }
                    #rec864541108 .t396__carrier {
                        height: 848px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .t396__artboard,
                        #rec864541108 .t396__filter,
                        #rec864541108 .t396__carrier {
                            height: 817px;
                        }
                        #rec864541108 .t396__filter {
                        }
                        #rec864541108 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .t396__artboard,
                        #rec864541108 .t396__filter,
                        #rec864541108 .t396__carrier {
                            height: 800px;
                        }
                        #rec864541108 .t396__filter {
                        }
                        #rec864541108 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .t396__artboard,
                        #rec864541108 .t396__filter,
                        #rec864541108 .t396__carrier {
                            height: 739px;
                        }
                        #rec864541108 .t396__filter {
                        }
                        #rec864541108 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .t396__artboard,
                        #rec864541108 .t396__filter,
                        #rec864541108 .t396__carrier {
                            height: 699px;
                        }
                        #rec864541108 .t396__filter {
                        }
                        #rec864541108 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074961"] {
                        z-index: 3;
                        top: 105px;
                        left: calc(50% - 600px + 80px);
                        width: 426px;
                        height: 612px;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074961"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-color: #ff0000;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074961"] {
                            left: calc(50% - 480px + 0px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074961"] {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074961"] {
                            width: 418px;
                            height: 564px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074961"] {
                            top: 97px;
                            left: calc(50% - 160px + -20px);
                            width: 360px;
                            height: 530px;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739469717646"] {
    color: #ff0000;
    z-index: 4;
    top: 0px;
    left: calc(50% - 600px + 80px);
    width: 560px;
    height: auto;
    top: 18px!important;
    left: 233px!important;
    width: 560px;
    height: auto;
    zoom: 1.587;
}
                    #rec864541108 .tn-elem[data-elem-id="1739469717646"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 24px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739469717646"] {
                            left: calc(50% - 480px + 0px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739469717646"] .tn-atom {
                            font-size: 22px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739469717646"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739469717646"] {
                            width: 191px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275075005"] {
                        color: #ffffff;
                        z-index: 5;
                        top: 563px;
                        left: calc(50% - 600px + 100px);
                        width: 93px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275075005"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075005"] {
                            left: calc(50% - 480px + 20px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075005"] {
                            top: 515px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275075005"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075005"] {
                            top: 474px;
                            left: calc(50% - 160px + 0px);
                            width: 82px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275075002"] {
                        color: #ffffff;
                        text-align: right;
                        z-index: 6;
                        top: 563px;
                        left: calc(50% - 600px + 345px);
                        width: 131px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275075002"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075002"] {
                            left: calc(50% - 480px + 265px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075002"] {
                            top: 515px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275075002"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075002"] {
                            top: 474px;
                            left: calc(50% - 160px + 212px);
                            width: 108px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074998"] {
                        color: #ffffff;
                        text-align: right;
                        z-index: 7;
                        top: 595px;
                        left: calc(50% - 600px + 345px);
                        width: 131px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074998"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074998"] {
                            left: calc(50% - 480px + 265px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074998"] {
                            top: 547px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074998"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074998"] {
                            top: 503px;
                            left: calc(50% - 160px + 212px);
                            width: 108px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074994"] {
                        color: #ffffff;
                        z-index: 8;
                        top: 595px;
                        left: calc(50% - 600px + 100px);
                        width: 167px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074994"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074994"] {
                            left: calc(50% - 480px + 20px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074994"] {
                            top: 547px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074994"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074994"] {
                            top: 503px;
                            left: calc(50% - 160px + 0px);
                            width: 166px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074990"] {
                        color: #ffffff;
                        z-index: 9;
                        top: 222px;
                        left: calc(50% - 600px + 100px);
                        width: 396px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074990"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074990"] {
                            left: calc(50% - 480px + 20px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074990"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074990"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074990"] {
                            top: 210px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074990"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074990"] {
                            top: 196px;
                            left: calc(50% - 160px + 0px);
                            width: 340px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074990"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074986"] {
                        color: #ffffff;
                        z-index: 10;
                        top: 264px;
                        left: calc(50% - 600px + 100px);
                        width: 391px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074986"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074986"] {
                            left: calc(50% - 480px + 20px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074986"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074986"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074986"] {
                            top: 246px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074986"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074986"] {
                            top: 229px;
                            left: calc(50% - 160px + 0px);
                            width: 340px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074986"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074982"] {
                        color: #ffffff;
                        z-index: 11;
                        top: 306px;
                        left: calc(50% - 600px + 100px);
                        width: 380px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074982"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074982"] {
                            left: calc(50% - 480px + 20px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074982"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074982"] {
                            width: 383px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074982"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074982"] {
                            top: 282px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074982"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074982"] {
                            top: 262px;
                            left: calc(50% - 160px + 0px);
                            width: 332px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074982"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074977"] {
                        color: #ffffff;
                        z-index: 12;
                        top: 492px;
                        left: calc(50% - 600px + 100px);
                        width: 380px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074977"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074977"] {
                            left: calc(50% - 480px + 20px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074977"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074977"] {
                            width: 304px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074977"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074977"] {
                            top: 450px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074977"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074977"] {
                            top: 415px;
                            left: calc(50% - 160px + 0px);
                            width: 267px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074977"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074973"] {
                        color: #ffffff;
                        z-index: 13;
                        top: 430px;
                        left: calc(50% - 600px + 100px);
                        width: 368px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074973"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074973"] {
                            left: calc(50% - 480px + 20px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074973"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074973"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074973"] {
                            top: 394px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074973"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074973"] {
                            top: 364px;
                            left: calc(50% - 160px + 0px);
                            width: 252px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074973"] .tn-atom {
                            font-size: 13px;
                            letter-spacing: 0px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074969"] {
                        color: #ffffff;
                        z-index: 14;
                        top: 368px;
                        left: calc(50% - 600px + 100px);
                        width: 398px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074969"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074969"] {
                            left: calc(50% - 480px + 20px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074969"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074969"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074969"] {
                            top: 338px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074969"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074969"] {
                            top: 313px;
                            left: calc(50% - 160px + 0px);
                            width: 284px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074969"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074965"] {
                        color: #ffffff;
                        text-align: center;
                        z-index: 15;
                        top: 130px;
                        left: calc(50% - 600px + 162px);
                        width: 262px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275074965"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 22px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074965"] {
                            left: calc(50% - 480px + 82px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074965"] .tn-atom {
                            font-size: 22px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074965"] {
                            width: 262px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074965"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074965"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275074965"] {
                            top: 127px;
                            left: calc(50% - 160px + 45px);
                            width: 230px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275074965"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088944"] {
                        z-index: 16;
                        top: 105px;
                        left: calc(50% - 600px + 1032px);
                        width: 426px;
                        height: 612px;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088944"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088944"] {
                            left: calc(50% - 480px + 952px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088944"] {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088944"] {
                            left: calc(50% - 240px + 926px);
                            height: 564px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088944"] {
                            top: 97px;
                            left: calc(50% - 160px + 800px);
                            width: 360px;
                            height: 530px;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088993"] {
                        color: #ffffff;
                        text-align: center;
                        z-index: 17;
                        top: 642px;
                        left: calc(50% - 600px + 1052px);
                        width: 386px;
                        height: 50px;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088993"] .tn-atom {
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 5px 5px 5px 5px;
                        background-color: #ff0000;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088993"] {
                            left: calc(50% - 480px + 972px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088993"] {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088993"] {
                            top: 594px;
                            left: calc(50% - 240px + 946px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088993"] {
                            top: 547px;
                            left: calc(50% - 160px + 820px);
                            width: 320px;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088989"] {
                        color: #ff0000;
                        z-index: 18;
                        top: 563px;
                        left: calc(50% - 600px + 1052px);
                        width: 93px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088989"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088989"] {
                            left: calc(50% - 480px + 972px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088989"] {
                            top: 515px;
                            left: calc(50% - 240px + 946px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088989"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088989"] {
                            top: 474px;
                            left: calc(50% - 160px + 820px);
                            width: 82px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088985"] {
                        color: #ff0000;
                        text-align: right;
                        z-index: 19;
                        top: 563px;
                        left: calc(50% - 600px + 1297px);
                        width: 131px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088985"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088985"] {
                            left: calc(50% - 480px + 1217px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088985"] {
                            top: 515px;
                            left: calc(50% - 240px + 1191px);
                            width: 131px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088985"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088985"] {
                            top: 474px;
                            left: calc(50% - 160px + 1032px);
                            width: 108px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088981"] {
                        color: #ff0000;
                        text-align: right;
                        z-index: 20;
                        top: 595px;
                        left: calc(50% - 600px + 1297px);
                        width: 131px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088981"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088981"] {
                            left: calc(50% - 480px + 1217px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088981"] {
                            top: 547px;
                            left: calc(50% - 240px + 1191px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088981"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088981"] {
                            top: 502px;
                            left: calc(50% - 160px + 1032px);
                            width: 108px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088977"] {
                        color: #ff0000;
                        z-index: 21;
                        top: 595px;
                        left: calc(50% - 600px + 1052px);
                        width: 167px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088977"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088977"] {
                            left: calc(50% - 480px + 972px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088977"] {
                            top: 547px;
                            left: calc(50% - 240px + 946px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088977"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088977"] {
                            top: 502px;
                            left: calc(50% - 160px + 820px);
                            width: 148px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088973"] {
                        color: #ff0000;
                        z-index: 22;
                        top: 222px;
                        left: calc(50% - 600px + 1052px);
                        width: 396px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088973"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088973"] {
                            left: calc(50% - 480px + 972px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088973"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088973"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088973"] {
                            top: 210px;
                            left: calc(50% - 240px + 946px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088973"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088973"] {
                            top: 196px;
                            left: calc(50% - 160px + 820px);
                            width: 323px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088973"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088969"] {
                        color: #ff0000;
                        z-index: 23;
                        top: 263px;
                        left: calc(50% - 600px + 1052px);
                        width: 391px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088969"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088969"] {
                            left: calc(50% - 480px + 972px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088969"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088969"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088969"] {
                            top: 246px;
                            left: calc(50% - 240px + 946px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088969"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088969"] {
                            top: 229px;
                            left: calc(50% - 160px + 820px);
                            width: 326px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088969"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088952"] {
                        color: #ff0000;
                        z-index: 24;
                        top: 489px;
                        left: calc(50% - 600px + 1052px);
                        width: 371px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088952"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088952"] {
                            left: calc(50% - 480px + 972px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088952"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088952"] {
                            top: 488px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088952"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088952"] {
                            top: 450px;
                            left: calc(50% - 240px + 946px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088952"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088952"] {
                            top: 415px;
                            left: calc(50% - 160px + 820px);
                            width: 311px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088952"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088948"] {
                        color: #ff0000;
                        text-align: center;
                        z-index: 25;
                        top: 130px;
                        left: calc(50% - 600px + 1114px);
                        width: 262px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275088948"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 22px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088948"] {
                            left: calc(50% - 480px + 1034px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088948"] .tn-atom {
                            font-size: 22px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088948"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088948"] {
                            left: calc(50% - 240px + 1008px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088948"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275088948"] {
                            top: 127px;
                            left: calc(50% - 160px + 865px);
                            width: 230px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275088948"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329399"] {
                        z-index: 26;
                        top: 105px;
                        left: calc(50% - 600px + 556px);
                        width: 426px;
                        height: 612px;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329399"] .tn-atom {
                        border-width: 1px;
                        border-radius: 5px 5px 5px 5px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: #ff0000;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329399"] {
                            left: calc(50% - 480px + 476px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329399"] {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329399"] {
                            top: 105px;
                            left: calc(50% - 240px + 463px);
                            width: 418px;
                            height: 564px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329399"] {
                            top: 97px;
                            left: calc(50% - 160px + 390px);
                            width: 360px;
                            height: 530px;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329451"] {
                        color: #ff0000;
                        text-align: center;
                        z-index: 27;
                        top: 130px;
                        left: calc(50% - 600px + 640px);
                        width: 262px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329451"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 22px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329451"] {
                            left: calc(50% - 480px + 557px);
                            width: 264px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329451"] .tn-atom {
                            font-size: 26px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329451"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329451"] {
                            left: calc(50% - 240px + 544px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329451"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329451"] {
                            top: 127px;
                            left: calc(50% - 160px + 455px);
                            width: 230px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329451"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329446"] {
                        color: #ff0000;
                        z-index: 28;
                        top: 386px;
                        left: calc(50% - 600px + 576px);
                        width: 398px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329446"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329446"] {
                            left: calc(50% - 480px + 496px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329446"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329446"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329446"] {
                            top: 358px;
                            left: calc(50% - 240px + 483px);
                            width: 398px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329446"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329446"] {
                            top: 280px;
                            left: calc(50% - 160px + 410px);
                            width: 340px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329446"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329441"] {
                        color: #ff0000;
                        z-index: 29;
                        top: 426px;
                        left: calc(50% - 600px + 576px);
                        width: 368px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329441"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329441"] {
                            left: calc(50% - 480px + 496px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329441"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329441"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329441"] {
                            top: 394px;
                            left: calc(50% - 240px + 483px);
                            width: 368px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329441"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329441"] {
                            top: 364px;
                            left: calc(50% - 160px + 410px);
                            width: 252px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329441"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329437"] {
                        color: #ff0000;
                        z-index: 30;
                        top: 488px;
                        left: calc(50% - 600px + 576px);
                        width: 380px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329437"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329437"] {
                            left: calc(50% - 480px + 496px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329437"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329437"] {
                            width: 361px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329437"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329437"] {
                            top: 450px;
                            left: calc(50% - 240px + 483px);
                            width: 361px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329437"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329437"] {
                            top: 415px;
                            left: calc(50% - 160px + 410px);
                            width: 319px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329437"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329433"] {
                        color: #ff0000;
                        z-index: 31;
                        top: 324px;
                        left: calc(50% - 600px + 576px);
                        width: 380px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329433"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329433"] {
                            left: calc(50% - 480px + 496px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329433"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329433"] {
                            width: 382px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329433"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329433"] {
                            top: 302px;
                            left: calc(50% - 240px + 483px);
                            width: 382px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329433"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329433"] {
                            top: 313px;
                            left: calc(50% - 160px + 410px);
                            width: 327px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329433"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329429"] {
                        color: #ff0000;
                        z-index: 32;
                        top: 284px;
                        left: calc(50% - 600px + 576px);
                        width: 391px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329429"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329429"] {
                            left: calc(50% - 480px + 496px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329429"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329429"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329429"] {
                            top: 266px;
                            left: calc(50% - 240px + 483px);
                            width: 391px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329429"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329429"] {
                            top: 247px;
                            left: calc(50% - 160px + 410px);
                            width: 333px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329429"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329423"] {
                        color: #ff0000;
                        z-index: 33;
                        top: 222px;
                        left: calc(50% - 600px + 576px);
                        width: 334px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329423"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 15px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329423"] {
                            left: calc(50% - 480px + 496px);
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329423"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329423"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329423"] {
                            top: 210px;
                            left: calc(50% - 240px + 483px);
                            width: 334px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329423"] .tn-atom {
                            font-size: 14px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329423"] {
                            top: 196px;
                            left: calc(50% - 160px + 410px);
                            width: 274px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329423"] .tn-atom {
                            font-size: 13px;
                            background-size: cover;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329419"] {
                        color: #ff0000;
                        z-index: 34;
                        top: 595px;
                        left: calc(50% - 600px + 576px);
                        width: 167px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329419"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329419"] {
                            left: calc(50% - 480px + 496px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329419"] {
                            top: 547px;
                            left: calc(50% - 240px + 483px);
                            width: 167px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329419"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329419"] {
                            top: 503px;
                            left: calc(50% - 160px + 410px);
                            width: 160px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329415"] {
                        color: #ff0000;
                        text-align: right;
                        z-index: 35;
                        top: 595px;
                        left: calc(50% - 600px + 821px);
                        width: 131px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329415"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329415"] {
                            left: calc(50% - 480px + 741px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329415"] {
                            top: 547px;
                            left: calc(50% - 240px + 728px);
                            width: 131px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329415"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329415"] {
                            top: 503px;
                            left: calc(50% - 160px + 622px);
                            width: 108px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329411"] {
                        color: #ff0000;
                        text-align: right;
                        z-index: 36;
                        top: 563px;
                        left: calc(50% - 600px + 821px);
                        width: 131px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329411"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329411"] {
                            left: calc(50% - 480px + 741px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329411"] {
                            top: 515px;
                            left: calc(50% - 240px + 728px);
                            width: 131px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329411"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329411"] {
                            top: 474px;
                            left: calc(50% - 160px + 622px);
                            width: 108px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329406"] {
                        color: #ff0000;
                        z-index: 37;
                        top: 563px;
                        left: calc(50% - 600px + 576px);
                        width: 93px;
                        height: auto;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329406"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329406"] {
                            left: calc(50% - 480px + 496px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329406"] {
                            top: 515px;
                            left: calc(50% - 240px + 483px);
                            width: 93px;
                            height: auto;
                        }
                        #rec864541108 .tn-elem[data-elem-id="1739275329406"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329406"] {
                            top: 474px;
                            left: calc(50% - 160px + 410px);
                            width: 82px;
                            height: auto;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329404"] {
                        color: #ffffff;
                        text-align: center;
                        z-index: 38;
                        top: 642px;
                        left: calc(50% - 600px + 576px);
                        width: 386px;
                        height: 50px;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275329404"] .tn-atom {
                        color: #ffffff;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 5px 5px 5px 5px;
                        background-color: #ff0000;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329404"] {
                            left: calc(50% - 480px + 496px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329404"] {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329404"] {
                            top: 594px;
                            left: calc(50% - 240px + 484px);
                            width: 376px;
                            height: 50px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275329404"] {
                            top: 547px;
                            left: calc(50% - 160px + 410px);
                            width: 320px;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275075009"] {
                        color: #ff0000;
                        text-align: center;
                        z-index: 39;
                        top: 642px;
                        left: calc(50% - 600px + 100px);
                        width: 386px;
                        height: 50px;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739275075009"] .tn-atom {
                        color: #ff0000;
                        font-size: 14px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        border-radius: 5px 5px 5px 5px;
                        background-color: #fffefc;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075009"] {
                            left: calc(50% - 480px + 20px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075009"] {
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075009"] {
                            top: 594px;
                            left: calc(50% - 240px + 21px);
                            width: 376px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275075009"] {
                            top: 547px;
                            left: calc(50% - 160px + 0px);
                            width: 320px;
                        }
                    }
                   #rec864541108 .tn-elem[data-elem-id="1739275605640"] {
    z-index: 40;
    top: 44px;
    left: calc(50% - 600px + 80px);
    width: 123px;
    height: 16px;
    width: 123px;
    left: 236px!important;
    top: 53px!important;
    height: 16px;
    zoom: 1.587;
}
                    #rec864541108 .tn-elem[data-elem-id="1739275605640"] .tn-atom {
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
    font-family: 'Inter/Kyiv';
    font-size: 13px;
    font-weight: 200;
}
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275605640"] {
                            top: 39px;
                            left: calc(50% - 480px + 0px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275605640"] {
                            top: 38px;
                            width: 108px;
                            height: 14px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739275605640"] {
                            top: 38px;
                        }
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739281579760"] {
                        z-index: 41;
                        top: 617px;
                        left: calc(50% - 600px + 1458px);
                        width: 100px;
                        height: 100px;
                    }
                    #rec864541108 .tn-elem[data-elem-id="1739281579760"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec864541108 .tn-elem[data-elem-id="1739281579760"] {
                            left: calc(50% - 480px + 1378px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec864541108 .tn-elem[data-elem-id="1739281579760"] {
                            top: 569px;
                            left: calc(50% - 240px + 1352px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec864541108 .tn-elem[data-elem-id="1739281579760"] {
                            top: 527px;
                            left: calc(50% - 160px + 1160px);
                            width: 63px;
                        }
                    }
                            @media screen and (max-width: 560px) {
                                #rec866092481 .t-popup__close-icon g {
                                    fill: #ffffff !important;
                                }
                            }
                            
                    #rec857271773 .t396__artboard {
                        height: 155px;
                        background-color: #fffefc;
                    }
                    #rec857271773 .t396__filter {
                        height: 155px;
                    }
                    #rec857271773 .t396__carrier {
                        height: 155px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857271773 .t396__artboard,
                        #rec857271773 .t396__filter,
                        #rec857271773 .t396__carrier {
                            height: 119px;
                        }
                        #rec857271773 .t396__filter {
                        }
                        #rec857271773 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857271773 .t396__artboard,
                        #rec857271773 .t396__filter,
                        #rec857271773 .t396__carrier {
                            height: 150px;
                        }
                        #rec857271773 .t396__filter {
                        }
                        #rec857271773 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857271773 .t396__artboard,
                        #rec857271773 .t396__filter,
                        #rec857271773 .t396__carrier {
                            height: 140px;
                        }
                        #rec857271773 .t396__filter {
                        }
                        #rec857271773 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857271773 .t396__artboard,
                        #rec857271773 .t396__filter,
                        #rec857271773 .t396__carrier {
                            height: 180px;
                        }
                        #rec857271773 .t396__filter {
                        }
                        #rec857271773 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec857271773 .tn-elem[data-elem-id="1734010357614"] {
                        color: #ff0000;
                        z-index: 3;
                        top: 0px;
                        left: calc(50% - 600px + 80px);
                        width: 811px;
                        height: auto;
                    }
                    #rec857271773 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 24px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857240080 .t396__artboard {
    height: 1722px !important;
}
                        #rec857271773 .tn-elem[data-elem-id="1734010357614"] {
                            left: calc(50% - 480px + 0px);
                            width: 811px;
                            height: auto;
                        }
                        #rec857271773 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                            font-size: 22px;
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857271773 .tn-elem[data-elem-id="1734010357614"] {
                            left: calc(50% - 320px + 0px);
                            width: 633px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857271773 .tn-elem[data-elem-id="1734010357614"] {
                            width: 513px;
                            height: auto;
                        }
                        #rec857271773 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857271773 .tn-elem[data-elem-id="1734010357614"] {
                            width: 320px;
                            height: auto;
                        }
                        #rec857271773 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                            font-size: 18px;
                            line-height: 1.2;
                            background-size: cover;
                        }
                    }
                      
                                    #rec866092481 input::-webkit-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866092481 input::-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866092481 input:-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866092481 input:-ms-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866092481 textarea::-webkit-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866092481 textarea::-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866092481 textarea:-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866092481 textarea:-ms-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    
                    @media (hover: hover), (min-width: 0\0) {
                        #rec866092481 .t-submit:hover {
                            color: #ff0000 !important;
                            border-color: #ff0000 !important;
                            background-color: #fffefc !important;
                        }
                        #rec866092481 .t-submit:focus-visible {
                            color: #ff0000 !important;
                            border-color: #ff0000 !important;
                            background-color: #fffefc !important;
                        }
                    }
                    #rec866092481 .t-submit {
                        transition-property: background-color, color, border-color, box-shadow;
                        transition-duration: 0.2s;
                        transition-timing-function: ease-in-out;
                    }
                    #rec866092481 .t702__title {
                        font-size: 20px;
                        color: #ff0000;
                        font-weight: 400;
                        padding-top: 15px;
                        padding-bottom: 15px;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    #rec866092481 .t702__descr {
                        font-size: 16px;
                        color: #ff0000;
                        font-weight: 400;
                        padding-bottom: 20px;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866092481 .t702__descr {
                            font-size: 13px;
                        }
                    }
                     
                            @media screen and (max-width: 560px) {
                                #rec866095062 .t-popup__close-icon g {
                                    fill: #ffffff !important;
                                }
                            }
                                    #rec866095062 input::-webkit-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095062 input::-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095062 input:-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095062 input:-ms-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095062 textarea::-webkit-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095062 textarea::-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095062 textarea:-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095062 textarea:-ms-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                    @media (hover: hover), (min-width: 0\0) {
                        #rec866095062 .t-submit:hover {
                            color: #ff0000 !important;
                            border-color: #ff0000 !important;
                            background-color: #fffefc !important;
                        }
                        #rec866095062 .t-submit:focus-visible {
                            color: #ff0000 !important;
                            border-color: #ff0000 !important;
                            background-color: #fffefc !important;
                        }
                    }
                    #rec866095062 .t-submit {
                        transition-property: background-color, color, border-color, box-shadow;
                        transition-duration: 0.2s;
                        transition-timing-function: ease-in-out;
                    }
                    #rec866095062 .t702__title {
                        font-size: 20px;
                        color: #ff0000;
                        font-weight: 400;
                        padding-top: 15px;
                        padding-bottom: 15px;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    #rec866095062 .t702__descr {
                        font-size: 16px;
                        color: #ff0000;
                        font-weight: 400;
                        padding-bottom: 20px;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866095062 .t702__descr {
                            font-size: 13px;
                        }
                    }
                     
                            @media screen and (max-width: 560px) {
                                #rec866095206 .t-popup__close-icon g {
                                    fill: #ffffff !important;
                                }
                            }
                                                    #rec866095206 .t-contact-method__type:has(> .t-radio:checked) {
                                                        background-color: rgba(254, 221, 233, 0.1);
                                                        border-color: rgba(254, 221, 233, 0.4);
                                                    }
                                            
                                                        #rec866095206 .t-radio__indicator:after {
                                                            background: #fedde9;
                                                        }
                                                        #rec866095206 .t-select__wrapper:after {
                                                            border-top-color: #fedde9;
                                                        }
                                            .t-form__screen-hiderecord {
                                                opacity: 0 !important;
                                            }
                                             
                                    #rec866095206 input::-webkit-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095206 input::-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095206 input:-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095206 input:-ms-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095206 textarea::-webkit-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095206 textarea::-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095206 textarea:-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866095206 textarea:-ms-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                     
                    @media (hover: hover), (min-width: 0\0) {
                        #rec866095206 .t-submit:hover {
                            color: #ff0000 !important;
                            border-color: #ff0000 !important;
                            background-color: #fffefc !important;
                        }
                        #rec866095206 .t-submit:focus-visible {
                            color: #ff0000 !important;
                            border-color: #ff0000 !important;
                            background-color: #fffefc !important;
                        }
                    }
                    #rec866095206 .t-submit {
                        transition-property: background-color, color, border-color, box-shadow;
                        transition-duration: 0.2s;
                        transition-timing-function: ease-in-out;
                    }
                    #rec866095206 .t702__title {
                        font-size: 20px;
                        color: #ff0000;
                        font-weight: 400;
                        padding-top: 15px;
                        padding-bottom: 15px;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    #rec866095206 .t702__descr {
                        font-size: 16px;
                        color: #ff0000;
                        font-weight: 400;
                        padding-bottom: 20px;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866095206 .t702__descr {
                            font-size: 13px;
                        }
                    }
.title_main {
    font-size: 18px!important;
    font-family: "Inter/Kyiv", Arial, sans-serif!important;
    line-height: 1.4;
    font-weight: 400!important;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    position: relative;
    top: 55px;
}
    .t-rec#rec857240080 {
                                overflow: visible;
                            }
                            #rec857240080 .t396__artboard:not(.t396__artboard-flex),
                            #rec857240080 .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
                            #rec857240080 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
                                width: 100vw !important;
                                max-width: 100%;
                            }
                            
                            #rec857240080 .t396__artboard {
                             height: 1255px !important
                            }

                            @media screen and (max-width: 1199px) {
                        #rec857240080 .t396__artboard {
    height: 1722px !important;
}}
                               .t-rec#rec857241494 {
                                overflow: visible;
                            }
                            #rec857241494 .t396__artboard:not(.t396__artboard-flex),
                            #rec857241494 .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
                            #rec857241494 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
                                width: 100vw !important;
                                max-width: 100%;
                            }
                            #rec857241494 .t396__carrier,
                            #rec857241494 .t396__filter,
                            #rec857241494 .t396__artboard {
                                height: 1372px !important;
                            }
                              .t-rec#rec857271773 {
                                overflow: visible;
                            }
                            #rec857271773 .t396__artboard:not(.t396__artboard-flex),
                            #rec857271773 .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
                            #rec857271773 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
                                width: 96vw !important;
                                max-width: 100%;
                            }
                            #rec857271773 .t396__carrier,
                            #rec857271773 .t396__filter,
                            #rec857271773 .t396__artboard {
                                height: 245px !important;
                            }
  @media (max-width: 1200px) {
    #rec864541108 .tn-elem[data-elem-id="1739469717646"] {
    color: #ff0000;
    z-index: 4;
    top: 0px;
    left: calc(50% - 600px + 80px);
    width: 560px;
    height: auto;
    top: 18px!important;
    left: 13px!important;
    width: 560px;
    height: auto;
    zoom: 1.587;
}
#rec864541108 .tn-elem[data-elem-id="1739275605640"] {
    z-index: 40;
    top: 44px;
    left: calc(50% - 600px + 80px);
    width: 123px;
    height: 16px;
    width: 123px;
    left: 15px!important;
    top: 53px!important;
    height: 16px;
    zoom: 1.587;
}
#rec864541108 .tn-elem[data-elem-id="1739275605640"] .tn-atom {
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
    font-family: 'Inter/Kyiv';
    font-size: 13px!important;
    font-weight: 200;
}
    /* .title_main {
    vertical-align: middle;
    color: #ff0000!important;
    font-size: 16px!important;
    font-family: 'Zagolovki', Arial, sans-serif!important;
    line-height: 1.55;
    font-weight: 100!important;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
} */
    #rec857271773 .t396__artboard:not(.t396__artboard-flex), #rec857271773 .t396__artboard:not(.t396__artboard-flex) .t396__carrier, #rec857271773 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
    width: 84vw !important;
    max-width: 100%;
}
.t396 .tn-atom {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    max-width: 832px;
    font-size: 24px!important;
    line-height: 1.6!important;
    color: #333;
    font-family: 'Zagolovki';
    font-weight: 300;
    -ms-text-size-adjust: 100%;
}
.title_main1 {
    vertical-align: middle;
    color: #ffffff!important;
    /* font-size: 16px!important;
    font-family: 'Zagolovki', Arial, sans-serif!important;
    line-height: 1.55;
    font-weight: 100!important; */
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    margin: 0 auto;
}
}  
                    #rec866081701 .t396__artboard {
                        height: 865px;
                        background-color: #fffefc;
                        overflow: auto;
                    }
                    #rec866081701 .t396__filter {
                        height: 865px;
                    }
                    #rec866081701 .t396__carrier {
                        height: 865px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .t396__artboard,
                        #rec866081701 .t396__filter,
                        #rec866081701 .t396__carrier {
                            height: 778px;
                        }
                        #rec866081701 .t396__filter {
                        }
                        #rec866081701 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .t396__artboard,
                        #rec866081701 .t396__filter,
                        #rec866081701 .t396__carrier {
                            height: 870px;
                        }
                        #rec866081701 .t396__filter {
                        }
                        #rec866081701 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .t396__artboard,
                        #rec866081701 .t396__filter,
                        #rec866081701 .t396__carrier {
                            height: 370px;
                        }
                        #rec866081701 .t396__filter {
                        }
                        #rec866081701 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .t396__artboard {
                            position: relative;
                            width: initial;
                            left: initial;
                            top: initial;
                            bottom: initial;
                            transform: none;
                            transition: none;
                            opacity: 1;
                            z-index: auto;
                        }
                        #rec866081701 .t396__artboard,
                        #rec866081701 .t396__filter,
                        #rec866081701 .t396__carrier {
                            height: 339px;
                        }
                        #rec866081701 .t396__filter {
                        }
                        #rec866081701 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010704784"] {
                        z-index: 3;
                        top: 390px;
                        left: calc(50% - 600px + 800px);
                        width: 320px;
                        height: 350px;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010704784"] .tn-atom {
                        border-radius: 5px 5px 5px 5px;
                        background-color: #dddd7b;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010704784"] {
                            top: 360px;
                            left: calc(50% - 480px + 660px);
                            width: 300px;
                            height: 330px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010704784"] {
                            top: 494px;
                            left: calc(50% - 320px + 330px);
                            width: 310px;
                            height: 300px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010704784"] {
                            top: 0px;
                            left: calc(50% - 240px + 1231px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010704784"] {
                            left: calc(50% - 160px + 1200px);
                            height: 280px;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010578680"] {
                        color: #000000;
                        z-index: 4;
                        top: 561px;
                        left: calc(50% - 600px + 825px);
                        width: 277px;
                        height: auto;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010578680"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010578680"] {
                            top: 506px;
                            left: calc(50% - 480px + 675px);
                            width: 277px;
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010578680"] .tn-atom {
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010578680"] {
                            top: 635px;
                            left: calc(50% - 320px + 345px);
                            width: 288px;
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010578680"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010578680"] {
                            top: 139px;
                            left: calc(50% - 240px + 1246px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010578680"] {
                            top: 135px;
                            left: calc(50% - 160px + 1220px);
                            width: 279px;
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010578680"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010621273"] {
                        color: #000000;
                        z-index: 5;
                        top: 415px;
                        left: calc(50% - 600px + 825px);
                        width: 247px;
                        height: auto;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010621273"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 20px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010621273"] {
                            top: 385px;
                            left: calc(50% - 480px + 675px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010621273"] {
                            top: 519px;
                            left: calc(50% - 320px + 345px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010621273"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010621273"] {
                            top: 25px;
                            left: calc(50% - 240px + 1246px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010621273"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010621273"] {
                            left: calc(50% - 160px + 1220px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010621273"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010677468"] {
                        z-index: 6;
                        top: 390px;
                        left: calc(50% - 600px + 80px);
                        width: 320px;
                        height: 350px;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010677468"] .tn-atom {
                        border-radius: 5px 5px 5px 5px;
                        background-color: #ffdbdf;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010677468"] {
                            top: 360px;
                            left: calc(50% - 480px + 0px);
                            width: 300px;
                            height: 330px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010677468"] {
                            top: 494px;
                            left: calc(50% - 320px + 0px);
                            width: 310px;
                            height: 300px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010677468"] {
                            top: 0px;
                            left: calc(50% - 240px + 901px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010677468"] {
                            left: calc(50% - 160px + 870px);
                            height: 280px;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010746792"] {
                        color: #000000;
                        z-index: 7;
                        top: 561px;
                        left: calc(50% - 600px + 105px);
                        width: 271px;
                        height: auto;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010746792"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010746792"] {
                            top: 506px;
                            left: calc(50% - 480px + 15px);
                            width: 276px;
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010746792"] .tn-atom {
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010746792"] {
                            top: 635px;
                            left: calc(50% - 320px + 15px);
                            width: 285px;
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010746792"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010746792"] {
                            top: 140px;
                            left: calc(50% - 240px + 916px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010746792"] {
                            top: 135px;
                            left: calc(50% - 160px + 890px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010746792"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010746803"] {
                        color: #000000;
                        z-index: 8;
                        top: 415px;
                        left: calc(50% - 600px + 105px);
                        width: 255px;
                        height: auto;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734010746803"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 20px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010746803"] {
                            top: 385px;
                            left: calc(50% - 480px + 15px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010746803"] {
                            top: 519px;
                            left: calc(50% - 320px + 15px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010746803"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010746803"] {
                            top: 25px;
                            left: calc(50% - 240px + 916px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010746803"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734010746803"] {
                            left: calc(50% - 160px + 890px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734010746803"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1738011282349"] {
                        z-index: 9;
                        top: 0px;
                        left: calc(50% - 600px + 440px);
                        width: 320px;
                        height: 350px;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1738011282349"] .tn-atom {
                        border-radius: 5px 5px 5px 5px;
                        background-color: #e9adc9;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1738011282349"] {
                            left: calc(50% - 480px + 330px);
                            width: 300px;
                            height: 330px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1738011282349"] {
                            left: calc(50% - 320px + 330px);
                            width: 310px;
                            height: 300px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1738011282349"] {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1738011282349"] {
                            height: 280px;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011082959"] {
                        color: #ffffff;
                        z-index: 10;
                        top: 171px;
                        left: calc(50% - 600px + 465px);
                        width: 259px;
                        height: auto;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011082959"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082959"] {
                            top: 146px;
                            left: calc(50% - 480px + 345px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011082959"] .tn-atom {
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082959"] {
                            top: 139px;
                            left: calc(50% - 320px + 345px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011082959"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082959"] {
                            top: 135px;
                            left: calc(50% - 160px + 350px);
                            width: 240px;
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011082959"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011082974"] {
                        color: #ffffff;
                        z-index: 11;
                        top: 25px;
                        left: calc(50% - 600px + 465px);
                        width: 247px;
                        height: auto;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011082974"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffff;
                        font-size: 20px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082974"] {
                            left: calc(50% - 480px + 345px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082974"] {
                            left: calc(50% - 320px + 345px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011082974"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082974"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082974"] {
                            left: calc(50% - 160px + 350px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011082974"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011082985"] {
                        z-index: 12;
                        top: 0px;
                        left: calc(50% - 600px + 80px);
                        width: 320px;
                        height: 350px;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011082985"] .tn-atom {
                        border-radius: 5px 5px 5px 5px;
                        background-color: #ffe797;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082985"] {
                            left: calc(50% - 480px + 0px);
                            width: 300px;
                            height: 330px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082985"] {
                            width: 310px;
                            height: 300px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082985"] {
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082985"] {
                            height: 280px;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011082995"] {
                        color: #000000;
                        z-index: 13;
                        top: 171px;
                        left: calc(50% - 600px + 105px);
                        width: 265px;
                        height: auto;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011082995"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 16px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082995"] {
                            top: 146px;
                            left: calc(50% - 480px + 15px);
                            width: 278px;
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011082995"] .tn-atom {
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082995"] {
                            top: 139px;
                            width: 282px;
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011082995"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011082995"] {
                            top: 135px;
                            left: calc(50% - 160px + 20px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011082995"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 1;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011083005"] {
                        color: #000000;
                        z-index: 14;
                        top: 25px;
                        left: calc(50% - 600px + 105px);
                        width: 255px;
                        height: auto;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734011083005"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 20px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011083005"] {
                            left: calc(50% - 480px + 15px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011083005"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011083005"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734011083005"] {
                            left: calc(50% - 160px + 20px);
                            height: auto;
                        }
                        #rec866081701 .tn-elem[data-elem-id="1734011083005"] .tn-atom {
                            font-size: 18px;
                            background-size: cover;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734012185110"] {
                        z-index: 15;
                        top: 518px;
                        left: calc(50% - 600px + 499px);
                        width: 201px;
                        height: 94px;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1734012185110"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866081701 .tn-elem[data-elem-id="1734012185110"] {
                            top: 478px;
                            left: calc(50% - 480px + 379px);
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866081701 .tn-elem[data-elem-id="1734012185110"] {
                            top: 350px;
                            left: calc(50% - 320px + 220px);
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1734012185110"] {
                            top: 103px;
                            left: calc(50% - 240px + 670px);
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1734012185110"] {
                            top: 100px;
                            width: 170px;
                            height: 80px;
                        }
                    }
                    #rec866081701 .tn-elem[data-elem-id="1739304849293"] {
                        z-index: 16;
                        top: 38px;
                        left: calc(50% - 600px + 939px);
                        width: 100px;
                        height: 100px;
                    }
                    #rec866081701 .tn-elem[data-elem-id="1739304849293"] .tn-atom {
                        border-radius: 0px 0px 0px 0px;
                        opacity: 0;
                        background-color: #fff705;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                        #rec866081701 .tn-elem[data-elem-id="1739304849293"] {
                            top: 193px;
                            left: calc(50% - 240px + 1541px);
                            width: 50px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866081701 .tn-elem[data-elem-id="1739304849293"] {
                        }
                    }   
                    #rec866092198 .tn-elem[data-elem-id="1734010357614"] {
    color: #ff0000;
    z-index: 3;
    top: 0px;
    left: calc(50% - 600px + 80px);
    width: 811px;
    height: auto;
    left: 235px!important;
}
.backdrop-blur-3xl {
    backdrop-filter: blur(80px) saturate(200%);
    -webkit-backdrop-filter: blur(80px) saturate(200%);
}
.duration-700 {
    transition-duration: 700ms;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.backdrop-blur-3xl {
    --tw-backdrop-blur: blur(64px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rounded-3xl {
    border-radius: 1.5rem;
}
.group:hover .group-hover\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.to-pink-500 {
    --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.from-rose-500 {
    --tw-gradient-from: #f43f5e var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(244 63 94 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:hover .group-hover\:rotate-3 {
    --tw-rotate: 3deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))!important;
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
}

}
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.gap-8 {
    gap: 2rem;
}
.grid {
    display: grid;
}                   
.text-center {
    text-align: center;
}
.relative {
    position: relative;
}  
.backdrop-blur-3xl {
    backdrop-filter: blur(80px) saturate(200%);
    -webkit-backdrop-filter: blur(80px) saturate(200%);
}
*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
#rec864541108 .t396__carrier, #rec864541108 .t396__filter, #rec864541108 .t396__artboard {
    height: 975px !important;
}
.t-container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px!important;
    padding: 0;
    margin: 0 auto;
}
.t-col_12 {
    max-width: 1400px!important;
}

.card-grid .card {
    /* background: white; */
    border-radius: 20px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 0%);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
    border: 1px #ff0000 solid;
}
.t-title {
    font-family: 'Inter/Kyiv',Arial,sans-serif;
    font-weight: 300;
    color: #000000;
    color: #ff0000;
    font-size: 24px;
    font-family: "Inter/Kyiv", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}
.t-title {
    font-family: 'Inter/Kyiv',Arial,sans-serif;
    font-weight: 300;
    color: #ff0000!important;
}
 /* Контейнер */
.glass-blocks-container {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
}
  .section-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
  /* Ряд блоков */
  .glass-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  /* Карточка с эффектом стекла */
.glass-card {
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    background: rgb(255 255 255 / 24%);
    box-shadow: 0 4px 20px rgb(0 0 0 / 7%);
    backdrop-filter: blur(3px) saturate(89%);
    -webkit-backdrop-filter: blur(3px) saturate(89%);
    border: 1px solid rgb(255 255 255 / 10%);
    transition: all 0.3s ease;
    min-height: 190px;
    display: flex;
    flex-direction: column;
}
.glass-card {
    padding: 24px 28px;
    border-radius: 20px;
    background: rgb(0 0 0 / 21%);
    backdrop-filter: blur(2px) saturate(127%);
    box-shadow: inset 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.glass-title {
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 8px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: center;
    font-family: 'Inter/Kyiv', Arial, sans-serif;
}
.glass-title::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: 0.5;
}
  
  /* Текст */
.glass-text {
    font-size: 20px;
    line-height: 1.3;
    color: rgba(255, 255, 255);
    margin: 0;
    font-family: 'Inter/Kyiv', Arial, sans-serif;
    font-weight: 800;
    padding-top: 24px;
    text-transform: none;
}
  
  /* Эффект при наведении */
.glass-card:hover {
    transform: translateY(-5px);
    background: rgb(81 81 81 / 20%);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
}
  
  /* Адаптация для мобильных */
  @media (max-width: 768px) {
    .glass-row {
      flex-direction: column;
      gap: 20px;
    }
    
    .glass-card {
          backdrop-filter: blur(3px) saturate(89%);
       -webkit-backdrop-filter: blur(3px) saturate(89%);
    }
  }
  /* Для блока с текстом */
.tn-atom.custom-invite-text {
  font-size: 22px;
  color: #5c0000; /* Темно-красный */
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Для ссылки */
.tn-atom.custom-invite-text a {
  color: #a10000;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed #a10000;
  transition: all 0.3s ease;
}

/* Наведение на ссылку */
.tn-atom.custom-invite-text a:hover {
  color: #d60000;
  border-bottom-style: solid;
}

/* Для перехода между красным и светлым фоном — декоративный элемент */
.custom-gradient-transition {
  height: 50px;
  background: linear-gradient(to bottom, #b60000 0%, #f6f5e8 100%);
}

    .section-intro {
      text-align: center;
      max-width: 900px;
      margin: 40px auto 20px;
      padding: 0 20px;
    }

    .section-intro h2 {
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.5px;
      line-height: 1.6;
    }

    .section-intro span {
      color: #e11d48;
      font-weight: 600;
      text-decoration: underline dashed;
    }

    .section-title {
      font-size: 28px;
      text-align: center;
      font-weight: 600;
      color: #e11d48;
      margin: 60px 0 30px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto 60px;
      padding: 0 20px;
    }

  .card {
    /* background: white; */
    border-radius: 20px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 0%);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
}
    .card:nth-child(2) { animation-delay: 0.15s; }
    .card:nth-child(3) { animation-delay: 0.3s; }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0);
    }

   .card span.number {
    color: #ff0000 !important;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 28px;
}
.t397__col {
    margin: 0 auto;
    margin-bottom: 53px;
}
    .card img {
      width: 100%;
      height: auto;
      max-width: 200px;
      /* border-radius: 12px; */
      /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
      margin: 10px auto 10px;
      display: block;
    }

    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 15px;
      padding-top: 10px;
    }

  .card-footer button {
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
    color: #ff0000 !important;
    font-weight: 400 !important;
    font-family: 'Zagolovki';
    font-size: 34px;
}

    .card-footer button:hover {
      text-decoration: underline;
    }

   .price {
    font-weight: 600;
    color: #e11d48;
    color: #ff0000 !important;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 24px;
}
#allrecords a, #allrecords button, #allrecords .t-radio, #allrecords .t-checkbox, #allrecords .t-img-select {
    outline: none;
    z-index: 998;
    position: relative;
}
    @media (max-width: 480px) {
      .card-footer {
        flex-direction: column;
        gap: 8px;
      }
    }
      .t-rec#rec864541108 {
                                overflow: visible;
                            }
                            #rec864541108 .t396__artboard:not(.t396__artboard-flex),
                            #rec864541108 .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
                            #rec864541108 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
                                width: 100vw !important;
                                max-width: 100%;
                            }
                            #rec864541108 .t396__carrier,
                            #rec864541108 .t396__filter,
                            #rec864541108 .t396__artboard {
                                height: 958px !important;
                            }
                                      @media screen and (max-width: 560px) {
                                #rec866096396 .t-popup__close-icon g {
                                    fill: #ffffff !important;
                                }
                            }
                              #rec866096396 input::-webkit-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866096396 input::-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866096396 input:-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866096396 input:-ms-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866096396 textarea::-webkit-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866096396 textarea::-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866096396 textarea:-moz-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec866096396 textarea:-ms-input-placeholder {
                                        color: #ff0000;
                                        opacity: 0.5;
                                    }
                                    #rec864541108 .t396__carrier, #rec864541108 .t396__filter, #rec864541108 .t396__artboard {
    height: 975px !important;
}
   #rec866092198 .t396__carrier, #rec866092198 .t396__filter, #rec866092198 .t396__artboard {
    height: 500px !important;
}
   @media (hover: hover), (min-width: 0\0) {
                        #rec866096396 .t-submit:hover {
                            color: #ff0000 !important;
                            border-color: #ff0000 !important;
                            background-color: #fffefc !important;
                        }
                        #rec866096396 .t-submit:focus-visible {
                            color: #ff0000 !important;
                            border-color: #ff0000 !important;
                            background-color: #fffefc !important;
                        }
                    }
                    #rec866096396 .t-submit {
                        transition-property: background-color, color, border-color, box-shadow;
                        transition-duration: 0.2s;
                        transition-timing-function: ease-in-out;
                    }
                      #rec866096396 .t702__title {
                        font-size: 20px;
                        color: #ff0000;
                        font-weight: 400;
                        padding-top: 15px;
                        padding-bottom: 15px;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    #rec866096396 .t702__descr {
                        font-size: 16px;
                        color: #ff0000;
                        font-weight: 400;
                        padding-bottom: 20px;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866096396 .t702__descr {
                            font-size: 13px;
                        }
                    }
                      #rec866092198 .t396__artboard {
                        height: 85px;
                        background-color: #fffefc;
                    }
                    #rec866092198 .t396__filter {
                        height: 85px;
                    }
                    #rec866092198 .t396__carrier {
                        height: 85px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866092198 .t396__artboard,
                        #rec866092198 .t396__filter,
                        #rec866092198 .t396__carrier {
                            height: 69px;
                        }
                        #rec866092198 .t396__filter {
                        }
                        #rec866092198 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866092198 .t396__artboard,
                        #rec866092198 .t396__filter,
                        #rec866092198 .t396__carrier {
                            height: 70px;
                        }
                        #rec866092198 .t396__filter {
                        }
                        #rec866092198 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866092198 .t396__artboard,
                        #rec866092198 .t396__filter,
                        #rec866092198 .t396__carrier {
                            height: 70px;
                        }
                        #rec866092198 .t396__filter {
                        }
                        #rec866092198 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866092198 .t396__artboard,
                        #rec866092198 .t396__filter,
                        #rec866092198 .t396__carrier {
                            height: 60px;
                        }
                        #rec866092198 .t396__filter {
                        }
                        #rec866092198 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec866092198 .tn-elem[data-elem-id="1734010357614"] {
                        color: #ff0000;
                        z-index: 3;
                        top: 0px;
                        left: calc(50% - 600px + 80px);
                        width: 811px;
                        height: auto;
                    }
                    #rec866092198 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                        vertical-align: middle;
                        color: #ffffffff;
                        font-size: 24px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec866092198 .tn-elem[data-elem-id="1734010357614"] {
                            left: calc(50% - 480px + 0px);
                            width: 811px;
                            height: auto;
                        }
                        #rec866092198 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                            font-size: 22px;
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec866092198 .tn-elem[data-elem-id="1734010357614"] {
                            left: calc(50% - 320px + 0px);
                            width: 633px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec866092198 .tn-elem[data-elem-id="1734010357614"] {
                            width: 513px;
                            height: auto;
                        }
                        #rec866092198 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec866092198 .tn-elem[data-elem-id="1734010357614"] {
                            width: 320px;
                            height: auto;
                        }
                        #rec866092198 .tn-elem[data-elem-id="1734010357614"] .tn-atom {
                            font-size: 20px;
                            line-height: 1.2;
                            background-size: cover;
                        }
                    }
 .cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    max-width: 1173px;
    margin: 0 auto;
    padding: 0px;
    margin-top: 25px;
}

@media (min-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  text-align: center;
}

.card-inner {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 1px solid rgb(255 255 255 / 0%);
    padding: 2rem;
    box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 20px -6px rgba(0, 0, 0, 0.1);
    transition: all 0.7s ease;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgb(236 236 236 / 59%);
    backdrop-filter: blur(19px);
}

.card-inner:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(3deg);
}

.card-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #ff0000, #b30000);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 20px;
}

.card-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 800 !important;
    font-size: 23px !important;
    font-family: 'lovelab', Arial, sans-serif!important;
    line-height: 1.55;
    text-transform: uppercase;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.card-text {
    color: #000000;
    line-height: 1;
    text-transform: lowercase;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 21px;
}

/* Градиенты для иконок */
.gradient-1 {
     background: linear-gradient(to right, #ff0000, #ac0000);
}
.gradient-2 {
    background: linear-gradient(to right, #ff0000, #ac0000);
}
.gradient-3 {
     background: linear-gradient(to right, #ff0000, #ac0000);
}
.gradient-4 {
     background: linear-gradient(to right, #ff0000, #ac0000);
}

/* Стили для SVG */
.card-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}
 .t-rec#rec866092198 {
                                overflow: visible;
                            }
                            #rec866092198 .t396__artboard:not(.t396__artboard-flex),
                            #rec866092198 .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
                            #rec866092198 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
                                width: 100vw !important;
                                max-width: 100%;
                            }
                            #rec866092198 .t396__carrier, #rec866092198 .t396__filter, #rec866092198 .t396__artboard {
                                height: 500px !important;
                                background: url(/img/11.jpg);
                                background-position: center;
                                background-size: cover;
                            }
                              .t-rec#rec866081701 {
                                overflow: visible;
                            }
                            #rec866081701 .t396__artboard:not(.t396__artboard-flex),
                            #rec866081701 .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
                            #rec866081701 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
                                width: 100vw !important;
                                max-width: 100%;
                            }
                            #rec866081701 .t396__carrier,
                            #rec866081701 .t396__filter,
                            #rec866081701 .t396__artboard {
                                height: 1372px !important;
                            }
                             .t-section__descr {
                            max-width: 560px;
                        }
                      #rec857237504 .t-section__title {
                            margin-bottom: 70px;
                            margin-top: 50px;
                            /* margin: 0 auto; */
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            align-content: center;
                        }
                        #rec857237504 .t-section__descr {
                        }
                        @media screen and (max-width: 960px) {
                            #rec857237504 .t-section__title {
                                margin-bottom: 45px;
                            }
                        }
                         #rec857237504 .t585__title {
                        font-size: 18px;
                        line-height: 1.4;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        max-width: 1000px;
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec857237504 .t585__title {
                            font-size: 14px;
                            line-height: 1.3;
                        }
                    }
                    #rec857237504 .t585__text {
                        font-size: 15px;
                        line-height: 1.4;
                        color: #000000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        max-width: 1200px;
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec857237504 .t585__text {
                            font-size: 12px;
                        }
                    }
                      #rec866079787 .t390__title {
                        font-size: 22px;
                        line-height: 1.4;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866079787 .t390__title {
                            font-size: 16px;
                            line-height: 1.3;
                        }
                    }
                    #rec866079787 .t390__descr {
                        font-size: 16px;
                        line-height: 1.4;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866079787 .t390__descr {
                            font-size: 13px;
                            line-height: 1.3;
                        }
                    }
                       #rec866079876 .t390__title {
                        font-size: 22px;
                        line-height: 1.4;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                        text-transform: uppercase;
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866079876 .t390__title {
                            line-height: 1.3;
                        }
                    }
                    #rec866079876 .t390__descr {
                        font-size: 16px;
                        line-height: 1.4;
                        color: #ff0000;
                        font-weight: 400;
                        font-family: "Inter/Kyiv";
                    }
                    @media screen and (max-width: 480px), (orientation: landscape) and (max-height: 480px) {
                        #rec866079876 .t390__descr {
                            font-size: 13px;
                            line-height: 1.3;
                        }
                    }
                     #rec857237505 .t396__artboard {
                        height: 728px;
                        background-color: #fffefc;
                    }
                    #rec857237505 .t396__filter {
                        height: 728px;
                    }
                    #rec857237505 .t396__carrier {
                        height: 728px;
                        background-position: center center;
                        background-attachment: scroll;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .t396__artboard,
                        #rec857237505 .t396__filter,
                        #rec857237505 .t396__carrier {
                            height: 719px;
                        }
                        #rec857237505 .t396__filter {
                        }
                        #rec857237505 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .t396__artboard,
                        #rec857237505 .t396__filter,
                        #rec857237505 .t396__carrier {
                            height: 1169px;
                        }
                        #rec857237505 .t396__filter {
                        }
                        #rec857237505 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .t396__artboard,
                        #rec857237505 .t396__filter,
                        #rec857237505 .t396__carrier {
                            height: 1108px;
                        }
                        #rec857237505 .t396__filter {
                        }
                        #rec857237505 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .t396__artboard,
                        #rec857237505 .t396__filter,
                        #rec857237505 .t396__carrier {
                            height: 1100px;
                        }
                        #rec857237505 .t396__filter {
                        }
                        #rec857237505 .t396__carrier {
                            background-attachment: scroll;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739478427824"] {
                        color: #ff0000;
                        z-index: 3;
                        top: 218px;
                        left: calc(50% - 600px + 80px);
                        width: 560px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739478427824"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 24px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        text-transform: uppercase;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739478427824"] {
                            left: calc(50% - 480px + 0px);
                            width: 298px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739478427824"] .tn-atom {
                            font-size: 22px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739478427824"] {
                            top: 80px;
                            left: calc(50% - 320px + 0px);
                            width: 298px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739478427824"] {
                            top: 40px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739478427824"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739478427824"] {
                            width: 191px;
                            height: auto;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1701965676375"] {
                        color: #000000;
                        text-align: LEFT;
                        z-index: 4;
                        top: 352px;
                        left: calc(50% - 600px + 121px);
                        width: 0px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1701965676375"] .tn-atom {
                        vertical-align: middle;
                        color: #000000;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                    }
                    @media screen and (max-width: 959px) {
                    }
                    @media screen and (max-width: 639px) {
                    }
                    @media screen and (max-width: 479px) {
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739269219032"] {
                        color: #ff0000;
                        text-align: LEFT;
                        z-index: 5;
                        top: 290px;
                        left: calc(50% - 600px + 80px);
                        width: 407px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739269219032"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 18px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269219032"] {
                            left: calc(50% - 480px + 0px);
                            width: 415px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739269219032"] .tn-atom {
                            font-size: 15px;
                            line-height: 1.3;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269219032"] {
                            top: 144px;
                            left: calc(50% - 320px + 0px);
                            width: 411px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739269219032"] .tn-atom {
                            font-size: 15px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269219032"] {
                            top: 106px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269219032"] {
                            top: 91px;
                            left: calc(50% - 160px + 0px);
                            width: 313px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739269219032"] .tn-atom {
                            font-size: 14px;
                            line-height: 1.2;
                            background-size: cover;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1702156470716"] {
                        color: #ff0000;
                        z-index: 6;
                        top: 535px;
                        left: calc(50% - 600px + 80px);
                        width: 141px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1702156470716"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1702156470716"] {
                            top: 464px;
                            left: calc(50% - 480px + 0px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1702156470716"] {
                            top: 326px;
                            left: calc(50% - 320px + 0px);
                            width: 307px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1702156470716"] {
                            top: 276px;
                            left: calc(50% - 240px + 0px);
                            width: 307px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1702156470716"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1702156470716"] {
                            top: 267px;
                            left: calc(50% - 160px + 0px);
                            width: 307px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1702156470716"] .tn-atom {
                            font-size: 10px;
                            background-size: cover;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739269379118"] {
                        z-index: 7;
                        top: 0px;
                        left: calc(50% - 600px + 599px);
                        width: 521px;
                        height: 728px;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739269379118"] .tn-atom {
                        border-radius: 15px 15px 0px 0px;
                        background-color: #ff0000;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269379118"] {
                            top: 0px;
                            left: calc(50% - 480px + 450px);
                            width: 510px;
                            height: 719px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269379118"] {
                            top: 441px;
                            left: calc(50% - 320px + 0px);
                            width: 640px;
                            height: 728px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269379118"] {
                            top: 384px;
                            width: 480px;
                            height: 724px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269379118"] {
                            top: 352px;
                            left: calc(50% - 160px + -40px);
                            width: 400px;
                            height: 748px;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739269409752"] {
                        z-index: 8;
                        top: 108px;
                        left: calc(50% - 600px + 630px);
                        width: 460px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739269409752"] .tn-atom {
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269409752"] {
                            top: 104px;
                            left: calc(50% - 480px + 475px);
                            width: 460px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269409752"] {
                            top: 540px;
                            left: calc(50% - 320px + 40px);
                            width: 560px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269409752"] {
                            top: 488px;
                            left: calc(50% - 240px + 30px);
                            width: 420px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739269409752"] {
                            top: 446px;
                            left: calc(50% - 160px + 0px);
                            width: 320px;
                            height: auto;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1701965676393"] {
                        color: #fffefc;
                        text-align: LEFT;
                        z-index: 9;
                        top: 31px;
                        left: calc(50% - 600px + 630px);
                        width: 357px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1701965676393"] .tn-atom {
                        vertical-align: middle;
                        color: #fffefc;
                        font-size: 26px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        font-weight: 400;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1701965676393"] {
                            top: 45px;
                            left: calc(50% - 480px + 475px);
                            width: 458px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1701965676393"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1701965676393"] {
                            top: 486px;
                            left: calc(50% - 320px + 40px);
                            width: 356px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1701965676393"] .tn-atom {
                            font-size: 20px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1701965676393"] {
                            top: 429px;
                            left: calc(50% - 240px + 30px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1701965676393"] {
                            top: 397px;
                            left: calc(50% - 160px + 0px);
                            width: 199px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1701965676393"] .tn-atom {
                            font-size: 16px;
                            background-size: cover;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739479508297"] {
                        z-index: 10;
                        top: 395px;
                        left: calc(50% - 600px + 232px);
                        width: 55px;
                        height: 55px;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739479508297"] .tn-atom {
                        border-radius: 15px 15px 15px 15px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739479508297"] {
                            top: 357px;
                            left: calc(50% - 480px + 157px);
                            width: 60px;
                            height: 60px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739479508297"] {
                            top: 214px;
                            left: calc(50% - 320px + 160px);
                            width: 60px;
                            height: 60px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739479508297"] {
                            top: 171px;
                            left: calc(50% - 240px + 140px);
                            width: 55px;
                            height: 55px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739479508297"] {
                            top: 167px;
                            left: calc(50% - 160px + 130px);
                            width: 50px;
                            height: 50px;
                            border-radius: 9px 9px 9px 9px;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739479508297"] .tn-atom {
                            background-size: cover;
                            border-radius: 9px 9px 9px 9px;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739480366361"] {
                        z-index: 11;
                        top: 395px;
                        left: calc(50% - 600px + 156px);
                        width: 55px;
                        height: 55px;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739480366361"] .tn-atom {
                        border-radius: 15px 15px 15px 15px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480366361"] {
                            top: 357px;
                            left: calc(50% - 480px + 79px);
                            width: 60px;
                            height: 60px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480366361"] {
                            top: 214px;
                            left: calc(50% - 320px + 80px);
                            width: 60px;
                            height: 60px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480366361"] {
                            top: 171px;
                            left: calc(50% - 240px + 70px);
                            width: 55px;
                            height: 55px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480366361"] {
                            top: 167px;
                            left: calc(50% - 160px + 65px);
                            width: 50px;
                            height: 50px;
                            border-radius: 9px 9px 9px 9px;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739480366361"] .tn-atom {
                            background-size: cover;
                            border-radius: 9px 9px 9px 9px;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739480456511"] {
                        color: #ff0000;
                        z-index: 12;
                        top: 557px;
                        left: calc(50% - 600px + 80px);
                        width: 246px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739480456511"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456511"] {
                            top: 486px;
                            left: calc(50% - 480px + 0px);
                            width: 246px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456511"] {
                            top: 372px;
                            left: calc(50% - 320px + 0px);
                            width: 246px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456511"] {
                            top: 318px;
                            left: calc(50% - 240px + 0px);
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739480456511"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456511"] {
                            top: 303px;
                            left: calc(50% - 160px + 0px);
                            width: 246px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739480456511"] .tn-atom {
                            font-size: 10px;
                            background-size: cover;
                            opacity: 0.7;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739480456504"] {
                        color: #ff0000;
                        z-index: 13;
                        top: 579px;
                        left: calc(50% - 600px + 80px);
                        width: 246px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739480456504"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.55;
                        font-weight: 400;
                        opacity: 0.7;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456504"] {
                            top: 508px;
                            left: calc(50% - 480px + 0px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456504"] {
                            top: 349px;
                            left: calc(50% - 320px + 0px);
                            width: 246px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456504"] {
                            top: 297px;
                            left: calc(50% - 240px + 0px);
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739480456504"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456504"] {
                            top: 285px;
                            left: calc(50% - 160px + 0px);
                            width: 246px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739480456504"] .tn-atom {
                            font-size: 10px;
                            background-size: cover;
                            opacity: 0.7;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739480456492"] {
                        color: #ff0000;
                        z-index: 14;
                        top: 535px;
                        left: calc(50% - 600px + 267px);
                        width: 291px;
                        height: auto;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739480456492"] .tn-atom {
                        vertical-align: middle;
                        color: #ff0000;
                        font-size: 12px;
                        font-family: "Inter/Kyiv", Arial, sans-serif;
                        line-height: 1.4;
                        font-weight: 400;
                        opacity: 0;
                        background-position: center center;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456492"] {
                            top: 557px;
                            left: calc(50% - 480px + 0px);
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456492"] {
                            top: 326px;
                            left: calc(50% - 320px + 331px);
                            width: 291px;
                            height: auto;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456492"] {
                            top: 357px;
                            left: calc(50% - 240px + 0px);
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739480456492"] .tn-atom {
                            font-size: 12px;
                            background-size: cover;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739480456492"] {
                            top: 976px;
                            left: calc(50% - 160px + 0px);
                            width: 291px;
                            height: auto;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739480456492"] {
                            color: #fffefc;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739480456492"] .tn-atom {
                            color: #fffefc;
                            font-size: 10px;
                            line-height: 1.2;
                            background-size: cover;
                            opacity: 0;
                        }
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739479519344"] {
                        z-index: 15;
                        top: 395px;
                        left: calc(50% - 600px + 80px);
                        width: 55px;
                        height: 55px;
                    }
                    #rec857237505 .tn-elem[data-elem-id="1739479519344"] .tn-atom {
                        border-radius: 15px 15px 15px 15px;
                        background-position: center center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        border-color: transparent;
                        border-style: solid;
                    }
                    @media screen and (max-width: 1199px) {
                        #rec857237505 .tn-elem[data-elem-id="1739479519344"] {
                            top: 357px;
                            left: calc(50% - 480px + 0px);
                            width: 60px;
                            height: 60px;
                        }
                    }
                    @media screen and (max-width: 959px) {
                        #rec857237505 .tn-elem[data-elem-id="1739479519344"] {
                            top: 214px;
                            left: calc(50% - 320px + 0px);
                            width: 60px;
                            height: 60px;
                        }
                    }
                    @media screen and (max-width: 639px) {
                        #rec857237505 .tn-elem[data-elem-id="1739479519344"] {
                            top: 171px;
                            width: 55px;
                            height: 55px;
                        }
                    }
                    @media screen and (max-width: 479px) {
                        #rec857237505 .tn-elem[data-elem-id="1739479519344"] {
                            top: 167px;
                            width: 50px;
                            height: 50px;
                            border-radius: 9px 9px 9px 9px;
                        }
                        #rec857237505 .tn-elem[data-elem-id="1739479519344"] .tn-atom {
                            background-size: cover;
                            border-radius: 9px 9px 9px 9px;
                        }
                    }
                    #rec857237505 [data-elem-id="1739269409752"] input::-webkit-input-placeholder {
                                        color: #ffffff;
                                        opacity: 0.5;
                                    }
                                    #rec857237505 [data-elem-id="1739269409752"] input::-moz-placeholder {
                                        color: #ffffff;
                                        opacity: 0.5;
                                    }
                                    #rec857237505 [data-elem-id="1739269409752"] input:-moz-placeholder {
                                        color: #ffffff;
                                        opacity: 0.5;
                                    }
                                    #rec857237505 [data-elem-id="1739269409752"] input:-ms-input-placeholder {
                                        color: #ffffff;
                                        opacity: 0.5;
                                    }
                                    #rec857237505 [data-elem-id="1739269409752"] textarea::-webkit-input-placeholder {
                                        color: #ffffff;
                                        opacity: 0.5;
                                    }
                                    #rec857237505 [data-elem-id="1739269409752"] textarea::-moz-placeholder {
                                        color: #ffffff;
                                        opacity: 0.5;
                                    }
                                    #rec857237505 [data-elem-id="1739269409752"] textarea:-moz-placeholder {
                                        color: #ffffff;
                                        opacity: 0.5;
                                    }
                                    #rec857237505 [data-elem-id="1739269409752"] textarea:-ms-input-placeholder {
                                        color: #ffffff;
                                        opacity: 0.5;
                                    }
                                      #rec857237505 [data-elem-id="1739269409752"] .t-input-block input[type="text"],
                                    #rec857237505 [data-elem-id="1739269409752"] .t-input-block input[type="tel"],
                                    #rec857237505 [data-elem-id="1739269409752"] .t-input-block input[type="url"],
                                    #rec857237505 [data-elem-id="1739269409752"] .t-input-block input[type="email"],
                                    #rec857237505 [data-elem-id="1739269409752"] .t-input-block .t-input-phonemask__select,
                                    #rec857237505 [data-elem-id="1739269409752"] .t-input-block textarea,
                                    #rec857237505 [data-elem-id="1739269409752"] .t-input-block select,
                                    #rec857237505 [data-elem-id="1739269409752"] .t-input-block .t-input__vis-ph {
                                        font-family: "Inter/Kyiv";
                                    }
                                      .tn-atom .t-input-block {
                                        position: relative;
                                    }
                                     #rec857237505 [data-elem-id="1739269409752"] .t-select__wrapper:after {
                                                            border-top-color: #fffefc;
                                                        }
                                                          #rec857237505 [data-elem-id="1739269409752"] .t-checkbox__indicator:after {
                                                            border-color: #fffefc;
                                                        }
                                                        #rec857237505 [data-elem-id="1739269409752"] .t-submit {
                                        color: #ff0000;
                                        border: 0px solid #ff0000;
                                        border-radius: 20px;
                                        font-size: 18px;
                                        font-family: Inter/Kyiv;
                                        cursor: pointer;
                                        background-color: #fffefc;
                                    }
                                     .t-rec#rec857237505 {
                                overflow: visible;
                            }
                            #rec857237505 .t396__artboard:not(.t396__artboard-flex),
                            #rec857237505 .t396__artboard:not(.t396__artboard-flex) .t396__carrier,
                            #rec857237505 .t396__artboard:not(.t396__artboard-flex) .t396__filter {
                                width: 100vw !important;
                                max-width: 100%;
                            }
                            #rec857237505 .t396__carrier,
                            #rec857237505 .t396__filter,
                            #rec857237505 .t396__artboard {
                                height: 1155px !important;
                            }
.hero-content {
    width: 875px;
    position: absolute!important;
    top: 230px;
}
.t1003__item a {
    color: #000000;
    text-decoration: unset;
}
.t-text {
    font-family: 'Inter/Kyiv',Arial,sans-serif;
    font-weight: 300;
    color: #ffffff!important;
}
.t1003__content-wrapper {
    opacity: 1!important;
}
section#steps {
    height: 538px !important;
    background: url(/img/58AM.png);
    background-position: center;
    background-size: cover;
}
section#blocks {
    color: #ff0000;
    z-index: 2;
    top: 567px;
    left: 0;
    width: 100%;
    /* height: 1034px; */
    background: url(/img/Airbrush-I.png) 100%!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
}
h2 {
    vertical-align: middle;
    color: #ff0000 !important;
    font-size: 43px !important;
    font-family: 'LOVE', Arial, sans-serif !important;
    line-height: 0.8;
    font-weight: 1000 !important;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.t396__elem {
    position: absolute;
    box-sizing: border-box;
    display: table;
    z-index: 0;
    top: 486px;
    left: calc(56% - 600px + 800px);
    width: 256px;
    height: 577px;
}
section#about {
    height: 455px;
}
.t-bgimg {
    width: 100%;
    height: 100%;
    max-width: 1190px;
    margin: 8px auto;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
    font-family: 'Inter/Kyiv';
    font-size: 19px;
    font-weight: 200;
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 50px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 20px -6px rgba(0, 0, 0, 0.1);
    transition: all 0.7s ease;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgb(236 236 236 / 32%);
    backdrop-filter: blur(19px);
}

.footer-column {
    flex: 1;
    min-width: 175px;
    max-width: 200px;
}
.footer-title {
    font-family: 'lovelab', Arial, sans-serif!important;
    font-size: 22px;
    font-weight: 800!important;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}
.site-footer {
    background: linear-gradient(135deg, #fffefc 0%, #fff9f5 100%);
    color: #2c2c2c;
    background: url(img/b8z.png) 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 20px 25px;
    font-family: 'Inter', 'Kyiv', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #ff0000);
    transition: width 0.3s ease;
}

.footer-column:hover .footer-title::after {
    width: 100%;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.3;
    opacity: 1;
    margin: 0;
    max-width: 280px;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 20px;
    color: #000000;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 20px;
    margin-left: -27px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #ff0000;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, #ffffff, #ffffff); */
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
}

.social-icons svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icons a:hover svg {
    filter: brightness(0) invert(1);
}

.footer-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #000000;
    padding: 14px 28px;
    border-radius: 25px;
    display: flex;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    border: none;
    cursor: pointer;
    font-size: 15px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 18px;
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.footer-bottom {
    max-width: 1200px;
    margin: 25px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    opacity: 0.8;
    padding-top: 20px;
}

.legal-info p {
    margin: 0;
    line-height: 1.6;
}

.policy-links {
    display: flex;
    gap: 20px;
}

.policy-links a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 6px;
    font-family: 'Inter/Kyiv';
    font-size: 20px;
    font-weight: 800;
}
.policy-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6b9d, #ff0000);
    transition: width 0.3s ease;
}

.policy-links a:hover {
    color: #ffffff;
}

.policy-links a:hover::after {
    width: 100%;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }

/* Адаптивность */
@media (max-width: 968px) {
    .footer-container {
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .footer-container, .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .policy-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-column {
        flex: 1 1 100%;
    }
    
    .site-footer {
        padding: 40px 15px 20px;
    }
}
@media (max-width: 1200px) {
.hero-content {
    width: auto!important;
    position: absolute!important;
    top: 230px;
}
.t-bgimg {
    width: 100%;
    height: 100%;
    max-width: 1190px;
    margin: 8px auto;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
    font-family: 'Inter/Kyiv';
    font-size: 19px;
    display: none;
    font-weight: 200;
}
.t396__elem {
    position: absolute;
    box-sizing: border-box;
    display: table;
    z-index: 0;
    top: 486px;
    left: calc(56% - 600px + 800px);
    width: 256px;
    height: 577px;
    display: none!important;
}
section#about {
    height: 622px!important;
    padding: 0px 0px!important;
}
.hero-content {
    width: auto!important;
    position: absolute!important;
    top: 158px!important;
}
section.hero-section {
    min-height: 359px!important;
}
.banner {
    font-family: 'WonderScript', sans-serif;
    font-size: 409px !important;
    color: #ff0007;
    position: absolute;
    top: 213px !important;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    filter: blur(2px);
    z-index: 0;
    opacity: 0.5;
}
.site-footer {
    padding: 0px!important;
}
h2 {
    vertical-align: middle;
    color: #ff0000 !important;
    /* font-size: 19px !important; */
    line-height: 1.55;
    font-weight: 1000 !important;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    margin: 0 auto!important;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
section#blocks {
    color: #ff0000;
    z-index: 2;
    top: 567px;
    left: 0;
    width: 100%;
    max-width: fit-content!important;
    /* height: 1034px; */
    background: url(/img/87d67f02-ec26-4dea-8521-6f0fa2068a69.png) 100%!important;
    padding: 13px 20px!important;
}
.title_main1 {
    vertical-align: middle;
    color: #ffffff!important;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    margin: 24px 0px 50px 0px!important;
}
section#steps {
    height: 100%!important;
    background: url(/img/58AM.png);
    background-position: center;
    background-size: cover;
}
section#tariffs {
    padding: 35px 0!important;
}
.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    max-width: 1173px;
    margin: 0 auto;
    padding: 0px;
    margin-top: 0px!important;
}
section#templates {
    padding: 35px 0!important;
}
.t-bgimg {
    width: 100%;
    height: 100%;
    max-width: 1190px;
    margin: 16px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
    font-family: 'Inter/Kyiv';
    font-size: 19px;
    display: flex;
    font-weight: 200;
    justify-content: center;
    align-items: center;
}
.about-content {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    top: auto;
    margin: 0 20px!important;
    margin-top: 0px!important;
}
.title_main {
    font-size: 14px!important;
    font-family: "Inter/Kyiv", Arial, sans-serif!important;
    line-height: 1.4;
    font-weight: 400!important;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    position: relative;
    top: 35px;
}
#rec857237504 .t-section__title {
    margin-bottom: 50px!important;
    margin-top: 27px!important;
}
.about-section {
  display: block;
  width: 100%;
  overflow: visible; /* чтобы ничего не пряталось */
}
.footer-container {
	max-width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0px;
	padding-bottom: 50px;
	position: relative;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 1.5rem;
	padding: 0rem;
	box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 20px -6px rgba(0, 0, 0, 0.1);
	transition: all 0.7s ease;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: rgb(236 236 236 / 32%);
	backdrop-filter: blur(19px);
	top: 50px;
	align-content: center;
	padding-top: 15px;
}
.footer-bottom {
	max-width: 1200px;
	margin: 25px auto 15px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 13px;
	opacity: 0.8;
	padding-top: 20px;
}
.footer-title {
    font-family: 'lovelab', Arial, sans-serif!important;
    font-size: 15px;
    font-weight: 800!important;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}
.footer-column.footer-brand {
    display: none;
}
.policy-links a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 6px;
    font-family: 'Inter/Kyiv';
    font-size: 15px!important;
    font-weight: 800;
}
.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 15px;
    margin-left: 33px;
}
.footer-button {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #000000;
    padding: 14px 34px;
    border-radius: 25px;
    display: flex;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgb(255 0 0 / 25%);
    border: none;
    cursor: pointer;
    font-size: 15px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 14px;
    width: 80px;
    flex-direction: column;
}
.social-icons {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    align-items: center;
}
.footer-column.footer-links {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: stretch;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #ff0000);
    transition: width 0.3s ease;
    display:none!important;
}
.footer-title {
    font-family: 'lovelab', Arial, sans-serif!important;
    font-size: 15px;
    font-weight: 800!important;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    margin-right: 28px!important;
}
.cta-section .tn-atom {
    max-width: 832px;
    margin: 0 20px!important;
    font-size: 21px!important;
    line-height: 1.6;
    color: #333;
    font-family: 'Zagolovki';
    font-weight: 900;
}
.glass-blocks-container {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 0px;
}
.card-number {
    position: absolute;
    top: -0.35rem !important;
    right: -0.35rem !important;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #ff0000, #b30000);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-weight: 800 !important;
    font-family: 'Inter/Kyiv';
    font-size: 20px;
}
}
.t585__content {
    display: block!important;
    overflow: hidden;
    -webkit-transition: max-height ease-in-out 0.3s,opacity ease-in-out 0.3s;
    -o-transition: max-height ease-in-out 0.3s,opacity ease-in-out 0.3s;
    transition: max-height ease-in-out 0.3s,opacity ease-in-out 0.3s
}
.t585__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.t585__content.open {
  max-height: 1000px; /* можно подстроить */
}
.t585__trigger-button[aria-expanded="true"] .t585__icon svg {
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.t585__trigger-button .t585__icon svg {
  transition: transform 0.3s;
}
.t1003__content-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
}

.t1003__content {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
