/*стили практиканта*/
/* кнопки на сайте*/

.actionBtn{
    width: 270px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: #c6ebae;
    color: #7d2e85;
    transition: 0.3s;
    transform: scale(1);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border: none;
    margin-right: 15px;
    margin-left: 15px;
    font-family: 'McoFonts';
    font-size: 20px !important;
    font-weight: 400;
    padding: 5px 0px 0px 0px;
    
}

.actionBtn:hover{
    background-color: #7d2e85;
    transform: scale(1.15);
    transition:  0.3s;
    color: #FFFFFF;
     cursor: pointer;
}

/*кнопка перехода на страницу другого клуба (находится на внутренней странице клуба)*/
  .nextClubNavBtn{
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1500;
        top: 50vh;
        right: 5%;
        width: 60px;
        height: 60px;
        transition: 0.3s;
        cursor: pointer;
         /*размытие фона за кнопкой*/
        backdrop-filter: blur(2px);
        border-radius: 50%;
    }
    .nextClubNavBtn:hover{
        transform: scale(1.1);
        transition: 0.3s;
    }
    .nextClubNavBtn:hover::after{
          content: "СЛЕДУЮЩИЙ КЛУБ";
          position: absolute;
          top: -40px;
          left: -30px;
          width: 200%;
          height: 100%;
          color: #b8b8ff;
          font-family: 'McoFonts';
          font-size: 16px;
          font-weight: medium;
          text-align: center;
    }
    /*кнопку повернул*/
    .arrow{
        transform: rotate(-45deg);
    }
    .arrow:hover{
        transform: rotate(315deg);
        transition: 0.5s;
    }
        
/*кнопка разврата на предыдущую страницу клуба  (находится на внутренней странице клуба)*/
.previousClubNavBtn{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    top: 50vh;
    left: 5%;
    width: 60px;
    height: 60px;
    transition: 0.3s;
    cursor: pointer;
    /*размытие фона за кнопкой*/
    backdrop-filter: blur(2px);
    border-radius: 50%;
    
}
.previousClubNavBtn:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.previousClubNavBtn:hover::after{
    content: "ПРЕДЫДУЩИЙ КЛУБ";
    position: absolute;
    top: -40px;
    left: -30px;
    width: 200%;
    height: 100%;
    color: #b8b8ff;
    font-family: 'McoFonts';
    font-size: 16px;
    font-weight: medium;
    text-align: center;
}
 /*кнопку повернул*/
.reverse-arrow{
    transform: rotate(-225deg);
}
.reverse-arrow:hover{
    transform: rotate(-585deg);
    transition: 0.5s;
}

