.section-nystours {
    background-image: url('images/quick-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    text-align: center;

}

.section-nystours h1 {
    color: aliceblue;
    font-size: 74;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

/* CSS for the right column with the text */
.right-column {
    flex: 35%;
    padding: 20px;
    background-color: #000000;
    /* Light gray background color */
    border-radius: 16px;
}

/* CSS for the text */
.text {
    font-size: 18px;
    color: #f0f0f0;
}

/* CSS for the main container */
.nystours {
    display: flex;
    border-radius: 16px;
    color: #f0f0f0;
}

.nystours .right-column h3,
p {
    color: #f0f0f0;
}

/* CSS for the left column with the image */
.left-column {
    flex: 65%;
    /* padding: 20px; */
    margin-right: 20px;
    border-radius: 16px;
}

/* CSS for the image */
.image {
    max-width: 100%;
    height: 100%;
    border-radius: 16px;
}

.tick-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #4CAF50;
    /* Green color for the tick icon */
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    top: 5px;
}

/* CSS for the list items */
li {
    list-style: none;
    margin-bottom: 10px;
}

/* CSS for the button */
.button {
    padding: 10px 20px;
    background-color: #039A68;
    /* Blue color for the button */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.nystours .right-column ul li {
    color: #f0f0f0;
}


/*--------------------------------*/
.nystours {
    display: flex;
    margin-right: 75px;
    margin-left: 75px;
}

/* CSS for the left column */
.left-column1 {
    flex: 65%;
    padding: 20px;
}

/* CSS for the heading and text in the left column */
.left-column1 h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.right-column1 h2 {
    font-size: 24px;
    /* margin-bottom: 10px; */
}

.left-column1 p {
    font-size: 16px;
    line-height: 1.6;
}

/* CSS for the right column */
.right-column1 {
    flex: 35%;
    padding: 20px;
    background-color: #f0f0f0;
    /* Light gray background color for the right column */
}

/* CSS for the title and list in the right column */
.right-column1 h3 {
    font-size: 20px;
    /* margin-bottom: 10px; */
}

.right-column1 ul {
    list-style: none;
    padding: 0;
}

.right-column1 li {
    font-size: 16px;
    margin-bottom: 1px;
}

/*----------------------------------*/
.nystours2 {
    display: flex;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.left-half {
    flex: 1;
    padding-right: 20px;
}

.right-half {
    flex: 1;
}

h3 {
    text-align: center;
    color: #202020;
}

p {
    line-height: 1.6;
    color: #666;
}

/* Ensure the map fills the entire right half of the container */
iframe {
    width: 100%;
    height: 100%;
}

.sentence {
    cursor: pointer;
    color: #039A68
}

.hidden-content {
    display: none;
}

.container3 {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.left-half3 {
    flex: 1;
    padding-right: 20px;
}

.separator {
    flex: 0 0 50%;
    border-right: 1px solid #ccc;
    margin: 0 10px;
}

h1 {
    text-align: center !important;
    color: #333;
}

p {
    line-height: 1.6;
    color: #666;
}

.section {
    margin-top: 30px;
}

h2 {
    color: #333;
}

ul {
    list-style-type: disc;
}

.left-half3 .section span {
    color: #039A68;
}
.image-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .image-row img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 1px solid #ccc;
  }
  
  /* Styles for mobile screens */
  @media (max-width: 768px) {
    .image-slider {
      overflow: hidden; /* Hide the overflowing images */
    }
  
    .image-row {
      display: flex;
      overflow-x: auto; /* Allow horizontal scrolling for mobile */
      scroll-snap-type: x mandatory; /* Enable snap-scrolling */
      -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS devices */
    }
  
    .image-row img {
      width: 100%; /* Adjust image width for mobile */
      height: auto; /* Allow images to scale proportionally */
      scroll-snap-align: start; /* Snap the images to the start of the container */
    }
  }
#row {
    padding-top: 70px;
}
/* Styles for larger screens */
#row {
    padding-top: 70px;
  }
  
  .row {
    display: flex;
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .column-left, .column-right {
    flex: 50%;
    padding: 0 100px;
    background-color: #ffffff;
  }
  
  .custom-bullets {
    list-style-type: circle;
    padding-left: 20px;
  }
  
  .custom-bullets li {
    position: relative;
    padding-left: 25px;
  }
  
  .custom-bullets li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #029e9d;
  }
  
  .text-column {
    padding: 20px 100px;
  }
  
  .column-left1 {
    flex: 40%;
    padding: 0 100px;
    background-color: #ffffff;
  }
  
  .column-right1 {
    flex: 60%;
    padding: 0 100px;
    background-color: #ffffff;
  }
  
  /* Basic styles for the button */
  /* Add styles for the container to center the button */
  .center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
    margin-bottom: 20px;
  }
  
  /* The rest of the button styles and animation remain the same */
  .animated-button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .animated-button:hover {
    animation: pulsate 2s ease infinite; /* Apply the new animation */
  }
  
  /* Styles for mobile screens */
  @media (max-width: 768px) {
    #row {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  
    .row {
      display: flex;
      flex-wrap: wrap;
      padding: 10px;
    }
  
    .column-left, .column-left1, .column-right, .column-right1 {
      flex: 100%;
      padding: 0 20px;
    }
  
    .text-column {
      padding: 10px;
    }
  
    .custom-bullets {
      padding-left: 10px;
    }
  
    .custom-bullets li::before {
      font-size: 20px;
    }
  
    .center-container {
      margin-bottom: 10px;
    }
  
    /* Additional styles for small screens */
    .animated-button {
      font-size: 16px;
    }
  }  
  @keyframes pulsate {
    0% {
      transform: scale(1); /* Start with normal size */
    }
    50% {
      transform: scale(1.1); /* Scale up to 110% */
    }
    100% {
      transform: scale(1); /* Return to normal size */
    }
  } 
  .white {
    text-align: left !important;
  }