.icin svg {
  width: 10px;
}
.icin svg {
  margin-right: 10px;

  background: #00b3a1;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  padding: 5px;

  margin-top: 10px;

  position: relative;
}

.icin svg::before {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  color: #fff;
}
.icin svg {
  transition: 400ms;
}
.icin svg:hover {
  background: transparent;

  border: 1px solid #00b3a1;

  width: 30.5px;

  height: 30.5px;
}

.icin svg::before {
  transition: 400ms;
}

.icin svg:hover::before {
  transform: translate(-50%, -50%) rotate(15deg) scale(1.1);
}
.gallery {
  background-color: #00b3a1;
  padding-bottom: 20px;
}
.gallery-head h2 {
  color: #ffffff;
  text-decoration: underline #ffffff 3px;
  text-underline-offset: 15px;
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  margin-bottom: 51px;
  padding-top: 40px;
  font-size: 40px;
}
.lightbox {
  border: 0;
  box-shadow: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: 0.2s;
}

.lightbox-zoom {
  bottom: 0;
  color: #000;
  font-weight: 500;
  line-height: 1;
  padding: 0.1em 0.1em;
  position: absolute;
  right: 0;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  height: 100%;
  width: 100%;
  background: #ffffff40;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: inset 0px 0px 8px 4px #17a2b8;
}
.lightbox-zoom::before {
  content: "";
  background-color: #00b3a1;
}
.lightbox-no-scroll {
  overflow-y: hidden;
}

/* Overlay */
.lightbox-overlay {
  background: rgba(17, 17, 17, 0.8);
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 32;
  overflow: hidden;
}

.lightbox-overlay *,
.lightbox-overlay *::before,
.lightbox-overlay *::after {
  box-sizing: inherit;
}

.lightbox-overlay[aria-hidden="true"] {
  display: none;
}

/* Slider */
.lightbox-slider {
  -webkit-transition: left 0.3s ease, -webkit-transform 0.3s ease;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: left 0.3s ease, -webkit-transform 0.3s ease;
  transition: left 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  transition: left 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

/* Content */
.lightbox-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.lightbox-content figure {
  position: relative;
}

.lightbox-content img {
  display: block;
  height: auto;
  max-height: 85vh;
  max-width: 85vw;
  width: auto;
}

.lightbox-content figcaption {
  background: rgba(17, 17, 17, 0.8);
  bottom: 0;
  color: #fff;
  display: block;
  left: 0;
  padding: 0.25em 0.5em;
  position: absolute;
  width: 100%;
}

.lightbox-overlay button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;

  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 1.6em;
  height: 1.6em;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 1.6em;
}

.lightbox-overlay button:focus {
  border: 1px solid #fff;
  outline: 0;
}

.lightbox-overlay button:disabled {
  cursor: default;
  opacity: 0.5;
}

.lightbox-overlay button[aria-label="Previous"],
.lightbox-overlay button[aria-label="Next"] {
  top: 50%;
  top: calc(50% - (1.6em / 2));
}

.lightbox-overlay button[aria-label="Previous"] {
  left: 2%;
}

.lightbox-overlay button[aria-label="Next"] {
  right: 2%;
}

.lightbox-overlay button[aria-label="Close"] {
  top: 1em;
  right: 2%;
  font-size: 20px;
}

.lightbox-counter {
  background: transparent;
  color: #fff;
  font-size: 1.15em;
  left: 2%;
  position: absolute;
  top: 1em;
}

.lightbox:hover .lightbox-zoom {
  opacity: 100%;
  transition: 500ms;
}
.lightbox-loader {
  width: 5em;
  height: 5em;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2.5em;
  margin-left: -2.5em;
}

.lightbox-loader::before {
  -webkit-animation: spin 1s infinite;
  animation: spin 1s infinite;
  border-radius: 100%;
  border: 0.5em solid #9f9f9f;
  border-top-color: #2727a4;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.service-btn-a {
      padding: 8px 12px;
    border: 2px solid #ffffff;
    text-align: center;
    margin: 0 auto;
    color: #fff !important;
    border-radius: 6px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
