* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}


.error_blank {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 850px;
    width: 100%;
    height: max-content;
    border-radius: 16px;
    padding: 25px;
    background: rgb(255 227 227);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.error_blank_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.error_blank_text {
    font-size: 18px;
    font-weight: 400;
}

.error_blank_close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: red;
    color: white;
    border-radius: 10px;
    opacity: 0.5;
    transition: 0.2s ease;
    cursor: pointer;
}

.error_blank_close:hover {
    opacity: 1;
    transition: 0.2s ease;
}

.error_blank_text ul,
.input_blog li,
.lessons_list {
    text-decoration: none !important;
    list-style: none !important;
    padding-left: 0px !important;
    margin-bottom: 0px !important;
}

.social {
    position: unset;
    margin-top: 20vh;
    background: rgb(255 255 255);
}

.social .error_blank_close {
    display: none;
}

body {
    min-height: 100vh;
    background: #339DC7;
    background-attachment: fixed;
}

.container {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 15px;
}

.container_mini {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input:focus {
    outline: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    width: 100%;
}

p {
    margin-bottom: 12px;
}

:root {
    --main-bg: #007dab;
    --color-red: rgba(219, 115, 99, 1);
    --color-red-hover: rgb(222 69 46);
    --color-yellow: rgba(255, 196, 15, 1);
    --color-yellow-hover: rgba(255, 196, 15, 0.8);
    --color-text-grey: rgba(98, 98, 98, 1);
    --btn-bg: rgba(5, 19, 32, 1);
    --btn-bg-hover: rgba(68, 68, 68, 1);
    --text-blue: #339DC7; 
    --text-blue-hover: rgba(0, 111, 159, 0.8);
    --text-color: rgba(98, 98, 98, 1);
    --text-white: rgb(255, 255, 255);
}

.offcanvas-end {
width: 600px !important;
}

/* blog_404 */

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

.blog_404_content {
    position: relative;
    padding: 20px;
    margin: 10px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0s;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: var(--design-bg) -1px 0px 7px 1px;
}

.blog_404_number {
    font-size: 110px;
    text-align: center;
}

.blog_404_text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

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

.blog_404_link {
    display: inline-block;
    margin: auto;
    margin-top: 20px;
    background: var(--main-bg);
    border-radius: 8px;
    color: rgb(255, 255, 255);
    transition: 0.2s ease;
    padding: 10px 20px;
}

.blog_404_link:hover {
    opacity: 0.8;
    color: white;
    transition: 0.2s ease;
}


/* blog_404 finished */

.loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: rgb(0 0 0 / 79%);
z-index: 10000000;
}

.loading_text {
font-size: 20px;
font-weight: 500;
color: var(--text-white);
text-align: center;
}

.loading_content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
max-width: 300px;
width: 100%;
height: max-content;
gap: 20px;
}

.loading_text {
   animation: fadeInOut 2s ease-in-out infinite;
}

  @keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
  }
  


.loading_line{
height: 70px;
width: 70px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
cursor: progress;
border-radius: 50%;
border-top: 8px solid var(--main-bg);
border-bottom: 5px solid #ffffff00;
border-left: 8px solid var(--main-bg);
border-right: 8px solid transparent;
animation: loading 1s linear infinite;
}

@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

.table_blog {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(198, 198, 198, 1);
    height: max-content;
}

.table_blog thead span {
    cursor: pointer;
}

table {
    width: 100%;
}

thead {
  background: rgba(234, 234, 234, 1);
}

th {
    font-weight: 400;
    color: rgba(0, 0, 0, 1);

}

th,
td {    
    font-size: 13px;
    padding: 10px;
    border-bottom: 1px solid rgba(198, 198, 198, 1);
}

tr:last-child td {
    border-bottom: none;
}


.td_flex {
display: flex;
align-items: center;
gap: 15px;
}

.td_icon {
color: black;
cursor: pointer;
}

.td_icon:hover {
color: black;
}

.table_mob {
    display: none;
}

.table_mob_list {
    background: rgba(41, 41, 41, 1);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.table_mob_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-white);
}

.table_mob_item span {
    width: 50%;
}

.table_mob_item span:nth-child(2) {
    text-align: end;
}

.table_btn {
border-radius: 6px;
border: 1px solid rgba(190, 212, 241, 1);
background: rgba(245, 249, 255, 1);
box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
font-size: 14px;
color: rgba(122, 122, 122, 1);
cursor: pointer;
padding: 4px 18px;
max-width: 100px;
width: 100%;
}

.custom_checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 9px;
}

.custom_checkbox input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.custom_checkbox .checkmark {
  width: 25px;
  height: 25px;
  background: #eee;
  border-radius: 4px;
  margin-right: 8px;
  border: 2px solid #ccc;
  transition: background 0.2s, border 0.2s;
  display: inline-block;
  position: relative;
  flex: none;
}

.custom_checkbox input[type="checkbox"]:checked + .checkmark {
  background: #4caf50; /* Ваш цвет */
  border-color: #4caf50;
}

.custom_checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom_checkbox input[type="checkbox"]:checked + .checkmark:after {
  display: block;
}

.custom_checkbox .checkmark:after {
    left: 7px;
    top: 2px;
    width: 8px;
    height: 14px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    position: absolute;
    content: "";
}



.btn {
padding: 10px 20px;
font-size: 16px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
}

.btn_yellow{
background: var(--color-yellow);
}

.btn_yellow:hover {
background: var(--color-yellow-hover);
}

.btn_white {
background: var(--text-white);
}

.crm_btn {
    background: var(--btn-bg);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    width: max-content;
}


.contact_wrapper {
    position: fixed;
    bottom: 90px;
    right: 65px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.contact_btn {
    position: relative;
    cursor: pointer;
    z-index: 2;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    overflow: hidden;
    -webkit-animation: t898__btn-pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    background: #039c1e;
    color: white;
    font-size: 20px;
}

.contact_animated {
    position: absolute;
    width: 70px;
    height: 70px;
    left: -5px;
    top: -5px;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    border-radius: 100%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
    border: 3px solid #00cc24;
    animation: t898__pulsate 1s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation: t898__pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0;
}

.contact_wrapper_text {
    position: absolute;
    right: 80px;
    white-space: nowrap;
    padding: 9px 13px;
    font-size: 15px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: .85;
    transition: all 0.1s linear;
}

.contact_wrapper_text:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #292929;
}

.contact_link {
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    background: white;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg_link {
    color: #1d98dc;
}

.ph_link {
    font-size: 25px;
    background: #2b8c1a;
    color: white;
}

.tg_link:hover {
    color: #1d98dc;
}

.ph_link:hover {
    color: white;
}


.ph_link i {
    transform: rotate(334deg);
}

.contact_link_text {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #fff;
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px;
    top: 30%;
    background: #292929;
    color: #fff;
    opacity: 0;
    transition: all 0.1s linear;
}

.contact_link_text:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #292929
}

.contact_link:hover .contact_link_text {
    opacity: 1
}

.contact_link:hover+.contact_link_text {
    opacity: 1
}

.contact_link:hover+.contact_link_text:after {
    opacity: 1
}

@keyframes t898__btn-pulsate {
    0% {
        transform: scale(1, 1)
    }

    25% {
        transform: scale(1.1, 1.1)
    }

    50% {
        transform: scale(1, 1)
    }
}

@keyframes t898__pulsate {
    0% {
        -webkit-transform: scale(.8, .8);
        opacity: 0
    }

    25% {
        opacity: .4
    }

    50% {
        -webkit-transform: scale(1.3, 1.3);
        opacity: 0
    }

    100% {
        -webkit-transform: scale(.8, .8);
        opacity: 0
    }
}

.contact_check {
    display: none;
}

.contact_close {
    display: none;
    color: #292929;
    font-size: 25px;
}

.contact_check:checked~.contact_wrapper_text {
    opacity: 0;
    visibility: hidden
}

.contact_check:checked~a:nth-of-type(1) {
    transition: all 0.2s ease-in-out;
    transform: translate(0, -135%)
}

.contact_check:checked~a:nth-of-type(2) {
    transition: all 0.225s ease-in-out;
    transform: translate(0, -255%)
}

.contact_check:checked~a:nth-of-type(3) {
    transition: all 0.25s ease-in-out;
    transform: translate(0, -375%)
}

.contact_check:checked~a:nth-of-type(4) {
    transition: all 0.275s ease-in-out;
    transform: translate(0, -495%)
}

.contact_check:checked~a:nth-of-type(5) {
    transition: all 0.3s ease-in-out;
    transform: translate(0, -615%)
}

.contact_check:checked~a:nth-of-type(6) {
    transition: all 0.325s ease-in-out;
    transform: translate(0, -735%)
}

.contact_check:checked~a:nth-of-type(7) {
    transition: all 0.325s ease-in-out;
    transform: translate(0, -855%)
}

.contact_check:checked~a:nth-of-type(8) {
    transition: all 0.35s ease-in-out;
    transform: translate(0, -975%)
}

.contact_check:checked~a:nth-of-type(9) {
    transition: all 0.375s ease-in-out;
    transform: translate(0, -1095%)
}

.contact_check:checked~a:nth-of-type(10) {
    transition: all 0.4s ease-in-out;
    transform: translate(0, -1215%)
}

.contact_check:checked~a:nth-of-type(11) {
    transition: all 0.425s ease-in-out;
    transform: translate(0, -1335%)
}

.contact_check:checked~.contact_animated {
    display: none
}

.contact_check:checked~.contact_link {
    opacity: 1;
    visibility: visible
}

.contact_check:checked+label {
    background: #fff;
    animation: none
}

.contact_check:checked+label .contact_active {
    display: none;
}

.contact_check:checked+label .contact_close {
    display: block;
}

.report_dropdown {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 50px;
    text-align: left;
    cursor: pointer;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report_dropdown li {
    list-style: none !important;
    text-decoration: none !important;

}

.report_li {
    position: relative;
    max-width: 100%;
    display: block;
    width: 100%;
    cursor: pointer;
    padding: 5px 20px;
    font-size: 14px;
}

.report_li.active,
.report_li:hover {
    background: var(--main-bg);
    color: var(--text-white);
}

.report_option {
    min-width: 85px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(0, 111, 159, 1);
    background: linear-gradient(0deg, #F2F6FD 0%, #F2F6FD 100%);
    color: var(--text-color);
    padding: 10px 30px 10px 20px;
}

.report_dropdown.active {
    border-radius: 15px 15px 0 0;
}

.report_dropdown.active .report_ul {
    display: block;
    left: 0px;
    top: 100%;
    position: absolute;
    z-index: 1100;
    transition: height 0.2s ease 0s;
    background: linear-gradient(0deg, #F2F6FD 0%, #F2F6FD 100%);
    cursor: pointer;
    border-radius: 0 0 15px 15px;
    min-width: 100%;
    overflow-x: hidden;
    border: 1px solid rgba(0, 111, 159, 1);
    border-top: none;
}

.report_dropdown.active .questions_ul {
    display: block;
    left: 0px;
    top: 100%;
    position: absolute;
    z-index: 1100;
    transition: height 0.2s ease 0s;
    background: linear-gradient(0deg, #F2F6FD 0%, #F2F6FD 100%);
    cursor: pointer;
    border-radius: 0 0 15px 15px;
    min-width: 100%;
}

.report_dropdown.active .report_option {
    border-radius: 15px 15px 0px 0px;
}
.report_name,
.report_option li {
    font-size: 18px;
    font-weight: 400;
}

.product-main-name {
    font-size: 16px;
}

.report_dropdown .report_ul {
    position: relative;
    top: 55px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
}

.report_dropdown .questions_ul {
    position: relative;
    top: 55px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
}

.report_option_icon {
    content: "";
    position: absolute;
    top: 27%;
    right: 14px;
    font-size: 16px;
    pointer-events: none;
    z-index: 0;
}


.report_option_icon img {
    width: 100%;
}

.report_dropdown.active .report_option_icon {
    transform: rotate(180deg);
}

/* error */

.error_block {
    background: rgba(242, 246, 253, 1);
    border-radius: 10px;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.error_block_top {
    padding: 24px 20px 20px;
    border-bottom: 3px solid white;
    text-align: center;
}

.error_block_title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-white);
}

.error_block_body {
    padding: 30px;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

}

.error_block_body_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
}

.error_block_body_desc {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 50px;
}

.error_block_cancel {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 20px;
    font-weight: 400;
    border: 1px solid rgba(68, 68, 68, 1)
}

/* layout */

/* tabs */

.page_blog {
    padding-top: 90px;
    }

.tabs {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(52, 73, 94, 1);
    background: rgba(52, 73, 94, 1);
    border-radius: 10px;
    overflow: hidden;
}

.tabs_blog {
    display: none;
}

.tabs_item {
    padding: 10px 20px;
    cursor: pointer;
    color: white;
    text-align: center;
}

.tabs_item.active {
    background: rgba(30, 39, 46, 1);
}


/* .... */

/* form */

.form_content {
    margin-top: 30px;
    background: var(--text-white);
    padding: 20px;
    border-radius: 15px;
}

.form_item {
    margin-bottom: 15px;
}

.form_item_title {
    font-size: 20px;
    color: var(--text-color);
}

.form_item_input {
    max-width: 300px;
    width: 100%;
    height: 45px;
    margin-top: 5px;
}

.form_item_input input {
    width: 100%;
    height: 100%;
    outline: unset;
    border-radius: 15px;
    border: none;
    padding: 10px;
    background: #f2f6fd;
    border: 1px solid rgba(0, 111, 159, 1);
}

.form_label_list {
    display: flex;
    gap: 15px;
}

.form_label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f2f6fd;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
}

.form_label input {
    display: none;
}

.form_check {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--main-bg);
    border-radius: 100%;
}

.form_check::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    background: var(--main-bg);
    border-radius: 100%;
    display: none;
}

.form_label.active .form_check::before {
    display: block;
}

.form_label_blog .form_item {
    display: none;
}

.form_label_blog .form_item:nth-child(1) {
    display: block;
}

.form_label_blog {
    margin-top: 10px;
}

.message_title {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 10px;
}

#loginModal .message_title {
    color: white;
}

.login_message {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.login_button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.amocrm_buy_drop {
    max-width: 300px;
    width: 100%;
}

.org_item {
    margin-bottom: 10px;
    width: 100%;
}

.org_item_input {
    width: 100%;
}

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

#form_Modal .amoforms-sended-message_wrapper {
    bottom: 0 !important;
}

.swiper_prev, .swiper_next {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
color: var(--text-white);
font-size: 30px;
z-index: 10;
height: 100%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}

.swiper_prev {
left:1%;
}

.swiper_next {
right: 1%;
}

.swiper-button-lock {
display: none !important;
}

.contact_form_content {
background: var(--text-white);
border-radius: 10px;
padding: 30px;

}

.contact_row {
display: flex;
gap: 20px;
justify-content: space-between;
margin-top: 20px;
}

.contact_form_title {
    font-weight: 300;
    font-size: 48px;
    text-align: center;
}


.contact_form_text {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}

.contact_form {
margin-top: 60px;
}

.form_contact {
background: linear-gradient(0deg, #339DC7, #339DC7);
border: 5px solid rgba(52, 73, 94, 0.5);
padding: 25px;
max-width: 530px;
width:100%;
flex: 1;
}

.form_contact .form_item_input {
max-width: 100%;
}

.form_contact .form_item_input input, .form_contact .amocrm_btn {
border-radius: 0px;
}

.contact_info {
display: flex;
flex-direction: column;
flex: 1;
gap: 20px;
}

.contact_title {
font-weight: 300;
font-size: 24px;
color: var(--text-white);
margin-bottom: 31px;
}

.contact_item {
display: flex;
}

.contact_item span {
width: 100px;
display: block;
}

.contact_item a {
color: black;
}

.contact_col_text {
    font-weight: 400;
    font-size: 16px;
        
}

.documents {
margin-top: 50px;
}

.documents_content {
background: rgba(52, 73, 94, 1);
border-radius: 30px;
border: 1px solid rgba(5, 56, 86, 1);
padding: 20px;
}

.documents_list {
display: flex;
gap:40px;
justify-content: center;
}

.form_blog {
background: var(--text-white);
border-radius: 15px;
}

.form_blog_header {
padding: 10px 25px;
background: rgba(0, 111, 159, 1);
color: var(--text-white);
font-weight: 400;
font-size: 22px;
border-radius: 15px 15px 0px 0px;
}

.form_blog_header span{
    font-weight: 400;
    font-size: 15px;
    
}

.form_blog_content {
padding: 20px;
background: var(--text-white);
}

.form_blog_center {
display: flex;
flex-direction: column;
align-items: center;
max-width: 560px;
margin: auto;
}


/* footer */

.footer_blog {
padding: 20px 0px;
background: rgba(52, 73, 94, 1);
border: 1px solid rgba(5, 56, 86, 1)
}

.footer_content {
display: flex;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

.footer_logo {
display: flex;
align-items: center;
gap: 11px;
color: var(--text-white);
font-weight: 700;
font-size: 13px;
}

.footer_logo img {
width: 43px;
height: 43px;
}

.footer_logo:hover{
color: var(--text-white);
}

.footer_info {
color: var(--text-white);
font-size: 14px;
font-weight: 400;
}

.footer_title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-white);    
}

.footer_info {
margin-top: 15px;
}

.footer_list {
list-style: none !important;
padding-left: 0px !important;
}

.footer_pay_list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.footer_pay_item {
background: rgba(255, 255, 255, 1);
border-radius: 2px;
padding: 1px;
}

.footer_list_link{
color: var(--text-white);
}

.footer_list_link:hover {
color: var(--text-white);
}

.footer_message {
display: flex;
gap: 25px;
align-items: center;
}

.footer_message_item{
max-width: 40px;
width: 100%;
}

.tel_item {
    font-weight: 300;
    font-size: 20px;
    line-height: 100%;
    color: var(--text-white);
}

.tel_item:hover {
color: var(--text-white);
}

.footer_message_item img {
width: 100%;
object-fit: scale-down;
}

/* footer finished */


.faq_list_blog {
margin-top: 20px;
}

.faq_table {
max-width: 60%;
}


.faq_blog_dropdown {
    width: 100%;
    background: white;
    box-shadow: 0 16px 16px -10px rgba(34, 47, 62, .15), 0 0 40px 1px rgba(34, 47, 62, .15);
    border-radius: 15px;
    font-weight: 350;
    font-size: 19.1534px;
    line-height: 140%;
    margin-bottom: 20px;
}

.faq_header {
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq_header_info {
    font-size: 20px;
    font-weight: 500;
    color: rgb(7, 7, 7);
}

.faq_header_icon {
    transition: 0.2s ease;
    font-size: 20px;
}

.faq_header.active .faq_header_icon {
 transform: rotate(180deg);
 transition: 0.2s ease;
}

.faq_header_img {
    max-width: 400px;
    width: 100%;
}

.faq_header_info {
    line-height: 150%;
    letter-spacing: -0.2px;
    color: #000000;
    font-size: 16px;
    
}

.faq_info {
    display: none;
    padding: 15px;
}

.faq_info p {
    font-size: 16px;
    letter-spacing: -0.2px;
    color: #777777;
}

.faq_info b {
    color: black;
    font-weight: 500;
}

.faq_header_drop {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 10;
    width: 100%;
    text-align: center;
    cursor: pointer;
    color: black;
    padding: 10px;
    border-top: 1px solid #c5c5c5;
}

.navigation {
width: 100%;
}

.cat_flex .navigation_flex {
  grid-column: 1 / -1;    
  width: 100%;
  display: flex;          
  justify-content: center;
  margin-top: 20px;     
}

.navigation_flex {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;

}

.pages {
display: flex;
align-items: center;
gap: 15px;
}

.navigation_flex > span, .navigation_flex > a, .pages > span, .pages > a {
background: rgba(255, 255, 255, 1);
padding: 5px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
}

.navigation_flex > span, .pages > span {
opacity: 0.6;
}

.auth_blog {
display: flex;
align-items: center;
height: 90vh;
}

.auth_flex {
background: rgba(255, 255, 255, 1);
padding: 45px;
border-radius: 10px;

display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.paginatsion {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-top: 20px;
}

.paginatsion_item {
background: rgba(255, 255, 255, 1);
padding: 5px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(0, 0, 0, 0.1);
color: var(--text-black);
width: 30px;
height: 30px;
cursor: pointer;
}

.paginatsion_item.active {
    background: #1d98dc;
    color: var(--text-white);
}

.navigation_flex > span, .pages > span {
opacity: 0.6;
}
