* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display Regular';
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

section  {
    width: 100vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

@font-face {
    font-family: 'SF Pro Display Regular';
    src: url('../fonts/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display Medium';
    src: url('../fonts/SF-Pro-Display-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display Heavy';
    src: url('../fonts/SF-Pro-Display-Heavy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display Bold';
    src: url('../fonts/SF-Pro-Display-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');

html {
    width: 100vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

body {
    background-color: #f4f4f4;
    overflow-x: clip;
}

input:focus {
    outline: 0;
    outline-color: transparent;
    border: 0
}

::-webkit-scrollbar {
    background-color: transparent;
    width: 10px;
    border: 0.5px solid #a3a3a347;
}

::-webkit-scrollbar-thumb {
    background-color: #3e4a51;
    border-radius: 8px;
    width: 6px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(236, 236, 236);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

#preloader video {
    max-width: 100%;
    max-height: 100%;
}

/* section_1 */

.section_1 {
    width: 100vw;
    height: 100vh;
}

.empty {
    width: 100%;
    height: 100%;
}



/* background */

.background {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: -20;

}

.connectUs {
    margin: 0 5px;
}

.whatsUs {
    margin: auto 5px;
}

.connectUs {
    transition: all 0.3s;
    cursor: pointer;
    flex-direction: row;
    align-items: center;
}

.connectUs svg {
    width: 2vw;
}

.connectUs:hover {
    transform: scale(1.05);
    transition: all 0.3s;
}

.offer-container {
    /* background-color: #1818188c; */
    color: #fff;
    border-radius: 0.3vw;
    border-top-left-radius: 1vw;
    border-top-right-radius: 1vw;
    text-align: center;
    width: 41.9vw;
    height: 90.4%;
    position: absolute;
    bottom: 5.5vh;
    right: 4.1vw;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offer-container h1 {
    font-size: 2.5vw;
    margin-bottom: 1.5vh;
    color: #fdfefe;
}

.highlight {
    color: #ff7043;
}

.offer-container p {
    font-size: 1.1vw;
    margin-top: 2vh;
}

.countdown {
    font-size: 36px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.countdown span {
    display: inline-block;
    min-width: 6vw;
    font-size: 4vw;
    transition: transform 0.3s;
    background: #ffffff17;
    border-radius: 5px;
    padding: 5px 10px;
}

.time-label {
    font-size: 16px;
    color: #aaa;
}

.presentationBtn {
    background-color: #94181F;
    color: #fff;
    letter-spacing: 0.07vw;
    padding: 1vw;
    border: none;
    border-radius: 5px;
    font-size: 0.9vw;
    margin-top: 4vh;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    user-select: none;
    /* new-year-styles */
    /* position: absolute;
    bottom: 25px; */
}

.presentationBtn:hover {
    background-color: #A92224;
    transform: scale(1.05);
    transition: all 0.3s;
    animation: none;
}

.presentationBtn:active {
    transform: scale(0.95);
    transition: all 0.3s;

    animation: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.macbook {
    width: 50vw;
    position: absolute;
    bottom: 13vh;
    right: 0;
    z-index: 1;
}

.macbook_image {
    width: 100%;
}


/* header */

.header {
    width: 80vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    padding: 4.63vh 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2vw;
}

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

.logo_image {
    width: 10vw;
}

.header_menu {
    margin-left: 3vw;
    display: flex;
}

.connectUs {
    display: flex;
    font-family: 'SF Pro Display Regular';
    color: #3F4A51;
}

.header_menu_point {
    font-family: 'SF Pro Display Regular';
    color: #3F4A51;
    display: flex;
    align-items: center;
}

.header_menu_point:not(:first-child) {
    margin-left: 0.6vw;

}

.header_menu_point:not(:last-child)::after {
    margin-left: 1vw;
    content: "·";
    font-family: 'SF Pro Display Medium';
    color: #AFC9F6;
  }

.number {
    margin-right: 1.5vw;
    color: #3F4A51;
}

.header_button {
    padding: 2vh 1.5vw;
    border: 1px solid #3F4A51;
    border-radius: 10px;
    color: #3F4A51;
}


/* hero_section */

.hero_section {
    width: 80vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    margin-top: 5vw;
    display: flex;
    flex-direction: column;
}

.text {
    display: inline-block;
    color: #1D1D1D;
}

.logo_title {
    font-size: 1.0938vw;
}

.logo_title_color {
    color: #5D7FC2;
}

.title {
    font-family: 'SF Pro Display Bold';
    font-size: 1.9792vw;
    line-height: 6.2762vh;
}

.subtitle {
    font-family: 'SF Pro Display Regular';
    font-size: 0.9375vw;
}

.feature_list {
    width: 40%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 3.7vh 0;
    margin-left: -5px;
    display: flex;
    flex-wrap: wrap;
}

.feature_list_point {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 5px;
    padding: 0.93vh 0.52vw;
    border: 1px solid #C0C0C0;
    border-radius: 10px;
    font-size: 0.9375vw;
    color: #C0C0C0;
}

.link_button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 3.7vh 2.08vw;
    background: linear-gradient(69.02deg, #6C9BF8 8.54%, #5D7EC0 91.46%);
    border-radius: 10px;
    font-size: 0.9375vw;
    color: #FEFEFE;
    cursor: pointer;
    transition: all 0.4s;
}

.link_button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 0.4s;
}

.link_button:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: all 0.4s;
}

/* .play_btn {
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* макбук видео */
.animated_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Снежинки */
.snowflakes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Чтобы снежинки не блокировали клики */
    overflow: hidden;
    z-index: 999; /* Выше контента */
}

/* Анимация падающих снежинок */
.snowflake {
    position: absolute;
    top: -10px; /* Начало анимации сверху */
    font-size: 10px; /* Размер снежинки, будет изменяться динамически */
    color: rgba(255, 255, 255, 0.9);
    animation: fall linear infinite;
    opacity: 0.8;
}

/* Разные скорости падения и вращения снежинок */
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}


/* section_2 */

.section_2 {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_2_mobile {
    display: none;
    flex-direction: column;
    justify-content: center;
    height: 60vh;
}

.whom {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    /* identical to box height, or 214% */

    display: flex;
    align-items: center;
    color: #8D8D8D;
    padding-left: 1vw;
}

.effective {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    /* or 128% */

    display: flex;
    align-items: center;

    color: #1D1D1D;
    padding-left: 1vw;
    padding-bottom: 1vh;
}

.mini_cards {
    width: 100%;
    overflow: auto;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
}



/* descroption */

.description {
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.56vw;
    align-items: center;
    margin: auto;
}

.back1 {
    background: url('../img/card_1.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.back1::after {
    content: 'Монтажные организации';
    color: #fff;
    font-size: 0.9375vw;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 4;
}

.back2 {
    background: url('../img/card_2.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.back2::after {
    content: 'Сервисные компании';
    color: #fff;
    font-size: 0.9375vw;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 4;
}

.back3 {
    background: url('../img/card_3.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.back3::after {
    content: 'ЖКХ';
    color: #fff;
    font-size: 0.9375vw;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 4;
}

.back4 {
    background: url('../img/card_4.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.back4::after {
    content: 'Управляющие компании';
    color: #fff;
    font-size: 0.9375vw;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 4;
}

.back5 {
    background: url('../img/card_5.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.back5::after {
    content: 'Автосервисы';
    color: #fff;
    font-size: 0.9375vw;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 4;
}

.back6 {
    background: url('../img/card_6.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.back6::after {
    content: 'Телекоммуникационные компании';
    color: #fff;
    font-size: 0.9375vw;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 4;
}

.description_text {
    width: calc(50% - 40px);
}

.description_card {
    width: 18.75vw;
    height: 23.0126vh;
    padding: 0 0 2vh 2vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    border-radius: 15px;
    color: #ffffff;
}

.description_card::before {
    content:'';
    background: linear-gradient(0deg, rgba(171,194,237,1) 0%, rgba(255,255,255,0) 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 2;
}


/* section_3 */
.section_3 {
    width: 100vw;
    height: 130vh;
    background-image: url('../img/section_3_bckg.png');
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: 95vw;
}

.macbook2 {
    width: 45vw;
    position: absolute;
    left: -10vw;
    top: 40vh;
}

.flex_settings {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1.5625vw;
    width: 50vw;
    white-space: normal;
}

.bold_title {
    font-size: 1.7708vw;
    font-weight: bold;
    color: #1D1D1D;
}

.main_posib_title {
    font-size: 1.0938vw;
    color: #1D1D1D;
    font-style: normal;
    font-weight: 700;
    line-height: 2.6151vh;
    display: flex;
    align-items: center;
    margin-bottom: 1.046vh;
}

.little_font {
    font-weight: 400;
    font-size: 0.9375vw;
    color: #444444;
    font-style: normal;
    font-weight: 400;
    line-height: 2.9289vh;
    display: flex;
    align-items: center;
}

.posib_container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.possib_icon {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background: #FFFFFF;
    border: 2px solid #B6CBEC;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.possibility {
    margin-left: 50vw;
}

.posib_container {
    margin-left: 45vw;
    margin-top: 5vh;
}

.CRM {
    margin-left: 43.5vw;
}

.planner {
     margin-left: 44.9vw;
}

.warehouse {
     margin-left: 45vw;
}

.helpdesk {
     margin-left: 44.3vw;
}

.instruments {
     margin-left: 42vw;
}

.posib_icon_img {
    width: 60%;
    height: auto;
}

.mg_up {
    margin-top: -4px;
}

/* section_4 */

.section_4 {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-between;

}


/* supply */

.supply {
    width: 80vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 8vh 5vw;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    background: white;
    border-radius: 40px;
}

.mockup_supply_image {
    width: 22vw;
    position: absolute;
    left: 3vw;
    bottom: -1vh;
}

.supply_information {
    width: 62%;
}

.supply_text {
    color: #1D1D1D;
}

.supply_text_title {
    font-family: 'SF Pro Display Bold';
    font-size: 2.5vw;
}

.supply_text_title span {
    font-family: 'SF Pro Display Bold';
    color: #5D7FC2;
}

.supply_text_subtitle {
    margin-top: 2vh;
    font-family: 'SF Pro Display Regular';
    font-size: 21px;
    color: rgb(107, 107, 107);
    font-size: 1vw;
}

.ask {
    margin-top: 4vh;
    display: flex;
    flex-direction: row;
    gap: 2vw;
}

.ask_number {
    width: 100%;
    height: 40%;
    padding: 3vh 0;
    padding-left: 1vw;
    border-radius: 10px;
    font-size: 1vw;
    color: rgb(107, 107, 107);
    border: 1px solid transparent;
    background-color: #F0F0F0;
}

#callback_phone {
    margin-top: 2vh;
}

.ask_button {
    width: 45%;
    height: 40%;
    padding: 3vh 0;
    background: linear-gradient(69.02deg, #6C9BF8 8.54%, #5D7EC0 91.46%);
    border-radius: 10px;
    font-size: 1vw;
    color: #FEFEFE;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s;

}

.ask_button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 0.4s;
}

.ask_button:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: all 0.4s;
}

.supply_legal {
    font-size: 13px;
    color: rgb(141, 141, 141);
    margin-top: 1vh;
    font-size: 0.7vw;
}

/* section_5 */
.section_5 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.plans {
    width: 85vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.plans_font {

    font-style: normal;
    font-size: 1.6667vw;
    font-weight: 600;
    color: #1D1D1D;
}

.tarrif {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 3vh;
    padding: 3vw;
    background: white;
    border-radius: 40px;
    -webkit-filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.05));
}

.tarrif_name {
    font-family: 'SF Pro Display Bold';
    color: #1D1D1D;
    font-size: 2vw;
}

.tarrif_name_micro {
    font-family: inherit;
    color: #2EA72C;
}

.tarrif_name_small {
    font-family: inherit;
    color: #2C64A7;
}

.tarrif_name_average {
    font-family: inherit;
    color: #747474;
}

.tarrif_description {
    width: 20vw;
    color: #1D1D1D;
}

.description_point {
    margin-top: 5vh;
    font-size: 1.2vw;
}

.description_point_title {
    font-family: 'SF Pro Display Bold';
}

.description_point_information {
    margin-top: 1.2vh;
}

.information_point_text {
    margin-left: 0.5vw;
}

.information_point {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.point_image {
    width: 1vw;
}

.tarrif_price {
    margin-top: 1vh;
    font-size: 2.2vw;
    font-family: 'SF Pro Display Bold';
}

.tarrif_price span {
    font-size: 1vw;
    margin-left: 0.6vw;
}

.tarrif_micro_button {
    width: 20vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 6vh;
    padding: 20px 0;
    background: #D8EFD7;
    border: 2px solid #8ACE88;
    font-family: 'SF Pro Display Bold';
    font-size: 1.5vw;
    color: #2EA72C;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.tarrif_small_button {
    width: 20vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 6vh;
    padding: 20px 0;
    background: #D0DBE9;
    border: 2px solid #7C9DC5;
    font-family: 'SF Pro Display Bold';
    font-size: 1.5vw;
    color: #2C64A7;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.tarrif_average_button {
    width: 20vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 6vh;
    padding: 20px 0;
    background: #E3E3E3;
    border: 2px solid #C3C3C3;
    font-family: 'SF Pro Display Bold';
    font-size: 1.5vw;
    color: #747474;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.tarrif_micro_button:hover,
.tarrif_small_button:hover,
.tarrif_average_button:hover {
    transition: all 0.3s;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.tarrif_micro_button:active,
.tarrif_small_button:active,
.tarrif_average_button:active {
    transition: all 0.3s;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

/* section_5_1 */
.section_5_1 {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #f4f4f4;
}

.feature_blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 80%;
    position: relative;
    z-index: 5;
}

.feature_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 32%;
    padding: 4vw;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    font-family: 'SF Pro Display Regular', sans-serif;
}

.feature_block:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.feature_block::before {
    content: attr(data-title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    white-space: normal;
    pointer-events: none;
    font-size: 14px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.feature_block:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.feature_icon {
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 5px;
    background-color: #5D7FC2;
    margin-right: 10px;
}

.feature_icon img {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

/* Добавляем перенос текста на новой строке для маленьких экранов */
@media (max-width: 768px) {
    .feature_block {
        width: 100%;
    }

    .feature_block::before {
        white-space: normal;
        width: 80%;
        text-align: center;
    }
}

.feature_text p {
    margin: 5px 0;
    text-align: start;
    font-size: 18px;
    color: #333;
}

.feature_text strong {
    color: #5D7FC2;
    font-weight: bold;
}

/* section_5_2 */

.section_5_2 {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
}

.doublePhoneInfo {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #5B8BCD;
    padding: 0 5%;
    position: relative;
}

.doublePhone  {
    position: absolute;
    width: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-47%, -50%);
}

.horizontInfoCard {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 4vh;

}

.resultSpan {
    font-size: 2.5vw;
    color: whitesmoke;
}

.giveCard {
    width: 30vw;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    padding: 2vw;
    background-color: #fff;
    border-radius: 10px;
}

.giveCard span {
    font-size: 1.5vw;
    margin: 2px 0;
    color: #333;
    font-weight: normal;
}

.giveCard span strong {
    font-size: 2.5vw;
    color: #58AB42;
    font-weight: normal;
}

.giveCard .bold {
    font-size: 1.5vw;
    color: #333;
    font-weight: bold;
}

/* section_6 */
.section_6 {
    width: 100vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7vh 0;
}

.wrapper {
    width: 75vw;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin-bottom: 30px;
}

/* слайдер */

.some_cards {
    width: 39.0625vw;
    height: 36.6109vh;
    min-width: 0;
    display: flex;
    flex-direction: row;
}

.review_card {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 4.7071vh 2.8646vw;
    box-shadow: 0px 3px 2.9px rgba(0, 0, 0, 0.1);
}

.first_text_line {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 2.0921vh  1.0417vw;
    border-bottom: 1px solid #EFEFEF;
    min-width: 0;
}

.vk {
    width: 1.1458vw;
    height: 2.3013vh;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 0.7813vw;
}

.person {
    font-size: 0.9375vw;
    font-weight: 600;
    margin-right: 0.7813vw;
    color: #1D1D1D;
}

.company_name {
    font-size: 0.9375vw;
    font-weight: 500;
    color: #C0C0C0;
}

.main_response_txt {
    font-size: 0.8854vw;
    font-weight: 400;
    line-height: 3.1381vh;
    display: flex;
    align-items: center;
    width: 100%;
    height: 80%;
    padding: 2.0921vh  1.0417vw;
    white-space: normal;
}

.slider {
    width: 80%;
}

.slick-slide {
    margin: 0px 0.7813vw;
}

/* section_7 */

.section_7 {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.screens {
    width: 85vw;
    height: 80vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screen_2 .bottom_info, .screen_6 .bottom_info {
    justify-content: normal;
}

.screen-active {
    display: flex;
}

.top_info {
    display: flex;
    flex-direction: row;
    height: 47vh;
}

.main_screen {
    height: 100%;
    width: 50%;
}

.big_screen {
    height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.part_info {
    width: 50%;
    margin-left: 1.0417vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.part_title {
    font-size: 0.9375vw;
    font-weight: 600;
    margin-bottom: 1.569vh;
    color: #1D1D1D;
}

.part_subtitle {
    width: 100%;
    white-space: normal;
    font-size: 0.7813vw;
    color: #444444;
    line-height: 2.6151vh;
    display: flex;
    align-items: center;
}

.nav_btns {
    display: flex;
    flex-direction: row;
    color: #000;
    font-size: 0.9375vw;
}

.nav_btns span {
    color: #C0C0C0;
    margin-left: 0.2604vw;
    font-size: 0.9375vw;
}

.arrow_left, .arrow_right {
    height: 1.6736vh;
    width: 1.6667vw;
}

.mobile {
    display: none;
}

.arrow {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.arrow:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    transition: all 0.3s;
}

.bottom_info {
    height: 15vh;
    width: 100%;
    margin-top: 2.0921vh;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bottom_info::-webkit-scrollbar {
    background-color: transparent;
    height: 0;
}

.bottom_info a {
    display: flex;
    width: 20%;
    height: 120px;
}

.lowq {
    margin-right: 3vw;
}

.lil_screen:not(:last-child) {
    height: 100%;
    margin-right:  0.7813vw;
}

/* section_8 */

.section_8 {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: url('../img/last_section.png') no-repeat;
    background-size: contain;
    position: relative;
    overflow: hidden;
}

.contact_us {
    padding: 5vh 5vw;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact_info {
    display: flex;
    flex-direction: column;
    width: 40vw;
}

.offer {
    margin: 2.0921vh 0px;
    font-weight: 400;
    font-size: 0.8333vw;
    line-height: 2.6151vh;
    display: flex;
    align-items: center;
    color: #6B6B6B;
}

.contacts {
    width: 100%;

}

.contact_atom {
    padding: 1.046vh 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 8.9603vh;
}

.social-media .contact_icon {
    background-color: transparent;
}

.social-media .ico {
    width: 100%;
}

.social-media .contact_atom {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.social-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: center;
    flex-direction: column  ;
}

.social-link:hover {
    text-decoration: none;
    color: inherit;
}

.contact_atom:not(:last-child) {
    border-bottom: 1px solid #A3A3A3;
}

.contact_icon {
    width: 2.8646vw;
    height: 5.7531vh;
    background-color: #5C80C6;
    border-radius: 50%;
    margin-right:  0.7813vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ico {
    width: 50%;
}

.contact_type {
    font-weight: 500;
    font-size:  0.7813vw;
    color: #A3A3A3;
    margin-bottom: 0.523vh;
}

.contact_main {
    font-weight: 500;
    font-size: 0.9375vw;
    display: flex;
    align-items: center;
    letter-spacing: 0.09em;
    color: #6B6B6B;

}

.contact_form {
    width: 35vw;
    margin-left: 10vw;
    border-radius: 30px;
    padding: 1.569vh 0.7813vw;
    background-color: #ffffff;
    height: 100%;
    position: relative;
    z-index: 2;
}

#phone_form {
    margin: 0;
    height: 70%;
    z-index: 13;
}

.phone_form_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: #00000085;
    z-index: 10;
}

.border_block {
    border-radius: 15px;
    border: 1px solid #5C80C6;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 10%;
}

.request_font {
    font-weight: 700;
    font-size: 1.5625vw;
    line-height: 4.7071vh;
    color: #1D1D1D;
    margin-top: 5vh;
    margin-bottom: 4vh;
}

.contact_input {
    height: 8.3682vh;
    border-radius: 10px;
    padding: 0.523vh 0.5208vw;
    background-color: #F0F0F0;
    color: #6B6B6B;
    font-size: 0.9375vw;
    margin-top: 2.0921vw;
    outline: none;
    border: 1px solid transparent;
    width: 100%;
}


.contact_btn {
    margin-top: 4.1841vh;
    font-weight: 400;
    font-size: 0.7813vw;
    line-height: 6.2762vh;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: linear-gradient(65.78deg, #6C9BF8 8.53%, #5D7EC0 91.47%);
    border-radius: 5px;
    border-bottom: 4px solid #2C59B3;
    transition: all 0.4s;
    cursor: pointer;
}

.contact_btn:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    transition: all 0.4s;
}

.agreement {
    font-weight: 500;
    font-size: 0.6771vw;
    line-height: 2.0921vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #939393;
    margin-top: 1.046vh;
}

.footer {
    height: 20vh;
    border-top: 2px solid #C0C0C0;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer_txt {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 0.6771vw;
    line-height: 2.6151vh;
    display: flex;
    align-items: center;
    color: #8A8A8A;
    margin-bottom: 1.046vh;
    text-decoration-line: underline;
}

.footer_txt:last-child {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    cursor: pointer;
}

.circle {
    position: absolute;
    width: 67.7083vw;
    height: 135.9833vh;
    top: 20vh;
    right: -10vw;
    z-index: 0;
    background-color: #ABC2ED;
    border-radius: 50%;
}

/* Всплывающее уведомление и проигрыватель */
.alert_to_video {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: none;
    position: fixed;
    bottom: 40px;
    left: 40px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation-name: slideUpFadeIn;
    animation-duration: 0.5s;
    flex-direction: row;
    align-items: center;
    z-index: 6;
}


.play_btn {
    width: 100px;
    height: 100px;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
    animation: scaleEffect 1.5s infinite;
}

.play_btn .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes scaleEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.video_text {
    font-size: 1vw;
    color: #000;
    margin-left: 10px;
    user-select: none;
}

.video_text span {
    font-weight: bold;
    color: #B4271B;
    cursor: pointer;
    text-decoration: underline;
}

.close {
    margin-left: auto;
    cursor: pointer;
    font-size: 20px;
    background: #fff;
    border-radius: 50%;
    margin-left: 20px;
    padding: 4px 10px;
    border: 1px solid #ddd;
}

@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.smallAlertVideo {
    display: none;
}


/* Стили для модального окна */
.video_modal {
    display: none; /* по умолчанию скрыто */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* полупрозрачный черный фон */
    justify-content: center;
    align-items: center;
    z-index: 6;
}

/* Стили для видео */
video {
    max-width: 90%;
    max-height: 80%;
    /* стили для встраивания в мак */
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    border-top-left-radius: 1vw;
    border-top-right-radius: 1vw;
}

/* Стили для кнопки закрытия модального окна */
.close_video {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4vw;
    cursor: pointer;
    color: #fff;
}

.ask .iti {
    height: 100%;
}

#phone_form .iti {
    width: 100%;
    margin-top: 5px;
}

.border_block .iti {
    width: 100%;
    margin-top: 5px;
}

.whatsapp-icon {
    display: none;
}

@media (max-width: 959px) {

    .whatsapp-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: #ffffff;
        z-index: 6;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .whatsapp-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }

    .lil_screen {
        max-width: 130px;
    }
    .big_screen {
        max-height: 130px;
    }
    .mobile {
        display: flex;
    }

    .bottom_info {
        align-items: center;
    }

    .bottom_info a {
        display: flex;
        height: 80px;
        width: fit-content;
        margin-right: 10px;
    }

    .close_video {
        font-size: 11vw;
    }

    .part_title_cont {
        display: flex;
        justify-content: space-evenly;
    }

    .section_1 {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .section_2 {
        display: none;
    }

    .section_2_mobile {
        display: flex;
        padding: 5vw;
    }

    .section_5 {
        padding: 5vh 0 0 0;
    }

    .section_5 {
        padding: 5vh 0 0 0;
    }

    .background {
        display: none;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0;
    }

    .description_card {
        min-width: 37vw;
        margin-right: 4vw;
    }

    .mini_cards {
        padding: 1vw;
    }

    .mini_cards::-webkit-scrollbar {
        background-color: transparent;
        height: 2px;
        border: 0.5px solid #a3a3a347;
    }

    .mini_cards::-webkit-scrollbar-thumb {
        background-color: #3e4a51;
        border-radius: 8px;
        height: 2px;
    }


    .macbook {
        position: static;
        width: 95vw;
    }

    .section_1 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .logo {
        display: none;
        width: 0;
    }

    .header_menu {
        display: none;
        width: 0;

    }

    .number_and_header_button {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .number {
        font-family: 'SF Pro Display Bold';
        font-size: 3.2vw;
    }

    .header_button {
        padding: 2vh 3vw;
        background: #ABC2ED;
        border: 0;
        font-size: 3.2vw;
    }

    .logo_title {
        font-size: 3vw;
    }

    .title {
        font-family: 'SF Pro Display Bold';
        font-size: 5.4vw;
        line-height: 1.3;
    }

    .subtitle {
        font-family: 'SF Pro Display Regular';
        font-size: 3vw;
    }

    .feature_list {
        width: 100%;
    }

    .feature_list_point {
        margin: 4px;
        padding: 1vh 2.5vw;
        border-radius: 8px;
        font-size: 4vw;
    }

    .link_button {
        width: 100%;
        padding: 3.7vh 8vw;
        background: linear-gradient(69.02deg, #6C9BF8 8.54%, #5D7EC0 91.46%);
        border-radius: 10px;
        font-size: 5vw;
        color: #FEFEFE;
    }

    .supply {
        padding: 10vw;
        flex-direction: row;
    }

    .supply_information {
        width: 100vw;
    }

    .supply_image {
        width: 30vw;
    }

    .supply_text_title {
        font-size: 6vw;
    }

    .supply_text_subtitle {
        font-size: 4vw;
    }

    .mockup_supply_image {
        display: none;
    }

    .ask {
        margin-top: 4vh;
        display: flex;
        flex-direction: column;
        gap: 2vw;
        width: 100%;
    }

    .ask_number {
        width: 100%;
        font-size: 4vw;

    }

    .tarrif {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin-top: 3vh;
        padding: 8vw;
        background: white;
        border-radius: 40px;
        -webkit-filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.05));
        filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.05));
    }

    .tarrif_name {
        font-family: 'SF Pro Display Bold';
        color: #1D1D1D;
        font-size: 8vw;
    }

    .tarrif_description {
        width: 100%;
        color: #1D1D1D;
    }

    .description_point {
        margin-top: 5vh;
        font-size: 5vw;
    }

    .description_point_information {
        margin-top: 1.2vh;
    }

    .tarrif_price {
        margin-top: 1vh;
        font-size: 8vw;
        font-family: 'SF Pro Display Bold';
    }

    .tarrif_price span {
        font-size: 6vw;
        margin-left: 1vw;
    }

    .tarrif_micro_button {
        width: 100%;
        font-size: 6vw;
    }

    .tarrif_small_button {
        width: 100%;
        font-size: 6vw;
    }

    .tarrif_average_button {
        width: 100%;
        font-size: 6vw;
    }

    .point_image {
        width: 3vw;
    }

    .information_point_text {
        margin-left: 2vw;
    }

    .effective {
        font-size: 5.5143vw;
        line-height: 5.8324vh;
        margin: 1vh 0 2vh 0;
    }

    .whom {
        font-size: 2.8846vw;
    }

    .back1::after, .back2::after, .back3::after, .back4::after, .back5::after, .back6::after {
        font-size: 2.6375vw;
        z-index: 2;
    }

    .macbook2 {
        display: none;
    }

    .section_3 {
        height: 100vh;
        background: #f4f4f4;
        align-items: center;
        padding: 5vh 0;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .posib_container {
        margin: auto;
        width: 90vw;
        justify-content: center;
        margin-bottom: 5vh;
    }

    .possibility {
        margin-left: 0;
        width: 90vw;

    }

    .possibility .bold_title, .possibility .little_font {
        margin-left: 8vw;
    }

    .possibility .little_font {
        margin-bottom: 3vh;
    }

    .little_font {
        font-size: 3.8461vw;
        line-height: 3.3653vh;
    }

    .possibility .bold_title {
        font-size: 5.2884vw;
        margin-bottom: 1vh;
    }

    .main_posib_title {
        font-size: 4.3269vw;
        margin-bottom: 1vh;
        line-height: 4.2151vh;
    }

    .possib_icon {
        width: 14vw;
        height: 14vw;
        margin-right: 2vw;

    }

    .section_4 {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .slider {
        width: 140%;
    }

    .person {
        font-size: 3.0375vw;
    }

    .first_text_line  {
        flex-direction: column;
    }

    .main_response_txt {
        font-size: 2.7854vw;
        line-height: 3.2381vh;
    }

    .company_name {
        font-size: 2.6375vw;
        text-align: center;
    }

    .vk {
        width: 4vw;
        height: 4vw;
    }

    .plans_font {
        font-size: 4.2667vw;
        margin-bottom: 3vw;
    }

    .section_6 {
        height: 80vh;
        justify-content: center;
        margin-top: -10vh;
    }

    .wrapper {
        width: 95vw;
    }

    /* .bottom_info {
        display: none;
    } */

    /*сделал кот 20.05.19:29*/

    .section_5 {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        min-height: 100vh;
    }

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

    .part_info {
        width: 80%;
    }

    .main_screen {
        width: fit-content;
        margin-bottom: 3vw;
        height: fit-content;
    }

    .part_title {
        font-size: 3.3375vw;
        text-align: center;
    }

    .part_subtitle {
        font-size: 2.6813vw;
        line-height: 3.2151vh;
    }

    .nav_btns {
        display: none;
    }

    .section_7 {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        min-height: 20vh;
        margin-bottom: 2vh;
    }

    .top_info {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .screens {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .circle {
        position: absolute;
        width: 190vw;
        height: 110vh;
        bottom: -55vh;
        right: -45vw;
        z-index: -1;
        background-color: #ABC2ED;
        border-radius: 50%;
    }

    .contact_us {
        flex-direction: column;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        align-items: center;
    }

    .section_8 {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        min-height: 100vh;
    }

    .contact_info {
        width: 70vw;
    }

    .offer {
        font-size: 2.6333vw;
        line-height: 3.4151vh;
    }

    .circle {
        top: 60%;

    }

    .contact_icon {
        width: 8vw;
        height: 8vw;
    }

    .contact_atom {
        height: 12.2603vh;
    }

    .double {
        margin-left: 5vw;
    }

    .contact_type {
        font-size: 2.2813vw;
        margin-bottom: 2vh;
    }

    .contact_main {
        font-size: 2.9375vw;
    }

    .contact_form {
        margin-top: 5vh;
        margin-left: 0;
        border-radius: 3vw;
        width: 75vw;
        height: 70vh;
        padding: 1.869vh 2.8813vw;
    }

    .request_font {
        font-size: 3.6625vw;
    }

    .contact_input {
        height: 8.3682vh;
        border-radius: 10px;
        padding: 1.023vh 2.4208vw;
        background-color: #F0F0F0;
        color: #6B6B6B;
        font-size: 2.7375vw;
        margin-top: 2.0921vw;
        outline: none;
        border: 1px solid transparent;
    }

    .contact_btn {
        font-size: 2.3813vw;
    }

    .agreement {
        font-size: 3.2771vw;
        margin: 2vh 0;
    }

    .footer {
        align-items: center;
    }

    .footer_txt {
        font-size: 2.8771vw;
    }

    .header {
        order: 3;
    }

    .hero_section {
        order: 2;
    }

    .macbook {
        order: 1;
        margin-top: 5vh;
        position: relative;
        bottom: 0;
        left: 2.5vw;
    }

    .offer-container {
        width: 78.9vw;
        height: 90.4%;
        bottom: 5.5vh;
        right: 7.8vw;
    }

    .offer-container h1 {
        font-size: 5vw;
    }

    .countdown span {
        font-size: 9vw;
    }

    .offer-container p {
        font-size: 2.1vw;
    }

    .presentationBtn {
        font-size: 2.5vw;
        margin-top: 6vh;
    }

    .feature_block {
        width: 48%;
    }

    .section_5_2 {
        height: 145vh;
        overflow: hidden;
    }

    .resultSpan {
        margin-top: 4vh;
    }

    .horizontInfoCard {
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 4vh;
    }

    .giveCard {
        width: 42vw;
    }

    .giveCard span {
        font-size: 1.9vw;
    }

    .giveCard .bold {
        font-size: 1.8vw;

    }

    .giveCard span {
        font-size: 1.9vw;
    }

    .doublePhoneInfo {
        justify-content: start;
    }

    .doublePhone {
        width: 230vw;
        transform: translate(-47%, -37%);
    }

    .link_button {
        text-align: center;
    }

    .alert_to_video {
        width: 93.9333vw;
    }

    .play_btn {
        width: 15.8229vw;
        height: 12.8229vw;
    }

    .alert_to_video {
        width: 92.7333vw;
        padding: 4vw;
    }

    .video_text {
        font-size: 4.12vw;
    }

    .close {
        width: 7vw;
        height: 7vw;
        font-size: 4.9vw;
    }

    .create_new_system {
        width: 95vw;
    }

    .ask_button {
        font-size: 2vw;
        width: 100%;
    }

    .supply_legal {
        font-size: 2.2vw;
    }

    .smallAlertVideo {
        display: flex;
        margin: 0 0 3.7vh 0;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        flex-direction: row;
        align-items: center;
    }

    .smallAlertVideo .close {
        display: none;
    }

    .play_btn .wave {
        width: 90%;
        height: 100%;
    }

    .play_btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .play_btn svg {
        width: 10vw;
        height: 10vw;
    }

}

@media (min-width: 2560px) {
    .description  {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .bold_title {
        font-size: 2.1708vw;
        margin-bottom: 5px;
    }

    .main_posib_title {
        font-size: 1.4938vw;
    }

    .little_font {
        font-size: 1.2375vw;
    }

    .instruments {
        margin-left: 40.9vw;
    }

    .possib_icon {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    .planner {
        margin-left: 45.4vw;
    }

    .warehouse {
        margin-left: 45.5vw;
    }

    .posib_container {
        margin-top: 6vh;
    }

    .flex_settings {
        margin-left: 2.2625vw;
    }

    .possibility {
        margin-left: 50vw;
    }

    .supply_text_subtitle {
        font-size: 1.17vw;
    }

    .supply_legal {
        font-size: 1vw;
    }

    .plans_font {
        margin-bottom: 1vh;
    }

    .presentationBtn {
        bottom: 60px;
    }

    .wrapper {
        -webkit-transform: scale(1.2) !important;
        transform: scale(1.2) !important;
        margin-top: 3vh;
    }

    .part_text {
        margin-top: 2vh;
    }

    .part_title {
        font-size: 1.6375vw;
    }

    .part_subtitle {
        font-size: 1.1813vw;
        line-height: 3.0151vh;
    }

    .offer {
        font-size: 1.0333vw;

    }

    .contact_type {
        font-size: 1.2813vw;
        margin-bottom: 1vh;
    }

    .contact_main {

        font-size: 1.1375vw;
    }

    .contact_icon {
        width: 3.3646vw;
    }

    .footer {
        padding: 3vw;
    }

    .footer_txt {
        font-size: 1.0771vw;
    }

    .footer a:first-child {
        text-decoration: none;
    }

    .request_font {
        font-size: 1.9625vw;
        line-height: 5.2071vh;
    }

    .mockup_supply_image {
        width: 26vw;
        left: 1vw;
        bottom: -4vh;
    }

    .supply_image {
        width: 11vw;
    }

    .feature_list_point {
        font-size: 1.1375vw;
    }

    .video_text {
        font-size: 1.72vw;
    }

    .play_btn {
        width: 8.8229vw;
        height: 5.8229vw;
    }

    .alert_to_video {
        width: 45.4333vw;
        padding: 2.7vw;
    }

    .close {
        width: 3vw;
        height: 3vw;
        font-size: 2.2vw;
        top: -1.43056vw;
    }

    .close {
        margin-left: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .play_btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .play_btn svg {
        width: 4.5vw;
        height: 4.5vw;
    }

    .play_btn .wave {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 110%;
    }

    .alert_to_video {
        width: 35.4333vw;
        padding: 1vw;
    }

    .alert_to_video {
        width: 35.4333vw;
        padding: 1vw;
    }
}

@media (max-width: 834px) {
    .section_5_2 {
        height: 127vh;
    }

    .doublePhone {
        width: 180vw;
        transform: translate(-47%, -27%);
    }

    .resultSpan {
        font-size: 4vw;
        margin-top: 4vh;
    }

    .giveCard span {
        font-size: 2.5vw;
    }

    .giveCard span strong {
        font-size: 4vw;
    }

    .giveCard .bold {
        font-size: 2.5vw;
    }

    .giveCard span {
        font-size: 2.5vw;
    }

    .offer-container {
        width: 78.9vw;
        height: 86%;
        bottom: 5.5vh;
        right: 7.8vw;
    }

    .offer-container h1 {
        font-size: 5vw;
    }

    .offer-container p {
        font-size: 2.7vw;
    }

    .presentationBtn {
        font-size: 3.3vw;
        margin-top: 3vh;
    }

    .feature_list_point {
        margin: 5px;
        padding: 1vh 2vw;
        border-radius: 8px;
        font-size: 3vw;
    }



}

@media (max-width: 430px) {
    .offer-container {
        width: 79.3vw;
        height: 87.7%;
        bottom: 3.2vh;
        right: 7.8vw;
    }

    .offer-container h1 {
        font-size: 5vw;
        margin-bottom: 0;
    }

    .presentationBtn {
        font-size: 3vw;
        margin-top: 2vh;
        bottom: 10px;
    }

    .countdown {
        margin-bottom: 10px;
    }

    .countdown span {
        font-size: 7vw;
    }

    .offer-container p {
        font-size: 2.4vw;
        margin-top: 0;
    }

    .feature_block {
        width: 100%;
    }

    .resultSpan {
        font-size: 6vw;
        margin-top: 4vh;
    }

    .giveCard span strong {
        font-size: 6vw;
    }

    .giveCard .bold {
        font-size: 3vw;
    }

    .giveCard span {
        font-size: 3vw;
    }

    .giveCard {
        padding: 3vw;
    }

    .section_5_2 {
        height: 115vh;
    }

    .doublePhone {
        width: 250vw;
        transform: translate(-47%, -24%);
    }

    .contact_type {
        font-size: 3.8813vw;
        margin-bottom: 3vh;
    }

    .contact_main {
        font-size: 4.3375vw;
    }

    .contact_icon {
        width: 10vw;
        height: 10vw;
    }

    .offer {
        font-size: 3.6333vw;
        line-height: 2.4151vh;
    }
}