.s-intro__content {
  --right-block-width: 500px;
  z-index: 2;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1400px;
  height: 100%;
  font-weight: 300;
  color: white;
  padding-bottom: 20rem;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .s-intro__content {
    margin-top: -40px;
  }
}

.s-intro__content-btn {
    --btn-height     : calc(var(--vspace-btn) - 1rem);
    font-size        : calc(var(--text-size) * 0.8889);
    background-color : white;
    border-color     : white;
    margin-right     : 5px;
    margin-bottom    : 0;
}
#margin {
    margin-right: 15px;
    margin-bottom: 100px;
    margin-top: -170px;
}
 /* Style the "Show More" link */
    .show-more {
      display: inline-block;
      padding: 10px;
      margin-bottom: 30px;
      background-color: hsla(144, 37%, 39%, 1);
      cursor: pointer;
      border: none;
      border-radius: 10px;
      color: #FFFFFF;
    }

    /* Hover effect */
    .show-more:hover {
      background-color: hsla(144, 37%, 29%, 1); /* Green-like color */
      color: #fff;
    }

    /* Hide the image container by default and add fade-in transition */
    .image-container {
      display: none;
      transition: opacity 1s ease;
    }

    /* Set opacity to 1 for visible images */
    .image-container.visible {
      display: block;
      opacity: 1;
    }
    #preloader {
    position        : fixed;
    display         : flex;
    flex-flow       : row wrap;
    justify-content : center;
    align-items     : center;
    background      : var(--color-preloader-bg) url('/enter/img/logo_new.png') no-repeat center;
    background-size : 28px;
    z-index         : 500;
    height          : 100vh;
    width           : 100%;
    opacity         : 1;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 99999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 99%;
  max-height: 99%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  color: white;
  cursor: pointer;
  z-index: 100;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: white;
  cursor: pointer;
  z-index: 2;
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
  z-index: 2;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (max-width: 600px) {
      .s-intro__content-title {
        font-size: 38px; /* Adjust the size as needed */
        margin-bottom: 50px;
      }
      .s-intro__content-left {
          margin-right:-20px;
          width: 120%;
      }
    }
.s-numbers {
            text-align: center;
            padding: 20px;
        }
        .icon {
            color: #4e73df; /* Example color, adjust per icon */
            font-size: 3em; /* Larger size */
            margin-bottom: 15px; /* Space between icon and number */
        }
        .num {
            font-size: 2em;
            font-weight: bold;
        }
        .counter-items__item {
            margin-bottom: 20px;
        }
        /* Additional styles here for layout, typography, etc. */