

.page-intro-point{
    margin-bottom: 20px;
}

.grid-col-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.img_gallery ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.img_gallery li {
    flex-basis: calc(50% - 20px);
}

.img_gallery img {
    width: 100%;
    height: auto;
    border: 1px solid #D0B48C;
    border-radius: 16px;
}



/**/

.tab-block {
    margin: 20px auto 50px auto;
  }
  .tab-block .tab-mnu {
    display: block;
    list-style: none;
    padding: 0;
  }
  .tab-block .tab-mnu li::before{
    display: none;
  }
  .tab-block .tab-mnu:after {
    content: "";
    display: table;
    clear: both;
  }
 
  .tab-block .tab-mnu li{
    display: inline-block;
    box-sizing: border-box;
    background-color: #a79adb;
    color: white;
    text-align: center;
    padding: 10px 15px;
    cursor: pointer;
    color: rgba(113, 15, 61, .8);
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(113, 15, 61, .8);
    border-radius: 10px;
    min-width: 150px;
  }

  .tab-block .tab-mnu li:not(.active):hover {
    color: rgba(75,1,35,.8);
    background: rgba(75,1,35,.13);
    border: 1px solid rgba(75,1,35,.13)
  }

  .tab-block .tab-mnu .active {
    color: #ece2d6;
    background: #7a0f40;
    border: 1px solid #7a0f40;
  }
  .tab-block .tab-cont {
    box-sizing: border-box;
    border-top: 10px solid white;
    color: #292d2f;
  }
  .tab-block .tab-cont .tab-pane {
    padding: 20px 25px;
    background-color: #ece2d6;
    border-radius: 15px;
  }

  .tab-pane .btn--light{
    border: 2px solid #ead2b6;
  }

  .tab-block p,
  .tab-block ul li, 
  .tab-block h3 {
    color: #710F3D;
  }

  .tab-block hr{
    color: rgba(113, 15, 61, .55);
  }

  .tab-cont .tab-pane li::before{
    position: absolute;
    left: 0;
  }

  .tab-cont .tab-pane ul li {
    display: block !important;
    padding-left: 20px;
    position: relative;
  }

  .tab-cont-btn {
    display: inline-block;
    padding: 15px 25px !important;
    background-color: #a79adb;
    border-radius: 50px;
    text-align: center;
    margin: 20px 0;
    color: #fff !important;
    margin-top: 25px;
    text-decoration: none !important;
    transition: all 0.3s;
  }

  .tab-cont-btn:hover {
    background-color: #b7bbf5;
  }

  .block-buttons{
    margin-top: 40px;
    justify-content: center;
  }

  .btn {
    white-space: nowrap;
    min-width: 250px;
  }

  @media (max-width:768px){
    .grid-col-2 {
      grid-template-columns: 1fr;
    }
    .tab-block .tab-mnu li {
      display: block;
      margin-bottom: 15px;
    }
  }