@font-face {
    src: url('../fonts/Roboto-Regular.ttf');
    font-family: 'Roboto-Regular';
}
@font-face {
    src: url('../fonts/Roboto-Medium.ttf');
    font-family: 'Roboto-Medium';
}
@font-face {
    src: url('../fonts/Roboto-Bold.ttf');
    font-family: 'Roboto-Bold';
}
@font-face {
    src: url('../fonts/Roboto-Light.ttf');
    font-family: 'Roboto-Light';
}

html[lang="ru-RU"], html[lang="ru-RU"] input, html[lang="ru-RU"] textarea,
html[lang="en-US"], html[lang="en-US"] input, html[lang="en-US"] textarea,
html[lang="ru-RU"] h1, html[lang="ru-RU"] h2, html[lang="ru-RU"] h3,
html[lang="ru-RU"] h4, html[lang="ru-RU"] h5, html[lang="ru-RU"] h6, 
html[lang="ru-RU"] .bold_text, html[lang="en-US"] h1, html[lang="en-US"] h2, 
html[lang="en-US"] h3, html[lang="en-US"] h4, html[lang="en-US"] h5,
html[lang="en-US"] h6 {
    font-family: 'Roboto-Regular';
    font-weight: 400;
}
html[lang="hy-AM"], html[lang="hy-AM"] input, html[lang="hy-AM"] textarea,
html[lang="hy-AM"] h1, html[lang="hy-AM"] h2, html[lang="hy-AM"] h3,
html[lang="hy-AM"] h4, html[lang="hy-AM"] h5, html[lang="hy-AM"] h6{
    font-family: 'Roboto-Regular';
    font-weight: 400;
}
html[lang="hy-AM"] .bold_text, html[lang="hy-AM"] b, html[lang="hy-AM"] strong{
    font-family: 'Roboto-Bold';
}
html[lang="en-US"] .bold_text,
html[lang="en-US"] strong, .html[lang="en-US"] b,
html[lang="ru-RU"] strong, html[lang="ru-RU"] b{
    font-family: 'Roboto-Bold';
}
html[lang="hy-AM"] .medium_text{
    font-family: 'Roboto-Medium';
}
html[lang="ru-RU"] .medium_text, html[lang="en-US"] .medium_text{
    font-family: 'Roboto-Medium';
}
html[lang="hy-AM"] .regular_text{
    font-family: 'Roboto-Regular';
}
html[lang="hy-AM"] .light_text{
    font-family: 'Roboto-Light';
    font-weight: 300;
}
html[lang="ru-RU"] .regular_text, html[lang="en-US"] .regular_text{
    font-family: 'Roboto-Regular';
}
html[lang="ru-RU"] .light_text, html[lang="en-US"] .light_text{
    font-family: 'Roboto-Light';
}
 
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    transition: all 300ms ease-out;
}
*:hover {
    transition: all 0.3s ease-in;
}
html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: var(--white);
}
img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
:root {
    --black: #000;
    --greyFont: rgba(255, 255, 255, 0.80);
    --fontWhite: #282828;
    --gold: #D9A860;
    --boldGold: #9D7438;
    --grayBack: #111;
    --white: #FFF;
    --background: #FAFAFA;
}
:root {
    --twelve: 12px;
    --forteen: 14px;
    --sixteen: 16px;
    --eighteen: 18px;
    --twenty: 20px;
    --fontTwentyTwo: 22px;
    --twofour: 24px;
    --thirty: 30px;
    --threeFive: 35px;
    --titleFont: 50px;
    --bigTitle: 55px;
}
.wrapper {
    max-width: 1540px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.sto_ {
    width: 100%;
}
.full_wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
.d_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body{
    color: var(--white);
    background-color: var(--black);
}
ul, ol{
    padding-left: 20px;
}
textarea {
    resize: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    background-clip: padding-box;
    transition: all 300ms ease-out;
    cursor: pointer;
}
.scrollbar::-webkit-scrollbar{
    height: 2px;
    width: 2px;
}
.scrollbar::-webkit-scrollbar-track {
    background-color: #DFE5EA;
}

/* header */
header{
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 40px 0 30px 0;
    z-index: 20;
    background: transparent;
    transition: background-color 0.3s ease;
}
header.scrolled {
    padding: 30px 0;
    background-color: var(--black);
}
.logo_head {
    max-width: 230px;
}
.header_block{
    gap: 20px;
}
.nav_bar{
    gap: 20px;
}
.nav_alink{
    font-size: var(--eighteen);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 90px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.6;
    border: 1px solid var(--white);
}
.nav_alink:hover{
    opacity: 1;
}
.head_last_blck{
    gap: 20px;
}
.gold_button{
    cursor: pointer;
    padding: 10px 10px 10px 40px;
    gap: 30px;
    border-radius: 90px;
    background-color: var(--gold);
    font-size: var(--sixteen);
    color: var(--black);
    transition: color 0.3s ease;
    animation: goldPulse 0.8s infinite alternate ease-in-out;
}
@keyframes goldPulse {
    0% {
        background-color: var(--gold);
    }
    100% {
        background-color: var(--boldGold);
    }
}
.burger_btn{
    display: none;
}
.dropdown_rel{
    position: relative;
}
.choosen_lang{
    padding: 4px;
    border-radius: 90px;
    gap: 12px;
    cursor: pointer;
}
.choosen_lang:hover{
    background-color: var(--gold);
}
.choosen_lang:hover .chosen_lang_sp{
    color: var(--black);
}
.choosen_lang:hover .arrow_icon svg path{
    stroke: var(--black);
}
.globe_icon{
    width: 40px;
    min-width: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 8px;
    background-color: var(--grayBack);
}
.globe_icon img{
    object-fit: contain;
}
.chosen_lang_sp{
    font-size: var(--eighteen);
}
.dropdown_ {
    display: none;
    position: absolute;
    top: 50px;
    right: 50%;
    left: 50%;
    gap: 2px;
    transform: translate(-50%, 0);
    min-width: 70px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 2px;
    z-index: 9;
    overflow: hidden;
}
.dropdown_active{
    display: flex;
}
.choose_lang {
    color: var(--black);
    text-align: center;
    padding: 8px;
    font-size: var(--forteen);
    cursor: pointer;
}
.choose_lang:first-child {
    border-radius: 10px 10px 0 0;
}
.choose_lang:last-child {
    border-radius: 0 0 10px 10px;
}
.choose_lang:hover, .choose_lang_active {
    background-color: var(--grayBack);
    color: var(--white);
}
.nav_drop{
    position: relative;
}
.nav_drop .dropdown_{
    left: 0;
    right: auto;
    transform: none;
    min-width: 380px;
    background-color: var(--grayBack);
    padding: 12px;
    border-radius: 20px;
}
.burger_alink{
    overflow: hidden;
    padding: 20px;
    gap: 12px;
    justify-content: start;
    border-radius: 12px;
}
.burger_alink:hover{
    background: #151515;
}
.nav_tochk{
    transform: translateY(-52px);
    height: 14px;
}
.nav_drps{
    font-size: var(--sixteen);
    text-transform: uppercase;
}
.burger_alink:hover .nav_tochk {
    transform: translateX(0);
}
/* end header */

/* home */
main{
    padding-top: 230px;
}
.full_width_video{
    max-width: 2400px;
    position: relative;
    height: clamp(600px, 100vh, 1080px);
    margin: -230px auto 0 auto;
}
.video_section{
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 150px;
}
.home_general_blck{
    flex-direction: column;
    align-items: start;
    gap: 30px;
    max-width: 650px;
}
.big_title{
    text-transform: uppercase;
    font-size: var(--bigTitle);
}
.description_{
    font-size: var(--eighteen);
    color: var(--greyFont);
    flex-direction: column;
    gap: 12px;
    align-items: start;
    line-height: 140%
}
.description_ a{
    color: var(--gold);
    text-decoration: underline;
}
.description_ b{
    color: var(--white);
}
/* .sticky_block{
    position: sticky;
    z-index: 1;
    top: 0;
} */
.services_section{
    padding-top: 200px;
    flex-direction: column;
    gap: 100px;
}
.title_descrip_blck{
    flex-direction: column;
}
.general_title{
    min-width: fit-content;
    font-size: var(--titleFont);
}
.title_descrip_blck .general_title{
    text-align: center;
}
.service_block{
    padding: 0 20px;
    border-radius: 20px;
    justify-content: space-around;
    gap: 30px;
    background: rgba(17, 17, 17, 0.30);
}
.servise_img{
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    max-width: 516px;
}
.serv_inf_block{
    max-width: 600px;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 60px 0;
}
.serv_title{
    font-size: var(--threeFive);
    color: var(--gold);
    text-transform: uppercase;
}
.second_title{
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
}
.serv_inf_block .description_{
    margin: 50px 0;
}
.how_works_blck{
    flex-direction: column;
    padding-top: 200px;
    gap: 90px;
}
.work_steps_blck{
    align-items: stretch;
    gap: 30px;
}
.step_info_blck{
    justify-content: start;
    background-color: var(--grayBack);
    border-radius: 20px;
    position: relative;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}
.steps_num{
    position: absolute;
    top: -25px;
    background-color: var(--gold);
    border-radius: 50%;
    justify-content: center;
    font-size: var(--twenty);
    color: var(--black);
    width: 50px;
    aspect-ratio: 1/1;
}
.steps_title{
    font-size: var(--twofour);
    text-transform: uppercase;
    text-align: center;
}
.step_info_blck .description_{
    text-align: center;
}
.our_works_section{
    padding-top: 120px;
    flex-direction: column;
    gap: 60px;
}
.choose_tab_blck{
    margin-top: 22px;
    gap: 30px;
    justify-content: center;
}
.choose_tab{
    min-width: fit-content;
    text-transform: uppercase;
    color: var(--greyFont);
    font-size: var(--forteen);
    cursor: pointer;
}
.choose_tab:hover, .choose_tab_active{
    color: var(--white);
}
.works_grid_blck{
    display: none;
    grid-template-columns: repeat( 4, 1fr );
    gap: 20px;
}
.works_grid_blck_active{
    display: grid;
}
.work_alink{
    justify-content: center;
    height: 334px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--grayBack);
}
.work_img{
    height: 100%;
}
.info_blck_work{
    flex-direction: column;
    align-items: start;
    gap: 14px;
    width: calc(100% - 36px);
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.40);
    border-radius: 12px;
    padding: 20px;
    opacity: 0;
}
.work_alink:hover .info_blck_work{
    opacity: 1;
}
.works_title{
    text-transform: uppercase;
    font-size: var(--forteen);
}
.info_blck_work .description_{
    font-size: var(--twelve);
}
.start_project_section{
    position: relative;
    align-items: stretch;
    padding: 38px;
    border-radius: 40px;
    background-color: var(--grayBack);
}
#project{
    padding-top: 120px !important;
}
.big_form_img{
    max-width: 780px;
    width: 46%;
    position: absolute;
    right: -5%;
    top: -3%;
}
.new_project_form{
    max-width: 900px;
    align-items: start;
    padding: 40px;
    flex-direction: column;
    gap: 35px;
    justify-content: start;
    border-radius: 30px;
    background: #EAEAEA;
    width: 66%;
    z-index: 1;
}
.new_project_form .general_title{
    text-align: start;
    color: var(--black);
    text-transform: uppercase;
}
.thin_title{
    font-size: var(--thirty);
    max-width: 580px;
    color: var(--black);
    text-transform: uppercase;
}
.three_inps{
    gap: 22px;
}
.inps_{
    background-color: transparent;
    border-bottom: 1px solid var(--black);
    padding: 10px 10px 20px 10px;
    font-size: var(--eighteen);
    border-radius: 0;
    /* text-transform: uppercase;  */
}
.inps_:focus{
    border-color: var(--gold);
}

.input_img_download_web{
    background-color: var(--black);
    border-radius: 90px;
    position: relative;
    padding: 10px 20px;
    gap: 20px;
    border: 1px solid transparent;
}
.input_img_download_web.file_error {
    border-color: red;
}

/* файл выбран */
.input_img_download_web.file_selected {
    border-color: #000; /* или var(--black) */
}
.upoload_img {
    width: 20px;
    height: 20px;
}
.tooslSlider  .swiper-wrapper{
    transition-timing-function: linear !important;
}
.upoload_img img{
    object-fit: contain;
}
.file_btn_web {
    font-size: var(--sixteen);
    text-transform: uppercase;
}
.file_download_web {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.radio_lab {
    position: relative;
    cursor: pointer;
    gap: 28px;
}
.checko_, .checko_ input, .checkbox_form {
    width: 22px;
    height: 22px;
    aspect-ratio: 1 / 1;
}
.checko_ {
    position: relative;
}
.check_inp {
    opacity: 0;
    z-index: 2;
    position: absolute;
    cursor: pointer;
}
.checkbox_form {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAEAEA;
    border: 1px solid var(--black);
    position: absolute;
    cursor: pointer;
    z-index: 0;
}
.inps_error .checkbox_form{
    border-color: red;
}
.checko_ input:checked~.checkbox_form {
    background-color: var(--black);
}
.checko_svg {
    justify-content: center;
    align-items: center;
}
.choose_radio{
    max-width: 440px;
    font-size: var(--sixteen);
    color: rgba(0, 0, 0, 0.70);
}
.choose_radio a{
    color: var(--gold);
}
.choose_radio a:hover{
    text-decoration: underline;
}

/* Service radio buttons */
.service_radios_blck {
    flex-direction: column;
    align-items: start;
    gap: 14px;
}
.service_label {
    font-size: var(--sixteen);
    color: rgba(0, 0, 0, 0.70);
    text-transform: uppercase;
}
.service_radios_wrap {
    flex-wrap: wrap;
    gap: 18px 30px;
    align-items: start;
    justify-content: start;
}
.ws-form-status{
    margin: 0 auto;
    font-size: 20px;
}
.service_radio_lab {
    justify-content: start;
    cursor: pointer;
    gap: 12px;
    align-items: center;
}
.service_radio_lab input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.service_radio_lab .radio_custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 1px solid var(--black);
    background-color: #EAEAEA;
    flex-shrink: 0;
}
.service_radio_lab input:checked + .radio_custom {
    background-color: var(--black);
    box-shadow: inset 0 0 0 4px #EAEAEA;
}
.service_radio_text {
    font-size: var(--sixteen);
    color: var(--black);
}
.service_radios_blck .error_input ~ .service_radios_wrap .radio_custom {
    border-color: red;
}

.send_btn{
    text-transform: uppercase;
}
/*.file_error .file_btn_web{
    color: red;
}
.file_error{
    background-color: transparent;
    border-color: red;
}*/

.inps_.error_input { border-color: red !important; }

.full_slider{
    padding-top: 180px;
}
.title_arrows{
    gap: 20px;
}
.title_arrows .general_title, .aboutus_block .general_title{
    text-align: start;
}
.arrows_blck{
    gap: 8px;
}
.swiper-button-prev, .swiper-button-next{
    margin: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: var(--grayBack);
    justify-content: center;
}
.arrows_blck .swiper-button-prev, .arrows_blck .swiper-button-next{
    position: inherit !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
    content: "" !important;
}
.swiper-button-prev svg, .swiper-button-next svg{
    width: 11px !important;
    height: auto !important;
}
.tools_item{
    cursor: pointer;
    max-width: 272px;
    height: 194px !important;
    border-radius: 12px;
    padding: 14px;
    gap: 26px;
    display: flex !important;
    flex-direction: column;    
    border: 1px solid transparent;
    background-color: var(--grayBack);
}
.tools_item:hover{
    border-color: var(--gold);
}
.tools_sp{
    font-size: var(--twelve);
    color: #666;
}
.tools_img{
    margin: auto;
    max-width: 90px;
}
.tooslSlider {
    padding-top: 60px !important;
}
.abouts_right_img{
    position: absolute;
    right: 0;
    max-width: 900px;
    width: 50%;
}
.abouts_sec{
    min-height: 700px;
    margin-top: 120px;
}
.aboutus_block{
    gap: 26px;
    flex-direction: column;
    align-items: start;
    max-width: 574px;
    width: 47%;
}
.aboutus_block .thin_title{
    color: var(--white);
}
.aboutus_block .description_{
    margin: 14px 0;
}
.round_abs{
    position: absolute;
    z-index: -1;
}
.round_right{
    top: -94px;
    right: -1000px;
    max-width: 1475px;
}
.round_left{
    top: 40%;
    left: -870px;
    max-width: 1300px;
}
.round_right_work{
    top: 0;
    max-width: 1000px;
    right: -700px;
}
.round_left_work{
    max-width: 300px;
    bottom: 20%;
    left: -200px;
}
/* end home */

/* footer */
footer{
    margin-top: 120px;
}
.grey_footer{
    background-color: var(--grayBack);
    padding: 40px 0;
}
.grey_footer_block{
    flex-direction: column;
    gap: 20px;
}
.f_number{
    font-size: var(--sixteen);
}
.soc_numbers{
    gap: 15px;
    align-items: stretch;
}
.whatsapp_soc, .viber_soc{
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    justify-content: center;
}
.whatsapp_soc{
    z-index: 20;
    position: fixed;
    bottom: 70px;
    right: 60px;
    background: #39CA00;
    animation: greenPulse 2s infinite ease-in-out;
}
@keyframes greenPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 202, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(57, 202, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(57, 202, 0, 0);
    }
}
.viber_soc{
    background: #6D1DD3;
}
.viber_soc:hover svg, .whatsapp_soc:hover svg{
    transform: scale(1.1);
}
/* .mailto_alink{
    text-transform: uppercase;
} */
.mailto_alink:hover, .f_number:hover{
    text-decoration: underline;
}
.underline_f{
    max-width: 820px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.f_nav_bar{
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.fnav_alink{
    font-size: var(--sixteen);
    text-transform: uppercase;
}
.fnav_alink:hover{
    color: var(--gold);
}
.card_types_blck{
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}
.f_last_blck{
    padding: 35px 0;
    gap: 20px;
}
.privacy_alink{
    font-size: var(--sixteen);
    color: rgba(255, 255, 255, 0.40);
}
.privacy_alink:hover{
    color: var(--white);
}
.copyright_sp{
    font-size: var(--sixteen);
    gap: 4px;
    color: rgba(255, 255, 255, 0.40);
}
.site_dev{
    gap: 10px;
    font-size: var(--sixteen);
    color: rgba(255, 255, 255, 0.40);
}
.site_dev:hover svg path{
    fill: var(--gold);
}
/* end footer */

/* our work */
.works_page .title_descrip_blck{
    flex-direction: row;
}
.works_page .choose_tab_blck{
    margin: 0;
    max-width: 672px;
} 
.works_page {
    padding: 0 !important;
}
/* end our work */

/* blog */
.blog_section{
    flex-direction: column;
    gap: 60px;
}
.blog_items_blck{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}
.blog_alink{
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 12px;
    padding: 10px 10px 30px 10px;
    border-radius: 30px;
    background-color: var(--grayBack);
    border: 1px solid transparent;
}
.blog_alink:hover{
    border-color: rgba(217, 168, 96, 0.20);
}
.blogs_img{
    margin-bottom: 18px;
    border-radius: 20px;
    overflow: hidden;
}
.dateof_blog{
    font-size: var(--forteen);
    text-transform: uppercase;
}
.title_blog_items{
    color: var(--gold);
    text-transform: uppercase;
    font-size: var(--fontTwentyTwo);
}
.blog_alink .description_{
    font-size: var(--forteen);
}
.blog_alink:hover .title_blog_items{
    color: var(--white);
}
/* end blog */

/* blog single */
.blog_single_section{
    max-width: 976px;
    width: 100%;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    align-items: start;
}
.blog_single_img{
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}
.date_blog_onimg{
    font-size: var(--sixteen);
    padding: 10px 20px;
    border: 1px solid var(--white);
    border-radius: 90px;
    text-transform: uppercase;
    position: absolute;
    bottom: 55px;
    left: 65px;
}
.blog_big_title{
    text-transform: uppercase;
    font-size: 40px;
    margin-top: 20px;
}
.round_right_single{
    max-width: 732px;
    top: -230px;
    right: -450px;
}
.round_left_single{
    max-width: 732px;
    bottom: -80px;
    left: -510px;
}
.blog_single_section .description_{
    font-size: var(--sixteen);
}
.description_ h2, .description_ h3, .description_ h4, 
.description_ h5, .description_ h6{
    color: var(--white);
    font-family: 'Roboto-Bold' !important;
}
/* end blog single */

/* about us */
.about_title_blck{
    align-items: end;
    gap: 30px;
    margin-bottom: 122px;
}
.titles_under{
    flex-direction: column;
    align-items: start;
    gap: 30px;
    max-width: 650px;
}
.about_title_blck .description_{
    max-width: 520px;
    line-height: 140%;
}
.statistic_block{
    margin-top: 120px;
    gap: 20px;
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.statistic_window{
    justify-content: start;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    padding: 30px;
    background-color: var(--grayBack);
    border-radius: 20px;
}
.number_sp, .icon_nums{
    color: var(--gold);
    font-size: 70px;
}
.statistic_window .description_{
    font-size: var(--sixteen);
}
.num_wicon{
    justify-content: start;
    gap: 4px;
}
.round_right_about{
    max-width: 1020px;
    left: -750px;
    top: -200px;
} 
.round_right_project{
    top: -300px;
    right: -650px;
    max-width: 1100px;
}
/* end about us */

/* services */
.service_descrip_block{
    max-width: 980px;
    margin: 120px auto 0 auto;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.service_descrip_block .description_{
    gap: 20px;
}
/*  end services */

/* contact */
.big_cont_blck{
    min-width: fit-content;
    flex-direction: column;
    align-items: start;
}
.conts_sp{
    font-size: var(--sixteen);
    color: var(--gold);
    text-transform: uppercase;
}
.big_cont{
    min-width: fit-content;
    font-size: 40px;  
}
.big_cont:hover{
    text-decoration: underline;
}
.general_contact .description_{
    max-width: none !important;
    width: 100% !important;
}
/* end contact */

/* privacy */
.privacy_section{
    max-width: 980px;
    margin: 0 auto;
    flex-direction: column;
    gap: 40px;
}
.privacy_section .general_title{
    text-transform: uppercase;
}
.privacy_section .description_{
    font-size: var(--sixteen);
}
/* end privacy */

/* error */
.error_section{
    flex-direction: column;
    gap: 20px;
}
.error_img{
    max-width: 1026px;
    width: 95%;
}
.error_title{
    color: var(--gold);
    max-width: 300px;
    text-align: center;
    margin-top: 25px;
    font-size: 40px;
    text-transform: uppercase;
}
.error_section .description_{
    text-align: center;
    max-width: 430px;
}
/* end error */ 


/* если хочешь показывать ТОЛЬКО на desktop */
/* .whtphone { 
  display: none;
} */
/* @media (min-width: 769px) {
  .whtphone {
    display: block;
  }
} */

.whatsapp_phone {
  position: fixed;
  bottom: 100px;
  right: 50px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 9999;

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

  background-color: #25d366;
  overflow: visible;

  /* важно для абсолютных детей */
  pointer-events: auto;
}

.phone_icon {
  position: relative;
  z-index: 3;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone_icon img {
  width: 40px;
  height: 40px;
}

/* сам круг-пульс */
.pulse-whatsapp {
  position: absolute;
  inset: 0;               /* = top:0 right:0 bottom:0 left:0 */
  border-radius: 50%;
  background-color: #25d366;
  z-index: 1;
  animation: 2s infinite pulse-animation;
  pointer-events: none;   /* чтобы не мешал клику */
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}




/* 1) скрываем нативный input file (чтобы не было второго имени файла) */
.file_download_web {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* 2) блок выбора файла */
.input_img_download_web {
  position: relative;
  gap: 14px;
  align-items: center;
}

/* 3) список файлов под кнопкой */
.files_list_wrap {
  width: 100%;
  margin-top: 12px;
}

.files_images_web {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 4) красивый chip */
.file_chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  max-width: 100%;
}

.file_chip__name {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* крестик */
.file_chip__remove {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.2s ease;
}

.file_chip__remove:hover {
  background: rgba(255,255,255,0.16);
}

/* текст "N files selected" можно убрать или оставить */
.files_counter {
  color: #fff;
  font-size: 14px;
  opacity: 0.85;
}

.file_download_web {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ws-form-success{
    font-size: 18px;
}