.gallary {
    padding-top: 120px;
    background-image: url('../../images/fon.svg');
    min-height: 1385px;
    position: relative;
}

.gallary_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: stretch;
}

.gallary_wrap .title {
    margin-bottom: 10px;
}

.gallary_container_wrap {
    width: 100%;
    display: flex;
    gap: 20px;
}

.gallary_col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.gallary_block_col {
    overflow: hidden;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    background: #2D2D2D;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallary_block_col.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallary_block_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallary_block_col.big {
    height: 500px;
}

.gallary_loader {
    display: flex;
    justify-content: center;
}

.gallary_loader button {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    display: flex;
    padding: 16px 26px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 41px;
    border: 1px solid #404040;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallary_loader button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.gallary_loader button:active {
    transform: scale(0.98);
}

.svg_bg_top_info_gallary{
    position: absolute;
    top: 200px;
}

.svg_bg_top_info_gallary.right{
    right: 0;
    top: 300px;
}

.svg_bg_top_info_gallary::after{
  content: "";
  position: absolute;
  top: 9%;
  width: 844.664px;
  height: 944.406px;
  transform: rotate(-26deg);
  border-radius: 50%;

  opacity: 0.6;
  background: rgba(255, 43, 64, 0.05);

  filter: blur(200px);
  left: -394px;
}

@media (max-width: 910px) {
    #galleryCol3{
        display: none;
    }
}

@media (max-width: 800px) {
    .gallary {
        padding-top: 0;
        padding-bottom: 46px;
    }
    .gallary_wrap {
        gap: 32px;
    }
}


@media (max-width: 610px) {
    .gallary_block_col{
        height: 200px;
    }
    .gallary_block_col.big{
        height: 300px;
    }
    .gallary{
        min-height: 840px;
    }
}