html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:none;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;text-decoration:none;margin:0;padding:0;}
table{border-collapse:separate;border-spacing:0}
blockquote:before,blockquote:after,q:before,q:after{content:""}
*{margin:0;padding:0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style: none;}
blockquote,q{quotes: none;}
:focus{outline: 0;}
table{border-collapse:collapse;border-spacing:0;}
img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;}
a{text-decoration:none;position:relative;color:#000;}
audio,video,canvas{max-width:100%;}

html,
body{
    font-family: 'FuturaPT',Arial,sans-serif;
    font-size: 16px;
    color:#0f1c48;
}

.main{
    width: 100%;
}
.main_menu{
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 99;
    transition: background-color 0.2s;
}
.main_menu.hide{
    background-color: #156f5e;
}
.main_menu_container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.main_menu_logo svg{
    width: 230px;
    height: 50px;
}
.main_menu_logo_image{
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 220px;
    height: 30px;
    position: relative;
}
.main_menu_list{
    display: flex;
}

.main_menu_item{
    margin-right: 30px;
}
.main_menu_item:last-child{
    margin-right: 0;
}
.main_menu_item a{
    color: #fff;
    font-weight: 600;
    transition: color 0.2s;
}
.main_menu_item a:hover{
    color: #ff5e00;
}

.main_menu_item a.special_main_menu_item{
    background-color: #ff5e00;
    padding: 10px 30px;
    border-radius: 30px;
    transition: background-color 0.2s;
}
.main_menu_item a.special_main_menu_item:hover{
    background-color: #ff840b;
    color: #fff;
}

.block_hero{
    background-color: #022b3a;
    width: 100%;
    padding: 180px 0;
    display: block;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.block_hero_slider_backdrop{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff5e00;
    z-index: 2;
    visibility: hidden;
}
.block_hero_slider_backdrop.visible{
    visibility: visible;
}
.block_hero_container{
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
}
.block_hero_slider{
    display: flex;
    justify-content: space-between;
}
.block_hero_slide_left{
    position: relative;
    width: 60%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: -0;
    opacity: 1;
    transition: left 1s, opacity 1s;
}
/* .block_hero_slide_left.show{
    left: 0;
    opacity: 1;
} */

.main_h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
}
.accent_01_color{
    color: #ff5e00;
}
.accent_02_color{
    color: #ff840b;
}
.accent_03_color{
    color: #ffa463;
}
.main_h2{
    font-size: 22px;
    margin: 40px 0;
}

.block_hero_slide_right{
    position: relative;
    width: 40%;
    right: 0;
    opacity: 1;
    transition: right 1s, opacity 1s;
}
/* .block_hero_slide_right.show{
    right: 0;
    opacity: 1;
} */

.block_hero_slide_image{
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 400px;
    position: relative;
}

.main_buttons_block{
    display: flex;
    font-size: 20px;
    font-weight: 600;
}
.btn_v1{
    color: #fff;
    background-color: #ff5e00;
    padding: 15px 30px;
    border-radius: 30px;
    transition: background-color 0.2s;
    margin-right: 20px;
}
.btn_v1:hover{
    background-color: #ff840b;
}
.btn_v2{
    color: #fff;
    padding: 15px 50px;
    border-radius: 30px;
    border: 2px solid #ff5e00;
    transition: border 0.2s, color 0.2s;
}
.btn_v2:hover{
    border-color: #ff840b;
    color: #ff840b;
}

.block_hero_bottom_text{
    position: absolute;
    bottom: -32px;
    left: 0;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 200px;
    font-weight: 900;
    line-height: 200px;
    z-index: 3;
    color: #fff;
}
.block_why{
    background-image: url(../images/bkg_white_big.jpg);
    width: 100%;
    padding: 120px 0;
    display: block;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.block_why_container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.block_why_item{
    width: 50%;
    padding: 0 60px;
}
.block_why_item_icon{
    margin-bottom: 26px;
}
.block_why_item_image{
    width: 100px;
    height: 88px;
    display: block;
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
}
.block_why_item_header{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 26px;
}
.block_why_item_subheader{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 26px;
}
.block_why_item_text{
    font-size: 20px;
}

.connect_block{
    width: 100%;
    padding: 120px 0;
    display: block;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.connect_block_01{
    background-image: url(../images/img_01.jpg);
}
.connect_block_02{
    background-image: url(../images/img_02.jpg);
}
.connect_block::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(15 28 72 / 90%);
    z-index: -1;
}

.connect_block_container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.connect_block_header{
    font-size: 60px;
    font-weight: 900;
    line-height: 60px;
    margin-bottom: 40px;
    position: relative;
}
.connect_block_form{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.connect_block_form_element{
    display: flex;
    justify-content: center;
    width: 33.33%;
    margin: 0 15px;
}
.connect_block_form_input{
    border: 0;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 30px;
    width: 100%;
}
.connect_block_form_input::placeholder{
    color: #aaa;
}
.connect_block_form_submit{
    border: 0;
    font-size: 20px;
    padding: 12px 30px;
    border-radius: 30px;
    width: 100%;
    background-color: #ff5e00;
    color: #fff;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}
.connect_block_info{
    margin-top: 50px;
}
.connect_block_file{
    font-size: 22px;
    color: #ff5e00;
    text-decoration: underline;
}
.connect_block_mail{
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.block_best{
    background-image: url(../images/bkg_blue_big.jpg);
    width: 100%;
    padding: 180px 0;
    display: block;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.block_best_container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    display: flex;
}
.block_best_item{
    width: 33.33%;
    margin: 0 45px;
}
.block_best_item_icon{
    margin-bottom: 50px;
}
.block_best_item_image{
    width: 140px;
    height: 102px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.block_best_item_header{
    font-size: 30px;
    font-weight: 600;
    color: #ff840b;
    margin-bottom: 20px;
    line-height: 44px;
}
.block_best_item_text{
    font-size: 20px;
}


.block_proud{
    background-color: #0f1c48;
    padding: 120px 0;
}
.block_proud_container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}
.block_proud_header{
    font-size: 60px;
    font-weight: 900;
    line-height: 60px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.block_proud_subheader{
    font-size: 20px;
    margin-bottom: 50px;
}
.block_proud_images{
    display: flex;
    justify-content: space-between;
}
.block_proud_image{
    width: 130px;
    height: 130px;
    display: block;
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}

.block_proud_image.special{
    width: 90px;
    height: 90px;
}

.block_hero_bottom{
    background-image: url(../images/bkg_white_big.jpg);
    width: 100%;
    padding: 120px 0;
    display: block;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.block_hero_bottom_container{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.block_hero_bottom_slider{
    display: flex;
    justify-content: space-between;
}
.block_hero_bottom_slide_left{
    width: 60%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn_v3{
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid #ff5e00;
    transition: border 0.2s, color 0.2s;
    color:#0f1c48;
}
.btn_v3:hover{
    border-color: #ff840b;
    color: #ff840b;
}

.block_hero_bottom_slide_right{
    width: 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block_hero_bottom_slide_right .block_hero_slide_circle{
    position: absolute;
    width: 400px;
    height: 400px;
    display: block;
    background-color: #ff5e00;
    border-radius: 350px;
}

.block_hero_bottom_slide_right .block_hero_slide_image{
    height: 450px;
}

.block_footer{
    background-color: #0f1c48;
    padding: 20px 0;
}
.block_footer_container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.block_footer_credits{
    color: #5d6da2;
}
.block_footer_credits a{
    color: #5d6da2;
}
.block_footer_credits a span{
    font-size: 10px;
}
.block_footer_links a{
    color: #5d6da2;
    margin-right: 20px;
}
.block_footer_links a:last-child{
    margin-right: 0;
}

.show_from_top{
    position: relative;
    bottom: -30px;
    opacity: 0;
    transition: bottom 1s, opacity 1s;
}
.show_from_top.show{
    opacity: 1;
    bottom: 0;
}

.show_from_left{
    position: relative;
    left: -30px;
    opacity: 0;
    transition: left 1s, opacity 1s;
}
.show_from_left.show{
    opacity: 1;
    left: 0;
}
.show_from_right{
    position: relative;
    right: -30px;
    opacity: 0;
    transition: right 1s, opacity 1s;
}
.show_from_right.show{
    opacity: 1;
    right: 0;
}

.popup_window{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgb(0 0 0 / 60%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.popup_window.active{
    opacity: 1;
    visibility: visible;
}
.popup_window_container{
    position: relative;
    width: 600px;
    background-color: #fff;
    bottom: -30px;
    transition: bottom 0.5s;
}
.popup_window.active .popup_window_container{
    bottom: 0;
}
.popup_window_logo_image{
    width: 100%;
    height: 360px;
    display: block;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.popup_window_header{
    margin: 25px;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}
.popup_window_inputs{
    padding: 0 30px 30px 30px;
}
.popup_window_inputs .connect_block_form_element{
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
}
.popup_window_inputs .connect_block_form_element:last-child{
    margin-bottom: 0;
}
.popup_window_inputs .connect_block_form_input{
    border: 1px solid #ddd;
}

.popup_window_backdrop{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.message_block{
    position: fixed;
    z-index: 10000;
    bottom: 20px;
    right: -300px;
    padding: 15px 20px;
    width: 280px;
    border-radius: 8px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s, right 0.2s;
}
.message_block.error{
    background-color: #ff5e00;
}
.message_block.success{
    background-color: #ffffff;
    color: #0f1c48;
}
.message_block.active{
    right: 20px;
    opacity: 1;
}

.official_block{
    padding: 120px 0 50px 0;
    min-height: calc(100vh - 38px);
}
.official_container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.official_container h4{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.official_container h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 25px;
}
.official_container p{
    margin-bottom: 10px;
}

.official_container a{
    text-decoration: underline;
    color: #ff5e00;
}

.publication_date{
    text-align: right;
}

.error_404{
    text-align: center;
}
.error_404 h1{
    font-size: 80px;
    font-weight: 900;
}

.footer_brands_block{
    width: 25%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_logo_image{
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 220px;
    height: 46px;
    position: relative;
}
.footer_logo_text{
    color: #acc0cf;
    margin-top: 20px;
    margin-left: 12px;
}
.footer_logo_text a{
    color: #acc0cf;
}

.footer_links_block{
    width: 25%;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
}

.footer_links_block a{
    color: #acc0cf;
    font-size: 16px;
    margin: 4px 0;
}
.footer_addresses_block{
    width: 50%;
    display: flex;
}
.footer_address_block{
    width: 50%;
    text-align: right;
    display: flex;
    flex-direction: column;
}
.footer_address_block a{
    color: #acc0cf;
    font-size: 16px;
    margin: 4px 0;
}

.footer_logo_block{
    margin-top: 5px;
}

.main_menu_lines{
    display: none;
}
.hide_menu{
    display: none;
}

@media (max-width: 768px){
    .error_404 h1{
        line-height: 50px;
        margin-bottom: 70px;
        margin-top: 100px;
    }
    .block_footer_container{
        flex-direction: column-reverse;
    }
    .footer_brands_block,
    .footer_links_block{
        width: 100%;
        text-align: center;
    }
    .footer_addresses_block{
        flex-direction: column;
        width: 100%;
    }
    .footer_address_block{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer_logo_block{
        display: none;
    }
    .block_footer_credits{
        margin-bottom: 5px;
    }
    .official_container{
        padding: 0 15px;
    }
    .publication_date{
        text-align: center;
        margin-bottom: 10px;
    }
    .official_container h4{
        line-height: 25px;
        font-size: 24px;
    }
    .official_container h5{
        line-height: 20px;
    }
    .popup_window_container{
        width: 90%;
    }
    .popup_window_logo_image{
        height: 200px;
    }
    .popup_window_header{
        line-height: 30px;
        font-size: 30px;
    }
    .main{
        overflow: hidden;
    }
    .main_menu{
        background-color: #0f1c48;
    }
    .block_hero_slider_backdrop{
        display: none;
    }
    .block_hero_bottom_text{
        display: none;
    }
    .main_menu_list{
        display: flex;
        position: absolute;
        right: 0;
        top: -300px;
        background-color: #0f1c48;
        height: auto;
        width: 100%;
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        box-shadow: -2px 2px 8px rgb(0 0 0 / 64%);
        transition: top 0.5s;
    }
    .hide_menu{
        display: block;
        padding: 10px;
        position: absolute;
        top: 0;
        right: 0;
        margin-top: 10px;
        margin-right: 10px;
    }
    .main_menu_list.active{
        top:0;
    }
    .main_menu_item{
        height: 50px;
        margin-right: 0;
    }
    .main_menu_item:last-child{
        margin-top: 30px;
    }
    .main_menu_container{
        justify-content: center;
    }
    .block_hero{
        padding: 100px 0;
    }
    .block_hero_container{
        padding: 0 15px;
    }
    .block_hero_slider{
        flex-direction: column-reverse;
    }
    .block_hero_slide_right{
        width: 100%;
    }
    .block_hero_slide_left{
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .main_h1{
        font-size: 36px;
        line-height: 40px;
    }
    .main_h2{
        margin: 36px 0;
        font-size: 20px;
    }
    .main_buttons_block{
        flex-direction: column;
    }
    .btn_v1{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .block_why{
        padding: 60px 0;
    }
    .block_why_container{
        flex-direction: column;
    }
    .block_why_item{
        width: 100%;
        padding: 0 15px;
        margin-bottom: 50px;
    }
    .block_why_item:last-child{
        margin-bottom: 0;
    }
    .block_why_item_header{
        font-size: 50px;
        line-height: 56px;
    }
    .connect_block{
        padding: 50px 0;
    }
    .connect_block_container{
        padding: 0 15px;
    }
    .connect_block_header{
        font-size: 40px;
        line-height: 44px;
    }
    .connect_block_form{
        flex-direction: column;
    }
    .connect_block_form_element{
        width: 100%;
        margin-bottom: 20px;
    }
    .connect_block_form_element:last-child{
        margin-bottom: 0;
    }
    .block_best{
        padding: 60px 0;
    }
    .block_best_container{
        padding: 0 15px;
        flex-direction: column;
    }
    .block_best_item{
        width: 100%;
        margin: 0;
        margin-bottom: 50px;
    }
    .block_best_item_icon{
        margin-bottom: 30px;
    }
    .block_proud{
        padding: 60px 0;
    }
    .block_proud_container{
        padding: 0 15px;
    }
    .block_proud_header{
        font-size: 36px;
        line-height: 40px;
    }
    .block_proud_images{
        align-items: center;
        flex-wrap: wrap;
    }
    .block_proud_image{
        width: 48%;
        height: auto;
        padding-top: 48%;
        margin-bottom: 20px;
    }
    .block_proud_image.special{
        width: 48%;
    }

    .block_hero_bottom{
        padding: 60px 0;
    }
    .block_hero_bottom_container{
        padding: 0 15px;
    }
    .block_hero_bottom_slider{
        flex-direction: column-reverse;
    }
    .block_hero_bottom_slide_left{
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .block_hero_bottom_slide_right{
        width: 100%;
        margin-bottom: 30px;
    }
    .block_hero_bottom_slide_right .block_hero_slide_circle{
        width: 100%;
        height: auto;
        padding-top: 100%;
    }
    .block_hero_bottom_slide_right .block_hero_slide_image {
        height: 360px;
    }

    .show_from_top{
        bottom: 0;
        opacity: 0;
        transform: scale(0.9);
        transition: transform 1s, opacity 1s;
    }
    .show_from_top.show{
        opacity: 1;
        bottom: 0;
        transform: scale(1);
    }
    .show_from_left{
        left: 0;
        opacity: 0;
        transform: scale(0.9);
        transition: transform 1s, opacity 1s;
    }
    .show_from_left.show{
        opacity: 1;
        left: 0;
        transform: scale(1);
    }
    .show_from_right{
        position: relative;
        right: 0;
        opacity: 0;
        transform: scale(0.9);
        transition: transform 1s, opacity 1s;
    }
    .show_from_right.show{
        opacity: 1;
        right: 0;
        transform: scale(1);
    }
    .block_hero_slide_left{
        left: 0;
        opacity: 1;
        /* transform: scale(0.9); */
        transition: transform 1s, opacity 1s;
    }
    /* .block_hero_slide_left.show{
        left: 0;
        opacity: 1;
        transform: scale(1);
    } */
    .block_hero_slide_right{
        right: 0;
        opacity: 1;
        /* transform: scale(0.9); */
        transition: transform 1s, opacity 1s;
    }
    /* .block_hero_slide_right.show{
        right: 0;
        opacity: 1;
        transform: scale(1);
    } */
    .main_menu_lines{
        display: block;
        position: absolute;
        right: 10px;
        padding: 10px;
    }
}







.block_price_container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.block_price_header{
    font-size: 60px;
    font-weight: 900;
    line-height: 60px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
}
.block_price_subheader{
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}
.block_price_type_switcher{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.block_price_type_switcher_container{
    border: 1px solid #0f1c48;
    border-radius: 30px;
    display: flex;
    padding: 5px;
    align-items: center;
}
.block_price_type_switcher_item:first-child{
    margin-right: 10px;
}

.price_switcher{
    display: none;
}
.price_switcher_label{
    font-size: 20px;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    width: 100px;
    display: block;
    text-align: center;
    transition: color 0.2s, background-color 0.2s;
}

.price_switcher:checked + .price_switcher_label{
    background-color: #ff5e00;
    color: #fff;
}


.block_price_line{
    display: flex;
    border-bottom: 1px solid #ddd;
}
.block_price_line:last-child{
    border-bottom: 0;
}
.block_price_line_first_item{
    width: 40%;
}
.block_price_line_element_item{
    width: 60%;
    display: flex;
}
.block_price_line_element_item_header{
    width: 33.33%;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    padding: 10px 0;
}

.block_price_line_first_item{
    font-size: 18px;
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.block_price_line_element_item_content{
    width: 33.33%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.table_price_container{
    position: relative;
    width: 100%;
}
.table_price{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 900;
    transition: opacity 0.2s;
    opacity: 0;
}
.table_price.active{
    opacity: 1;
}

.table_price .dollar{
    font-size: 14px;
    position: relative;
    top: -3px;
}
.table_price .period{
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    position: relative;
    bottom: -4px;
    letter-spacing: -1px;
}

.best_offer{
    background-color: #ffede2;
}

.table_price_button{
    padding: 7px 20px;
    margin: 10px;
    border: 1px solid #0f1c48;
    border-radius: 20px;
    font-weight: 600;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}
.table_price_button:hover{
    border: 1px solid #0f1c48;
    background-color: #ff5e00;
    color: #fff;
}
.best_offer .table_price_button{
    border: 1px solid transparent;
    background-color: #ff5e00;
    color: #fff;
}
.best_offer .table_price_button:hover{
    border: 1px solid #0f1c48;
}

#video_window .popup_window_container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.embedded_video{
    width: 100%;
    height: 350px;
}


@media (max-width: 768px){
    #video_window .popup_window_container{
        width: auto;
    }
    .embedded_video{
        width: auto;
        height: auto;
    }
    .block_price_header{
        font-size: 36px;
        line-height: 40px;
    }
    .block_price_subheader{
        padding: 0 20px;
        font-size: 16px;
        line-height: 18px;
    }
    .block_price_line{
        flex-direction: column;
    }
    .block_price_line_first_item{
        width: 100%;
        font-size: 15px;
        justify-content: center;
        padding-bottom: 10px;
        color: #acb9d0;
        z-index: 1;
    }
    .block_price_line_element_item{
        width: 100%;
    }
    .block_price_line_element_item_content{
        padding: 10px 0;
        font-size: 16px;
    }
    .table_price_container{
        padding: 10px 0;
        display: flex;
        align-items: center;
    }
    .block_price_line_element_item_header{
        font-size: 18px;
    }
    .block_price_line_element_item_content svg{
        width: 20px;
        height: 20px;
    }
    .table_price_button{
        font-size: 16px;
        border-radius: 12px;
        line-height: 14px;
    }
    .block_price_line_first_item.first_item_empty{
        padding: 0;
    }
    .best_offer{
        position: relative;
        background-color: transparent;
    }

}