/* navbar */

.navigate {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    color: white;
}

.navigate_left {
display: flex;
    align-items: center;
    gap: 65px;
    width: 100%;
}

.navigate.active {
    backdrop-filter: none;
    background: rgba(52, 73, 94, 0.6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

 .navigate_logo img:nth-child(2) {
display: none;
}

.open_mobdal_blog, .close_modal_mob {
display: none;
}

.open_modal_mob, .close_modal_mob {
font-size: 35px;
cursor: pointer;
}

.open_mobdal_blog  {
padding: 0px 10px;
}

.open_mobdal_blog.active .open_modal_mob{
display: none;
}

.open_mobdal_blog.active .close_modal_mob{
display: block;
}

/* .navigate.bg {
    backdrop-filter: blur(10px) !important;
    background: transparent !important;
} */

.navigate_logo {
    max-width: max-content;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 600;
    height: 43px;
}

.navigate_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
}


.navigate_center {    
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigate_tel {
    line-height: 22px;
}

.navigate_title {
    font-weight: 200;
    font-size: 16px;
}

.navigate_tel_number{
    font-weight: 500;
    font-size: 24px;
    color: var(--text-white);
}

.navigate_cashback_balance {
background: rgba(31, 154, 31, 1);
color: var(--text-white);
padding: 2px 20px;
border-radius: 10px;
font-size: 20px;
}

.cashback_currency {
font-size: 16px;
}

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

.navigate_flex {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


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

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

.navigate_right {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    width: inherit;
}

.navigate_cashback_title{
color: var(--text-white);
display: flex;
align-items: end;
gap: 5px;
font-size: 25px;
}

.navigate_balance span {
font-size: 16px;
}

.navigate_list_icon {
display: flex;
align-items: center;
gap: 20px;
}

.navigate_icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
border-radius: 50%;
color: var(--text-white);
cursor: pointer;
font-size: 35px;
}

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

.amount_basket {
position: relative;
}

.amount_basket span {
    position: absolute;
    bottom: 72%;
    right: -10px;
    background: red;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 25px;
    height: 24px;
}

.navigate_right-telegram {
    font-size: 25px;
    color: #1187c3;
    cursor: pointer;
    padding: 10px;
    transform: scale(1.0);
    transition: 0.2s ease;
}

.navigate_right-tel i {
    font-size: 22px;
    color: var(--main-bg);
    cursor: pointer;
}

.navigate_right-telegram:hover {
    transform: scale(1.2);
    transition: 0.2s ease;
}

.navigate_right-button {
    display: flex;
    align-items: center;
    gap: 10px;
}


.user_cab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
}

.user_cab > i {
font-size: 25px;
}

.user_cab span {
position: absolute;
bottom: 72%;
right: -10px;
background: red;
color: var(--text-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
width: 20px;
height: 20px;
}

.drop_cabinet_blog {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.menu_bg{
position: fixed;
visibility: hidden;
opacity: 0;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgb(52 73 94 / 73%);
z-index: -1;
transition: 0.2s ease;
backdrop-filter: blur(10px);
}
.no-scroll {
    overflow: hidden !important;
  }
.drop_cabinet_blog.active, .menu_bg.active {
    opacity: 1;
    visibility: visible;
    z-index: 100;
    transition: 0.2s ease;
}

.menu_bg.active {
    z-index: 110;
}

.drop_cabinet_user {
    color: black;
    font-size: 18px;
    font-weight: 400;
}

.drop_cabinet_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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


.drop_cabinet_item {
    display: flex;
    flex-direction: column;
    gap: 10px;  
}



.drop_cabinet_item_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lessons_blog a {
     color: var(--text-white);
    font-size: 18px;
    font-weight: 300;
}

.drop_cabinet_item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.drop_cabinet_icon {
display: none;
transition: 0.2s ease;
}

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

.drop_cabinet_title {
color: var(--text-white);
font-size: 20px;
font-weight: 600;
}

.drop_cabinet_item_link{
color: var(--text-white);
font-size: 18px;
font-weight: 300;
}

.drop_cabinet_item_link:hover, .drop_cabinet_title:hover {
    color: var(--text-white);
}


.exit_btn {
    display: inline-flex;
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgb(197, 197, 197);
    color: black;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    transition: 0.2s ease;
    gap: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.exit_btn:hover {
    background: var(--main-bg);
    transition: 0.2s ease;
    color: white;
}

.amocrm_btn_blue {
    max-width: 257px;
    width: 100%;
    height: 60px;
    display: inline-flex;
    border-radius: 10px;
    background: rgba(0, 111, 159, 1);
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    transition: 0.2s ease;
    gap: 10px;
    text-transform: uppercase;
}

.amocrm_btn_blue:hover {
    color: var(--text-white);
background: rgba(0, 0, 0, 1);
}

.amocrm_btn {
    width: max-content;
    display: inline-flex;
    background: var(--btn-bg);
    border-radius: 10px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    transition: 0.2s ease;
    gap: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.amocrm_btn.green {
    background: #039c1e;
}

.amocrm_btn.blue {
    background: rgba(0, 125, 171, 1);
}

.amocrm_btn.red {
    background: var(--color-red);
}

.amocrm_btn.yellow {
    background: var(--color-yellow);
    color: #000000;
}


.amocrm_btn:hover {
    background: var(--main-bg);
    transition: 0.2s ease;
    color: white;
}

.amocrm_btn.red:hover {
    background: var(--color-red-hover);
}

.amocrm_btn.blue:hover {
    background: rgb(18 112 147);
}

.amocrm_btn.yellow:hover {
background: var(--color-yellow-hover);
color: #000000;
}

.exit {
    width: 42px;
    height: 42px;
    }

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

.amocrm_btn span {
    font-size: 16px;
    text-transform: math-auto;
}

.login-text {
    display: block;
    text-align: end;
    width: 100%;
    margin-bottom: 15px;
    color: #1187c3;
}

.navigate_btn:nth-child(2) {
    border: 2px solid var(--main-bg);
    background: transparent;
    color: black;
}

.navigate_btn:nth-child(2):hover {
    background: var(--main-bg);
    color: white;
    color: white;
    transition: 0.2s;
}

.header_user_info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_user_ava {
    max-width: 50px;
}

.nav_mob {
position: fixed;
bottom: 0;
left: 0;
z-index: 100;
width: 100%;
display: none;
}

.nav_mob_list {
display: flex;
justify-content: center;
gap: 15px;
width: 100%;
background: #051320;
padding: 10px 20px;
}

.nav_mob_item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
mix-blend-mode: difference;
color: var(--text-white);
font-size: 16px;
padding: 10px;
border-radius: 10px;
}

.nav_mob_item_icon {
font-size: 20px;
}

.nav_mob_item.active, .nav_mob_item.hover {
background: var(--btn-bg);
}

.mob_item{
display: none;
}

.language {
display: flex;
width: max-content;
color: black;
}

.language span {
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
background: rgb(255, 255, 255);
border-radius: 10px;
height: 42px;
width: 42px;
}

/* navbar finished */


