/*bannerMainBlock*/
.bannerMainBlock{
    
    position: relative;
    z-index: 1;
}
.insidepage .bannerMainBlock{
    padding-top: 40px;
}
.homepage .bannerMainBlock:before{
    position: absolute;
    inset: 0px;
    bottom: 250px;
    content: '';
    background: #dedede;
    z-index: -1;
}
.wrapBM{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap:48px 35px;
}
.insidepage .nucBM{
    background: #fefefe;
}
.nucBM{
    display: block;
    background: #f3f3f3;
    transition:all 0.4s;
}
.nucBM span{
    display: block;
}
.nucBM .imgW{
    height: 295px;
    overflow: hidden;
}
.nucBM .imgW img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nucBM .txtBlock{
    
    padding:45px 30px 40px 45px;
}
.nucBM .name{
    font-size: 24px;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
    transition:all 0.4s;
}
.nucBM .anons{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.nucBM .txt{
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition:all 0.4s;
}
.nucBM.bus{
    
    background: var(--colorHead);
}
.nucBM:hover{
    text-decoration: none;
    box-shadow: 0 16px 22px 0 rgba(0,0,0,.1);
}
.nucBM.bus .name{
    color: #fff;
}
.nucBM.bus .txt{
    color: #fff;
}
.nucBMSpecial{
    padding:90px 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.nucBMSpecial .name{
    font-size: 30px;
    color: var(--colorHead);
    margin-bottom: 10px;
}
.nucBMSpecial .more{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}
.insidepage .nucBMSpecial .more{
    color: #000;
}


/*End bannerMainBlock*/

@media screen and (max-width:1449px){
.wrapBM{
    grid-gap: 35px 25px;
}
.nucBM .txtBlock {
  padding: 35px 25px 30px 35px;
}
.nucBM .name{
    font-size: 22px;
  margin-bottom: 15px;
}
.nucBM .anons {
  gap: 10px;
}
.nucBM .txt{
    font-size: 14px;
}
.nucBM .imgW {
  height: 235px;
}
.nucBMSpecial .name {
  font-size: 24px;
}
.nucBMSpecial {
  padding: 40px 20px 50px;
}
.nucBMSpecial .more {
  font-size: 22px;
}
}



@media screen and (max-width:1199px){
.wrapBM {
  grid-template-columns: repeat(3,1fr);
  grid-gap: 25px 20px;
}
}

@media screen and (max-width:991px){
.wrapBM {
  grid-template-columns: repeat(2,1fr);
  grid-gap: 20px;
}
}

@media screen and (max-width:767px){
  .wrapBM {
  display: block;
  margin:0 -25px;
}  
.nucBM {
    width: 280px;
    margin-right: 15px;
}
 .nucBMSpecial {
    padding: 20px ;
    background: #2b2727;
    width: 280px;
    margin-right: 15px;
  }
  .insidepage .nucBMSpecial .more{
    color: #fff;
}
}

.slick-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    display: flex;
    gap: 10px;
    li button {

    }
}

.slick-dots li button {
    content: '';
    position: relative;
    top: 0px;
    left: 0px;
    border-radius: 50px;
    border: 0;
    height: 15px;
    width: 15px;
    background: #7c7c7c;
    text-indent: -9999px; /* Прячем текст */
    overflow: hidden;     /* Предотвращаем отображение текстового содержимого */
    transition: background 0.4s ease;
}


.slick-dots li button:hover {
    content: '';

    background: #eaeaea;

}

.slick-active button {
    background: #eaeaea !important;
}
