@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-Thin.ttf");
    font-weight: 100;
}
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: "Onest";
    src: url("fonts/Onest/Onest-Black.ttf");
    font-weight: 900;
}


/* Total */
* {
    box-sizing: border-box;
    font-family: 'Onest';
}
body {
    margin: 0;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
@media(max-width: 1200px){
    .container {
        padding: 0 20px;
    }
}
@media(max-width: 475px){
    .container {
        padding: 0 10px;
    }
}
a {
    color: inherit;
    text-decoration: inherit;
}
img {
    max-width: 100%;
}
/* Total */




/* Header */
.header_space {
    position: relative;
    height: 136px;
}
.header {
    position: fixed;
    width: 100%;
    background: #ffffff;
    border-bottom: solid 3px #020202;
    z-index: 99;
}
.mobile_header {
    position: fixed;
    top: 139px;
    left: -320px;
    width: 100%;
    max-width: 320px;
    height: auto;
    max-height: 200px;
    background: #ffffff;
    border-bottom: solid 3px #020202;
    border-right: solid 3px #020202;
    z-index: 99;
    padding: 20px 10px;
    display: none;
    transition-duration: 300ms;
}
.mobile_header.active {
    left: 0;
}
.header_mobile_burger {
    display: none;
}
.header_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 136px;
}
.header_left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header_logo {
    margin-right: 62px;
    max-width: 100px;
}

.header_menu {
    display: flex;
    gap: 50px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}
.header_line {

}
.header_line:hover {
    color: #1464FF;
}
.header_lang {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin-left: 12px;
}
.header_lang:hover {
    opacity: 0.6;
}
.header_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 141px;
    height: 49px;
    background: #1464FF;
    border-radius: 6px;

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin-left: 31px;
    cursor: pointer;
}
.header_btn:hover {
    background: #242424;
}
.header_cart {
    position: relative;
    margin-left: 27px;
    cursor: pointer;
}
.header_cart:hover svg path {
    fill-opacity: 0.6;
}
.header_cart span {
    position: absolute;
    right: -7px;
    top: -11px;

    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #242424;
}
.header_phone {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #242424;
}
.header_phone:hover {
    color: #1464FF;
}
/* Header */


/* Footer */
.footer {
    background: #242424;
    padding-top: 60px;
    padding-bottom: 48px;
}
.footer_block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer_left {
    display: flex;
    align-items: flex-start;
}
.footer_right {

}
.footer_soc_list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.footer_soc_line {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_soc_line:hover {
    background: #FFFFFF;
}
.footer_soc_line.facebook:hover svg path {
    fill: #38529A;
}
.footer_soc_line.instagram:hover svg path {
    fill: url(#paint0_linear_59_246);
}
.footer_soc_line.viber:hover svg path{
    fill: #27B03C;
}
.footer_soc_line.whatsapp:hover svg path {
    fill: #764D99;
}
.footer_copyright {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #DBDBDB;
}
.footer_copyright svg {
    margin-left: 20px;
}
.footer_left_info {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 133px;
}

.footer_left_menu {
    margin-right: 98px;
}
.footer_left_menu_title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}
.footer_left_menu_line {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}
a.footer_left_menu_line:hover {
    color: rgba(255, 255, 255, 0.6);
}
.footer_left_menu_line span {
    margin-right: 15px;
}


.footer_form_section {
    position: relative;
}
.footer_form_bottom_bottom {
    position: absolute;
    background: #242424;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    /* height: 238px; */
    z-index: 1;
}
.footer_form_block {
    position: relative;
    background: #FFFFFF;
    border: 1px dashed #000000;
    border-radius: 20px;
    padding-top: 69px;
    padding-bottom: 48px;
    z-index: 2;
}
.footer_form {
    width: 100%;
    max-width: 871px;
    margin: 0 auto;
}
.footer_form_title {
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    color: #131313;
    text-align: center;
}
.footer_form_subtitle {
    margin-top: 17px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: rgba(9, 9, 9, 0.9);
    max-width: 793px;
}
.footer_form_input_list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer_form_input_line {

}
.footer_form_input_line.width_33 {
    width: calc(33% - 5px);
}
.footer_form_input_line.width_100 {
    width: 100%;
}
.footer_form_input_line input {
    width: 100%;
    height: 50px;
    background: #F7F9FA;
    border-radius: 6px;
    padding: 0 18px;
    border: none;
    outline: none;

    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #131313;
}
.footer_form_input_line input::placeholder {
    font-weight: 400;
    color: #4B4B4B;
}
.footer_form_btn {
    margin-top: 17px;
    text-align: center;
}
.footer_form_btn button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 152px;
    height: 55px;
    background: #1464FF;
    border-radius: 6px;
    border: none;
    outline: none;

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0 auto;
    cursor: pointer;
}
.footer_form_btn button:hover {
    background: #242424;
}
/* Footer */


/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    margin-top: 12px;
}
.breadcrumbs_line {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #797979;
}
.breadcrumbs_line:hover {
    color: #1464FF;
}
.breadcrumbs_line.active {
    color: #020202;
}
.breadcrumbs_line.separator {
    margin: 0 10px;
}
/* Breadcrumbs */


/* Main */
.slider_section {
    position: relative;
    background: #242424;
    overflow: hidden;
    padding-bottom: 36px;
}
.slider_block {
    position: relative;
    height: 634px;
}
.left_svg {
    position: absolute;
    right: -69px;
    top: 39px;
    z-index: 1;
}
.right_svg {
    position: absolute;
    bottom: -36px;
    right: 307px;
    z-index: 1;
}
.main_slider {
    position: relative;
    height: 100%;
    z-index: 2;
}
.main_slider .slick-list,
.main_slider .slick-track {
    height: 100%;
}
.main_slide {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: calc(100% - 20px);
}
.main_slide .main_slide_info {
    padding-left: 20px;
}
.main_slide .main_slide_img {
    padding-right: 20px;
}
.main_slide.slick-active .main_slide_info,
.main_slide.slick-active .main_slide_img {
    padding-left: 0;
    padding-right: 0;
}
.main_slide_img {
    position: relative;
    width: 100%;
    max-width: 589px;
    height: 100%;
    max-height: 486px;
}
.main_slide_img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-radius: 20px;
}
.main_slide_info {
    max-width: 556px;
}
.main_slide_title {
    font-weight: 700;
    font-size: 38px;
    line-height: 48px;
    color: #FFFFFF;
    margin-bottom: 36px;
}
.main_slide_preview {
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: #FFFFFF;
}
.main_slide_btn {
    margin-top: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 285px;
    height: 78px;
    background: #1464FF;
    border-radius: 6px;

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
}
.main_slide_btn:hover {
    background: #FFFFFF;
    color: #1464FF;
}
.main_slider_dots {
    position: absolute;
    bottom: 36px;
    z-index: 3;
}
.main_slider_dots ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.main_slider_dots li {
    display: block;
}
.main_slider_dots li button {
    font-size: 0px;
    color: transparent;
    padding: 0;

    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    border: none;
    outline: none;
}
.main_slider_dots li.slick-active button {
    background: rgba(255, 255, 255, 0.8);
}

.main_infotext_block {
    display: flex;
    gap: 20px;
    margin-top: 110px;
}
.main_infotext_left,
.main_infotext_right {
    width: calc(50% - 10px);
}
.main_infotext_left {
    font-weight: 500;
    font-size: 26px;
    line-height: 150%;
    color: #000000;
}
.main_infotext_right {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #292929;
}
.main_infotext_right p {
    margin: 0;
}
.main_adv_list {
    margin-top: 50px;
    margin-bottom: 66px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.main_adv_line {
    background: #FFFFFF;
    border: 1px dashed #000000;
    border-radius: 20px;
    padding: 28px 23px;
}
.main_adv_line.half {
    width: calc(25% - 15px);
}
.main_adv_line.full {
    display: flex;
    justify-content: space-between;
    width: calc(50% - 10px);
}

.main_adv_line_title {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #222222;
}
.main_adv_line_title span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    background: #1464FF;
    margin-right: 14px;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    border-radius: 50px;
}
.main_adv_line_title span img {
    max-width: 41px;
    max-height: 41px;
    object-fit: contain;
    object-position: center;
    border-radius: 50px;
}
.main_adv_line_text {
    margin-top: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #292929;
}
.main_adv_info_block {
    max-width: 310px;
}


.echipa_section {
    background: #F5F5F5;
    padding: 64px 0;
}
.echipa_block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.echipa_left {
    max-width: 464px;
    padding-top: 62px;
}
.echipa_right {
    width: 100%;
    max-width: 589px;
    display: flex;
    align-items: flex-end;
}
.echipa_left_title {
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    color: #292929;
    margin-bottom: 31px;
}
.echipa_left_preview {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #292929;
}
.echipa_left_text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #292929;
}

.echipa_slider_block {
    position: relative;
    width: 310px;
    height: 386px;
    margin-right: 30px;
}
.echipa_slider {

}
.echipa_slide {
    border-radius: 20px;
    overflow: hidden;
}
.echipa_slide img {
    transform: scale(0.9);
    transition-duration: 300ms;
}
.slick-active.echipa_slide img {
    transform: scale(1);
    transition-duration: 300ms;
}
.echipa_right_infoblock {
    padding-bottom: 72px;
    max-width: calc(100% - 340px);
}
.echipa_info_slider {

}
.echipa_info_slide {

}
.echipa_info_name {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #222222;
}
.echipa_info_job {
    margin-top: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #292929;
}
.echipa_info_dots {
    display: flex;
    align-items: center;
    margin-top: 42px;
    min-height: 44px;
}
.echipa_info_prev,
.echipa_info_next {
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.echipa_info_prev:hover svg path,
.echipa_info_next:hover svg path {
    fill: #242424;
}
.echipa_info_counter {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.48em;
    color: #292929;
    margin: 0 30px;
}
.faq_section {
    padding-top: 79px;
    padding-bottom: 48px;
}
.faq_block {
    display: flex;
    justify-content: space-between;
}
.faq_left {
    max-width: 402px;
}
.faq_left_title {
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    color: #131313;
}
.faq_left_text {
    margin-top: 21px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #292929;
}
.faq_right {
    width: 100%;
    max-width: 589px;
}
.faq_list {

}
.faq_line {
    padding: 20px 0;
    border-bottom: 1px solid #E3E3E3;
}
.faq_line:last-child {
    border-bottom: none;
}
.faq_line_title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: #292929;
    cursor: pointer;
}
.faq_line_title:hover {
    color: #1464FF;
}
.faq_btn {
    margin-left: 95px;
}
.faq_line.active .faq_btn .default,
.faq_line .faq_btn .hover {
    display: none;
}
.faq_line.active .faq_btn .hover,
.faq_line .faq_btn .default {
    display: block;
}
.faq_line_text {
    margin-top: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #292929;
    display: none;
}
.faq_line.active .faq_line_text {
    display: block;
}
/* Main */



/* Services */
.services_list_block {
    padding-bottom: 105px;
}
.services_list_title {
    font-weight: 500;
    font-size: 26px;
    line-height: 150%;
    color: #000000;
    margin-top: 41px;
}
.services_list {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 52px 19px;
}
.services_line_block {
    width: 100%;
    max-width: 387px;
    min-height: 535px;
    background: #F7F9FA;
    border-radius: 20px;
    padding: 14px 14px 35px;
}
.services_line_img {
    width: 100%;
    max-height: 215px;
    border-radius: 16px;
}
.services_line_title {
    margin-top: 13px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
}
.services_line_type {
    display: inline-block;
    padding: 2px 12px;
    font-weight: 800;
    font-size: 11px;
    line-height: 150%;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: 4px;
}
.services_line_type.cursuri {
    background: #F78239;
}
.services_line_type.lectii {
    background: #5AB062;
}
.services_line_text {
    margin-top: 12px;
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    color: #292929;
}
.services_line_price {
    margin-top: 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    text-align: center;
}
.services_line_btn {
    margin: 0 auto;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 191px;
    height: 51px;
    background: #282828;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
}
.services_line_btn:hover {
    background: #1464FF;
}
.services_pagination {
    margin-top: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services_pagination_left,
.services_pagination_right {
    background: #F7F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}
.services_pagination_left:hover svg path,
.services_pagination_right:hover svg path {
    fill: #1464FF;
}
.services_pagination_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 53px;
    gap: 22px;
}
.services_pagination_line {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #292929;
    cursor: pointer;
}
.services_pagination_line:hover,
.services_pagination_line.active {
    color: #1464FF;
}
/* Services */

/* Details */
.details_block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 65px;
}
.details_left {
    width: calc(100% - 387px);
    padding-right: 95px;
}
.details_right {
    width: 100%;
    max-width: 387px;
}

.details_title {
    margin-top: 72px;
    margin-bottom: 5px;
    max-width: 658px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    color: #000000;
}
.details_text {
    margin-top: 29px;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #292929;
}
.details_text p {
    margin-top: 20px;
    margin-bottom: 20px;
}
.details_text ul {
    margin: 0;
    padding-left: 22px;
}

.details_right_block {
    width: 100%;

    padding: 23px 24px 67px;
    background: #F7F9FA;
    border-radius: 20px;
}
.details_img {
    width: 100%;
    max-height: 203px;
    border-radius: 20px;
}

.details_price_line {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.details_price {
    font-weight: 500;
    font-size: 26px;
    line-height: 150%;
    color: #000000;
}

.details_count_block {
    display: flex;
    align-items: center;
    justify-content: center;
}
.details_count_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;

    background: #FFFFFF;
    border-radius: 50px;
    cursor: pointer;
}
.details_count_btn:hover svg path {
    fill: #282828;
}
.details_count_input {
    width: 45px;
    height: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #292929;
    text-align: center;
    border: none;
    outline: none;
    background: none;
}

.details_button {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #1464FF;
    border-radius: 6px;

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
}
.details_button:hover {
    background: #282828;
}
.details_form_title {
    margin-top: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #000000;
}
.details_form_subtitle {
    margin-top: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    text-align: center;
    color: #292929;
}
.details_form_title,
.details_form_subtitle {
    max-width: 294px;
    margin-left: auto;
    margin-right: auto;
}

.details_form {
    margin-top: 21px;
}
.details_form_input {
    margin-bottom: 10px;
}
.details_form_input input {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border-radius: 6px;
    border: none;
    outline: none;
    padding: 0 19px;

    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #131313;
}
.details_form_input input::placeholder {
    font-weight: 400;
    color: #4B4B4B;
}
.details_form_checkbox {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #131313;
    margin-bottom: 20px;
    cursor: pointer;
}
.details_form_checkbox input {
    position: relative;
    width: 10px;
    height: 10px;
    margin-right: 6px;
}
.details_form_checkbox input:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 12px;
    height: 12px;
    border: solid thin #292929;
    border-radius: 2px;
    background: #ffffff;
    z-index: 1;
}
.details_form_checkbox input:checked:before {
    content: '\f00c';
    position: absolute;
    font-family: FontAwesome;
    z-index: 2;
    font-size: 11px;
    line-height: 11px;
    top: 1px;
    left: 1px;
}


.details_form_btn {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #282828;
    border-radius: 6px;

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    outline: none;
    border: none;
}
.details_form_btn:hover {
    background: #1464FF;
}
/* Details */

/* Scroll up */
.scroll_up {
    position: fixed;
    right: 107px;
    bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    z-index: 9;
    cursor: pointer;
}
/* Scroll up */

/* Cookies */
.cookies {
    position: fixed;
    right: 117px;
    bottom: 49px;
    width: 100%;
    max-width: 408px;
    min-height: 248px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 67px 44px 44px;
    z-index: 8;
}
.cookies_text {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #1B1B1B;
}
.cookies_btn_block {
    margin-top: 25px;
    display: flex;
    align-items: center;
}
.cookies_btn_yes {
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 152px;
    height: 49px;
    background: #1464FF;
    border-radius: 6px;

    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
    cursor: pointer;
}
.cookies_btn_yes:hover {
    background: #242424;
}
.cookies_btn_no {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-decoration-line: underline;
    color: #1B1B1B;
    cursor: pointer;
}
.cookies_btn_no:hover {
    color: #1464FF;
}
/* Cookies */

/* Contacte */
.contacte_block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 65px;
    min-height: 40vh;
}
.contacte_left {
    width: calc(100% - 420px);
    padding-right: 95px;
}
.contacte_right {
    padding-top: 72px;
    width: 100%;
    max-width: 420px;
}
.contacte_form_block {
    width: 100%;
    padding: 23px 24px 67px;
    background: #F7F9FA;
    border-radius: 20px;
}
.contacte_title {
    margin-top: 72px;
    margin-bottom: 5px;
    max-width: 658px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    color: #000000;
}
.contacte_text {
    margin-top: 29px;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #292929;
}
.contacte_map {
    margin-top: 40px;
}
.contacte_map iframe {
    width: 100%;
}
/* Contacte */


/* Modal */
.modal_space {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.4);
    z-index: 111;
    display: none;
}
.modal_space.active {
    display: flex;
}
.modal_block {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 200px;
    max-height: 100vh;
    padding: 30px 25px 40px;
    background: #F7F9FA;
    border-radius: 20px;
    box-shadow: 0 0 40px 3px rgb(155 155 155 / 30%);
}
.modal_data {
    width: 100%;
    background: #F7F9FA;
    max-height: 50vh;
    overflow-y: scroll;
}
.modal_data::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    opacity: 0.2;
}
.modal_data::-webkit-scrollbar-thumb {
    width: 2px;
    height: 2px;
}
.modal_close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}
/* Modal */


/* Bascket */
.bascket_space {
    padding-top: 69px;
    padding-bottom: 175px;
}
.bascket_title {
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    color: #000000;
}

.bascket_block {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.bascket_right {
    width: 375px;
}
.bascket_left {
    width: calc(100% - 375px);
    padding-right: 45px;
}
.bascket_right_form {
    width: 100%;
    padding: 23px 24px 67px;
    background: #F7F9FA;
    border-radius: 20px;
}
.bascket_right_form_title {
    font-family: 'Onest';
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #000000;
}

.bascket_list {

}
.bascket_line {
    position: relative;
    padding: 18px 15px;
    border-bottom: solid 5px #FFFFFF;
    background: #F7F9FA;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 5px;
}
.bascket_line_close {
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 20px;
}
.bascket_line:last-child {
    border-bottom: none;
}
.bascket_line_title_block {

}
.bascket_line_img {
    max-width: 140px;
    max-height: 70px;
}
.bascket_line_img img {
    max-height: 70px;
    object-fit: contain;
}
.bascket_line_title {
    margin-top: 10px;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    color: #292929;
    max-width: 300px;
}
.bascket_count_block {
    height: 50px;
    max-width: 200px;
    border-radius: 200px;
    background: #ffffff;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 25px;
}
.bascket_count_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 50px;
    cursor: pointer;
}
.bascket_count_btn:hover svg path {
    fill: #282828;
}
.bascket_count_btn.disabled {
    cursor: default;
    opacity: 0.8;
}
.bascket_count_btn.disabled:hover svg path {
    fill: #1464FF;
}
.bascket_count_input:read-only {
    cursor: default;
}
.bascket_count_input {
    width: 45px;
    height: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #292929;
    text-align: center;
    border: none;
    outline: none;
    background: none;
}

.bascket_count_price_block {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-right: 50px;
}
.bascket_count_price {
    font-weight: 600;
    font-size: 17px;
    line-height: 19px;
    color: #000000;
}
.empty_bascket {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
}
/* Bascket */

.text_page_text {
    min-height: 55vh;
}


.loader_space {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.7);
    z-index: 999999;
    display: none;
}
.loader_space.active {
    display: flex;
}
.loader {
    width: 50px;
    height: 50px;
    display: block;
    border: solid 5px #1464FF;
    border-radius: 50px;
    border-right-color: transparent;
    border-left-color: transparent;
    animation: rotateAnim linear infinite 1s;
}
@keyframes rotateAnim {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



.paid_details_block {
    margin-top: 25px;
}
.paid_details_line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin-bottom: 7px;
}
.paid_details_line .title {
    font-size: 16px;
    font-weight: 500;
}
.paid_details_line .value {
    font-size: 14px;
    color: #5a5a5a;
}