:root {
  --heading-font: "Righteous";
  --body-font: "Open Sans";
  --other-font: "Butterpop";
  --other2-font: "Fredoka";
  --primary-color: #2787c1;
  --secondary-color: #ffcb08;
  --secondary2-color: #12b24c;
}

@media (min-width: 1440px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .row {
    margin-right: -20px;
    margin-left: -20px;
  }

  .row>* {
    padding-right: 20px;
    padding-left: 20px;
  }


}


html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

ul {
  padding: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Navbar */
.top-navbar {
  background-color: var(--primary-color);
  padding: 10px 25px;
  position: relative;

  &::after {
    content: "";
    /* background: url(../images/header-after.png) no-repeat; */
    background: url(../images/header-img.png) no-repeat;
    background-size: 100%;
    height: 110px;
        width: 100%;
        position: absolute;
        top: calc(100% - 30px);
    left: 0;
  }
}
.stellarnav ul li:first-child a{
padding-left: 0;
}
#menu-main-menu:nth-child(2) li a{
  padding-left: 0;
}

/* Layout */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left-wrap {
  max-width: 70%;
  width: 100%;
}

.top-wrapper {
  display: flex;
  gap: 27px;
  width: 100%;
  align-items: center;
}

/* Logo */
.logo img {
  max-width: 87px;
  width: 100%;
}

/* Address pill */
.location-pill {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  max-width: 716px;
  width: 100%;
  border: 1px solid #fff;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;

  input {
    background-color: transparent;
    border: 0;
    width: 100%;
    color: #fff;

    &:focus-visible {
      outline: none;
    }

    &::placeholder {
      color: #fff;
    }
  }
}

/* Stellarnav override */
.stellarnav {
  background: transparent;
}

.stellarnav ul {
  text-align: left;
}

.stellarnav ul li a {
  color: white;
  padding: 15px;
  font-size: 15px;

  &.active {
    font-weight: 800;
  }
}

/* Book button */
.book-btn {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(91, 91, 91, 0.25);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  max-width: 239px;
  width: 100%;
  height: 58px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -30px;
  margin-bottom: 20px;
}

.book-btn:hover {
  background: #a6d1ef;
}

.hero {
  padding-top: 100px;
  position: relative;
  /* height: 960px; */
  background-color: var(--secondary-color);

  &::before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 105px;
    background: url(../images/curve1.png) no-repeat bottom;
    background-size: cover;
    content: "";
  }

  h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #2e454e;
    margin-top: 12px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
  }

  .pipeSide {
    position: absolute;
    left: 0;
    bottom: 42px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    svg {
      display: none;
    }
  }

  .swiper-button-next,
  .swiper-button-prev {
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: auto;
    bottom: 80px;
    width: 61px;
    height: 40px;
    background: #fff;
    border-radius: 53px;
    -webkit-border-radius: 53px;
    -moz-border-radius: 53px;
    -ms-border-radius: 53px;
    -o-border-radius: 53px;
    border: #ed1c24 1px solid;
    color: #ed1c24;
    opacity: 1;
    z-index: 2;
  }

  .swiper-button-next {
    left: 75px;
    right: auto;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    border: #ed1c24 1px solid;
    color: #fff;
    background: #ed1c24;
  }
}

.ban-logo {
  max-width: 350px;
  width: 100%;
  height: 276px;
  object-fit: contain;
}

.custom_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 174px;
  width: 160px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;

  a {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    font-family: var(--other2-font);
  }
}

.banner-left {
  width: auto;
  flex: 0 0 auto;
}

.banner-right {
  width: 903px;
  flex: 0 0 903px;
  left: -50px;

  .d-flex {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 52px;
  }

  img {
    -webkit-filter: drop-shadow(5px 5px 5px rgba(255, 255, 255, 0.4));
    filter: drop-shadow(-32px 31px 1px rgba(255, 255, 255, 0.4));
  }

  .img-1 {
    height: 330px;
    object-fit: contain;
    margin-bottom: 28px;
  }

  .img-2 {
    height: 317px;
    object-fit: cover;
    margin-top: 28px;
    position: relative;
    left: -20px;
    top: -25px;
  }

  .img-3 {
    height: 284px;
    object-fit: contain;
    filter: none;
    -webkit-filter: none;
    margin-top: 52px;
    margin-bottom: 50px;
  }

  .pipe {
    position: absolute;
    top: 25.5%;
    right: 50px;
    z-index: 2;

    img {
      filter: none;
      -webkit-filter: none;
      height: 219px;
      object-fit: contain;
    }
  }
}

.innerpage_banner {
  padding-top: 80px;
  text-align: center;
  background-color: var(--secondary-color);
  position: relative;

  &::after {
    content: "";
    width: 100%;
    height: 120px;
    background: url(../images/innerbanner-after.png) no-repeat;
    position: absolute;
    left: 0;
    top: 90%;
    z-index: -1;
  }

  h1 {
    color: #2e454e;
    font-size: 32px;
    margin-top: 11px;
  }

  img {
    max-width: 410px;
    width: 100%;
    height: 324px;
  }
}

h2 {
  font-size: 56px;
  margin-bottom: 24px;
}

.innersec {
  /* padding: 100px 0 67px; */
  padding: 159px 0 51px;
  text-align: center;



  p {
    color: #658491;
    width: 80%;
    margin: auto;
    margin-bottom: 52px;
  }

  h3 {
    font-family: var(--body-font);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
  }
}

.contact-opt {
  display: flex;
  align-items: start;
  gap: 13px;

  p {
    margin: 0;
    width: 100%;
    color: #0c1421;
    font-size: 18px;
  }

  a {
    text-decoration: none;
    color: #0c1421;
    font-size: 22px;
    padding-right: 25px;
    display: inline-block;
    width: 100%;
  }
}

.icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80px;
  width: 100%;
  height: 80px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}

.contact ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact form {
  padding: 38px 68px;
  border: 1px solid var(--primary-color);
  border-radius: 45px;
  background-position: bottom !important;
  background-position-x: 100px !important;
  background-position-y: 510px !important;

  label {
    font-size: 18px;
  }
}

.contact form input,
.contact form textarea {
  border-radius: 12px;
  background-color: #ceeefe;
  border: none;
  padding: 20px 27px;

  &::placeholder {
    font-size: 14px;
    color: #818181;
  }
}

.form-btn {
  font-size: 16px;
  max-width: 250px;
  width: 100%;
  height: 60px;
  background-color: #ed1c24;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  margin-top: 52px;
  border: 0;
}

footer {
  background: #2c3236;
  text-align: center;
  padding-top: 22px;
  position: relative;

  &::after {
    content: "";
    width: 50%;
    height: 100px;
    background-image: url(../images/cloud.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: -50px;
    left: 50px;
  }
}

footer a:hover {
  color: #fff;
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 10px;
  margin-bottom: 30px;

  li a {
    font-size: 16px;
    line-height: 33px;
    font-weight: 600;
    color: #D8F2FC;
    text-decoration: none;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95% / 0 1px no-repeat;
    transition: all 500ms ease;

    &:hover {
      background-size: 100% 1px;
    }
  }
  &.footer_social{
    li{
      a{
        background: none;
        &:hover{
          background-size: unset;
          transform: translateY(-10px);
        }
      }
    }
  }
}

.footer-bottom {
  border-radius: 72px 72px 0 0;
  padding: 40px 75px 20px;
  background-position: bottom center !important;
  background-position-x: 700px !important;

  ul {
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px 34px;
  }

  ul li {
    p {
      color: #fff;
      font-size: 20px;
      margin-bottom: 10px;
    }

    a {
      font-weight: 400;
    }

    .footer-opt {
      display: flex;
      gap: 20px;
    }
  }

  form {
    max-width: 539px;
    width: 100%;
    height: 60px;
    background: rgba(250, 250, 250, 0.555);
    display: flex;
    justify-content: space-between;
    border-radius: 50px;
    align-items: center;
    padding: 0 12px;
    margin-bottom: 48px;

    input[type="email"] {
      background-color: transparent;
      border: 0;
      width: 80%;

      &:focus-visible {
        outline: 0;
      }

      &::placeholder {
        color: #fff;
      }
    }

    .form-btn {
      max-width: 175px;
      height: 52px;
      margin-top: 0;
      font-family: var(--other2-font);
      font-weight: 600;
      letter-spacing: 8%;
    }
  }
}


.party h5 {
  font-size: 32px;
  margin-bottom: 68px;
  font-family: var(--body-font);
  font-weight: 600;
  color: #fff;
  margin-top: 50px;
}

.party-card {
  background-color: var(--primary-color);
  color: #fff;
  text-align: left;
  border-radius: 8px;
  padding: 31px 110px 43px 45px;
}

.party-card.other {
  max-width: 640px;
  /* width: 100%; */
  padding: 33px 26px 58px 50px;
  position: relative;
  margin-bottom: 150px;

  /* &::before,
  &::after {
    content: "$16.95 per child";
    position: absolute;
    top: -25px;
    right: 20px;
    background-color: #ceeefe;
    padding: 16px 44px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 700;
  }

  &::after {
    content: "Minimum: 10 guests | Maximum: 30 guests";
    bottom: -30px;
    left: 20px;
    top: auto;
    right: auto;
    padding: 22px 26px;
  } */
}

.party-card h4 {
  font-family: var(--body-font);
  font-size: 28px;
  margin-bottom: 16px;
}

.party-card p,
.party-card li {
  width: 100%;
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.party-card li {
  position: relative;
  list-style-type: none;
  padding-left: 30px;
  margin-bottom: 14px;

  &::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 7px;
    background-image: url(../images/tick-mark.svg);
    background-repeat: no-repeat;
    background-size: 19px 10px;
  }

  &:last-child {
    margin-bottom: 0;
  }
}

.party-card.list {
  padding: 42px 42px 52px 42px;
  position: relative;

  h4 {
    margin-bottom: 28px;
  }

  &::after {
    content: "";
    position: absolute;
    left: -59%;
    top: 32%;
    background-image: url(../images/pipe-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    /* width: 100%;
    height: 100%; */
    width: 300px;
    height: 250px;
  }
}

.party-card.list li {
  font-size: 20px;
  margin-bottom: 20px;

  &:last-child {
    margin-bottom: 0;
  }
}

.prices {
  height: 850px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    background-color: var(--secondary2-color);
    height: 100%;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
  }
}

.pipe-shape {
  position: absolute;
  /* top: 0; */
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.party .custom_btn {
  margin: auto;
  /* margin-top: 100px; */
  margin-top: 50px;
}

.fun-outer {
  background-color: var(--primary-color);
  margin-top: 150px;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    height: 150px;
    width: 100%;
    background-image: url(../images/header-after.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }

  h4 {
    color: #fff;
  }
}

.fun-card-wrap {
  position: relative;
  top: -110px;
}

.fun-card {
  height: 202px;
  background-color: #fff;
  max-width: 413px;
  width: 100%;
  border-radius: 14px;
  border-bottom-right-radius: 90px;
  position: relative;
  overflow: hidden;

  h5 {
    font-family: var(--other-font);
    font-size: 48px;
    position: relative;
    bottom: -17px;
  }

  .top {
    background-color: var(--secondary2-color);
    color: #fff;
    border-radius: 14px 14px 0 0;
    padding-top: 50px;
  }
}

.fun-card span {
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  padding: 24px 44px 50px;
  border-radius: 50%;
  font-size: 23px;
  font-weight: 700;
  color: rgba(23, 60, 74, 1);
    background: rgba(255, 123, 178, 0.1);
}

.fun-card.even .top {
  background-color: #ed1c24;
}

.fun-card.even span {
      background: rgba(18, 178, 76, 0.1);
 
}

.party-card.info {
  gap: 83px;
}

.party-card.info li {
  left: 0;
  margin-bottom: 0;
  width: auto;
}

.offer {
  padding: 50px 0;
  text-align: center;
}

.deal h5 {
  font-size: 32px;
}

.deal h6 {
  font-size: 24px;
  font-weight: 400;
  font-family: var(--body-font);
  position: relative;

  &::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    background-color: #fff;
  }
}


/* sonali */
.title {
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  font-family: var(--heading-font);
}

.about_home {
  position: relative;
  padding-top: 100px;
  padding-bottom: 0;

  .title {
    margin-bottom: 24px;
  }

  p {
    line-height: 34px;
    font-weight: 600;
    color: #658491;
  }

  .home_about_img {
    height: 570px;
    margin-top: 120px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
  }

  .about_pipe {
    position: absolute;
    top: 101px;
    left: 58%;
    transform: translateX(-40%);
    height: 703px;
    width: 440px;

    img {
      width: 100%;
      height: 100%;
    }
  }
}

.adventure_Sec {
  background: #12B24C;
  padding: 94px 0 185px;
  padding: 94px 0 140px;
  position: relative;

  .title {
    color: #FFFFFF;
  }

  p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
  }

  .adven_pipe {
    position: absolute;
    top: -2px;
    left: 54% ;
    transform: translateX(-46%);
    width: 152px;
    height: 56px;
  }

  &::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 110px;
    content: '';
    z-index: 1;
    background-image: url(../images/smile-bg.png);
  }

  .swiper {
    width: 100%;
    /* height: 950px; */
    height: 995px;
    margin-top: 40px;

    .swiper-wrapper {
      padding-top: 30px;
    }
  }

  .swiper-slide {
    min-height: 180px;

    &:nth-child(even) {
      .slide-row {

        /* height: 100%; */
        .adv_pipe {
          position: absolute;
          top: 100%;
          right: 22.3%;
          left: auto;
          width: 96px;
          height: 82px;
        }

      }

      .slide-card {
        margin-right: auto;
        margin-left: 0;
      }

      .slide-img {
        right: 0;
        left: auto;
        top: 60%;
        transform: translateY(-40%);
      }
    }
  }

  .slide-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    .slide-img {
      width: 286px;
      height: 337px;
      position: absolute;
      left: 0;
      top: -25px;

      img {
        width: 100%;
        border-radius: 12px;
        height: 100%;
        object-fit: contain;
      }


    }

    .slide-card {
      background: rgb(255 255 255 / 25%);
      padding: 23px 126px 25px 48px;
      border-radius: 10px;
      width: 1000px;
      color: #fff;
      margin-left: auto;
      margin-right: 0;
      min-height: 135px;

      h3 {
        color: #FFFFFF;
        font-size: 20px;
        line-height: 28px;
      }
    }

    .adv_pipe {
      position: absolute;
      top: 100%;
      left: 22%;
      width: 130px;
      height: 126px;
    }

    &.reverse {
      .adv_pipe {
        position: absolute;
        top: 100%;
        right: 22%;
        width: 130px;
        height: 126px;
      }
    }

  }

  .adven_slide {
    height: 136px;
    width: 40px;
    position: absolute;
    top: 24px;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

    .swiper-button-next {
      height: 61px;
      width: 40px;
      border: 1px solid #ED1C24;
      border-radius: 53px;
      font-size: 28px;
      color: #e53935;
      background: #FFFFFF;
      right: 0;
      bottom: 0;

      svg {
        display: none;
      }

      i {
        transform: rotate(90deg);
      }

      &:hover {
        background: #ED1C24;
        color: #fff;
      }
    }

    .swiper-button-prev {
      height: 61px;
      width: 40px;
      border: 1px solid #ED1C24;
      border-radius: 53px;
      font-size: 28px;
      color: #e53935;
      background: #FFFFFF;
      top: 0;
      right: 0;
      left: 0;

      svg {
        display: none;
      }

      i {
        transform: rotate(90deg);
      }

      &:hover {
        background: #ED1C24;
        color: #fff;
      }
    }

  }
}
.adventure_Sec {
    & .slide-row {
        &.reverse {
            margin-top: 25px;
        }
    }
}

.pic_play {
  padding-top: 70px;
  position: relative;
  z-index: 1;

  &::after {
    position: absolute;
    bottom: -1px;
    width: 100%;
    min-height: 389px;
    content: '';
    left: 0;
    background: #2787C1;
    z-index: -1;
  }

  &::before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 178px;
    background: url(../images/picplay-bg.png) no-repeat bottom;
    background-size: contain;
    content: "";
  }

  p {
    color: #658491;
    line-height: 34px;
    font-weight: 600;
  }

  .pic_play_list {
    margin-top: 35px;
    padding-top: 50px;
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    justify-content: space-between;

    li {
      width: 100%;
      max-width: 351px;
      text-align: center;

      img {
        width: 202px;
        height: auto;
        margin-top: -15px;
      }

      .pic_box {
        min-height: 361px;
        width: 100%;
        background: #FFFFFF;
        border-radius: 12px 12px 79px 79px;
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 35px 0;
        overflow: hidden;
        margin-top: -50px;

        &::after {
          position: absolute;
          content: '';
          left: 50%;
          transform: translateX(-50%);
          bottom: -49px;
          z-index: -1;
          width: 131px;
          height: 99px;
          border-radius: 50%;
          background: #72B63F1A;

        }

        &::before {
          width: 100%;
          height: 83px;
          background: #12B24C;
          border-radius: 12px;
          z-index: -1;
          position: absolute;
          top: 0;
          left: 0;
          content: '';
        }

        .list_title {
          color: #FFFFFF;
          text-align: center;
          font-family: var(--other-font);
          font-size: 44px;
          line-height: 59px;
          font-weight: 400;
          text-align: center;
        }

        .content {
          background: #FFFFFF;
          margin-top: -22px;
          padding: 10px 25px 0;

          h6 {
            color: #0E2E3A;
            font-size: 20px;
            line-height: 34px;
            font-weight: 600;
            font-family: var(--body-font);
          }

          p {
            color: #658491;
            font-weight: 400;
            font-size: 14px;
            line-height: 26px;
            font-family: var(--body-font);
            width: 100%;
            max-width: 85%;
            margin-inline: auto;
          }

          span {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 10px;
            color: #173C4A;
            font-size: 20px;
            line-height: 26px;
            font-weight: 600;
            font-family: var(--body-font);
          }
        }
      }

      &:first-child {
        text-align: center;

        img {
          margin-left: 70px;
          margin-top: -22px;
        }

        .pic_box {
          transform: rotate(-10deg);
          border-radius: 12px 12px 79px 12px;
          margin-top: 0;

          &::after {
            background: #FF7BB21A;
          }

          &::before {
            background: #ED1C24;
          }
        }


      }

      &:last-child {
        .pic_box {
          border-radius: 12px 12px 12px 79px;
          transform: rotate(10deg);
          margin-top: 0;

          &::after {
            background: #31ACCE1A;

          }
          &::before{
            background: #2787c1;
          }
        }

        img {
          margin-top: -24px;
          margin-left: -85px;
        }
      }
    }

  }
}


.testimonial_section {
  padding: 100px 0;
  text-align: center;
  position: relative;

  p {
    color: #658491;
    font-size: 16px;
    line-height: 34px;
    width: 100%;
    max-width: 80%;
    margin-inline: auto;
  }


  .swiper {
    width: 100%;
    padding: 30px 0;

    .swiper-slide {
      position: relative;
      z-index: 2;
    }
  }
}

.testimonial_inner {
  display: flex;
  flex-direction: column;
  gap: 116px;

  .testimonial_card {
    width: 100%;
    max-width: 710px;
    border: 1px solid #2787C1;
    background: #EFF4F7;
    padding: 60px 115px 44px 99px;
    border-radius: 12px;
    position: relative;
    min-height: 342px;
    color: #658491;
    font-size: 18px;
    line-height: 34px;
    font-weight: 400;
    font-family: var(--body-font);

    &:first-child {
      margin-left: 150px;
    }

    &:last-child {
      margin-left: auto;
      margin-right: 105px;
    }

    .user_img {
      width: 174px;
      height: 174px;
      display: flex;
      flex: 0 0 174px;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      border: 4px solid #FFFFFF;
      position: absolute;
      right: -103px;
      top: 50%;
      transform: translateY(-50%);

      img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        object-position: top;
      }
    }
  }
}


.slide_btn {
  width: 136px;
  height: 40px;
  position: absolute;
  top: 31px;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;

  .swiper-button-next, .next.slick-arrow {
    width: 61px;
    height: 40px;
    border: 1px solid #ED1C24;
    border-radius: 53px;
    font-size: 28px;
    color: #e53935;

    svg {
      display: none;
    }

    &:hover {
      background: #ED1C24;
      color: #fff;
    }
  }

  .swiper-button-prev, .prev.slick-arrow {
    width: 61px;
    height: 40px;
    border: 1px solid #ED1C24;
    border-radius: 53px;
    font-size: 28px;
    color: #e53935;

    svg {
      display: none;
    }

    &:hover {
      background: #ED1C24;
      color: #fff;
    }
  }
}

.testimonialSlider {
  /* max-height: 700px; */
  position: relative;
  &::after {
      position: absolute;
      z-index: 2;
      content: '';
      width: 100%;
      height: 166px;
      background: #12B24C;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      border-radius: 12px;
    }
  .swiper-wrapper {
    /* max-height: 800px; */

    

  }

  
}
.imgae_green {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    min-height: 450px;
    z-index: 1;

    .one {
      width: 285px;
      height: 152px;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    .two {
      position: absolute;
      right: -2px;
      top: 34px;
      width: 288px;
      height: 152px;
      z-index: 1;
    }

    .three {
      position: absolute;
      left: 21px;
      width: 160px;
      height: 146px;
      top: -4px;
    }

    .four {
      position: absolute;
      left: 27%;
      width: 160px;
      height: 126px;
      bottom: 4%;
    }
  }
.testimonial_section{
  .container{
    position: relative;
  }
}
.smile_sec {
  position: relative;
  padding: 150px 0 0;
  z-index: 1;

  .title {
    margin-bottom: 25px;
  }

  p {
    color: #658491;
    font-size: 16px;
    line-height: 34px;
    font-weight: 600;
    width: 100%;
    max-width: 85%;
    text-transform: capitalize;
    margin-inline: auto;
  }

  &::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 110px;
    content: '';
    z-index: 1;
    background-image: url(../images/smile-bg.png);
  }

  &::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background: #FFCB08;
    width: 100%;
    min-height: 995px;
    z-index: -1;
  }

  .smile_img_list {
    list-style: none;
    display: flex;

    justify-content: space-between;
    position: relative;
    z-index: 1;
    min-height: 1110px;
    margin-top: 30px;

    .list_img {
      img {
        border-radius: 12px;
        position: absolute;
        object-fit: contain;
      }

      .one {
        width: 413px;
        height: 394px;
        top: 0;
        left: 0;
      }

      .two {
        width: 387px;
        height: 395px;
        top: 215px;
        left: 51.5%;
        transform: translateX(-48.5%);
      }

      .three {
        width: 359px;
        height: 402px;
        top: 0;
        right: 0;
      }

      .four {
        width: 217px;
        height: 225px;
        left: 0;
        top: 41%;
      }

      .five {
        width: 423px;
        height: 296px;
        right: 0;
        bottom: 160px;
      }

      .six {
        width: 297px;
        height: 327px;
        bottom: 0;
        left: 25%;
        z-index: -1;
      }
    }

    .pipe {
      position: absolute;

      &.green {
        top: 35.5%;
        left: 16.5%;
        width: 265px;
        height: 111px;
      }

      &.blue1 {
        right: 12%;
        top: 36%;
      }

      &.blue2 {
        right: 32.5%;
        top: 55%;
      }
    }

    .custom_btn {
      position: absolute;
      z-index: 2;
      left: 0;
      bottom: 100px;
    }
  }
}

.about_green {
  background: #12B24C;
  padding: 42px 76px;
  border-radius: 0 8px 8px 8px;
  text-align: start;
  /* margin-top: 95px; */
  margin-top: 112px;

  p {
    width: 100%;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 16px;
    text-transform: capitalize;
  }
}

.about_section {
  position: relative;
  padding-bottom: 130px;

  .bluePipe {
    position: absolute;
            top: 64px;

    left: 173px;
    width: 521px;
    height: 399px;
  }

  .about_image {
    display: flex;
    margin-left: 165px;
    margin-top: -13%;
    position: relative;
    z-index: -1;
    width: 567px;
    height: 347px;

    img {
      width: 100%;
      height: 100%;
      border-radius: 12px;
    }
  }
}


.fun-section {
  padding: 90px 0;
  position: relative;

  .sec_title {
    h6 {
      color: #658491;
      font-size: 28px;
      line-height: 1.2;
      font-weight: 400;
      font-family: var(--heading-font);
      margin-top: 16px;
    }
  }

  .drip_box {
    background: #12B24C;
    color: #fff;
    padding: 33px 49px 18px;
    border-radius: 12px;
    position: relative;
    z-index: 2;

    &::after {
      content: "";
      position: absolute;
      bottom: -95px;
      left: 0;
      width: 100%;
      height: 106px;
      background-image: url(../images/funbg.png);
    }

    p {
      color: #FFFFFF;
      font-size: 14px;
      line-height: 28px;
      margin-bottom: 8px;
    }
  }
}

.innersec.contact .custom-contact-form .form-message{
  min-height: 0;
}


.fun_list {
  display: flex;
  list-style: none;
  position: relative;
  z-index: 1;
  right: 0;
  left: auto;
  gap: 66px;
  margin-top: 108px;

  .pipe {
    position: absolute;
    top: -74px;
    left: -21px;
    width: 95px;
    height: 81px;
  }

  li {
    width: 356px;
    height: 355px;
    border-radius: 12px;

    img {
      width: 100%;
      height: 100%;
      border-radius: 12px;
    }

    &:first-child {
      margin-left: -110px;
    }
  }

}


.whyus_section {
  position: relative;
  overflow-y: hidden;
  z-index: 1;
  padding: 68px 0 85px;
  background: #2787C1;

  .sec_title {
    h2 {
      color: #FFFFFF;
      margin-bottom: 20px;
    }

    p {
      color: #FFFFFF;
      font-size: 16px;
      line-height: 34px;
      font-weight: 600;
    }
  }

  .why_us_sideimg {
    position: absolute;
    right: 0;
    top: 0;
    width: 378px;
    height: 994px;
  }

  .why_us_listing {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 51px;
    margin-top: 55px;

    li {
      max-width: 629px;

      &:nth-child(even) {
        margin-left: auto;

        .why_item {
          &::after {
            width: 593px;
          }
        }
      }

      .why_item {
        display: flex;
        gap: 25px;
        position: relative;
        z-index: 1;

        &::after {
          position: absolute;
          left: 0;
          top: 50px;
          width: 555px;
          height: 1px;
          background: #FFFFFF;
          content: '';
          z-index: -1;
        }

        img {
          width: 146px;
          height: 159px;
          border-radius: 12px;
        }

        .why_text {
          padding-right: 32px;

          h6 {
            color: #FFFFFF;
            font-size: 24px;
            line-height: 34px;
            font-weight: 600;
            margin-bottom: 32px;
            font-family: var(--body-font);
          }

          p {
            color: #FFFFFF;
            font-family: var(--body-font);
            font-size: 14px;
            line-height: 28px;
            text-transform: capitalize;
          }
        }
      }
    }
  }
}

.pic_play {
  &.pricing {
    padding: 150px 0 20px;

    &::after {
      min-height: 571px;
    }

    .row {
      margin-right: -12px;
      margin-left: -12px;
    }

    .row>* {
      padding-right: 12px;
      padding-left: 12px;
    }

    .offer_pipe {
      position: absolute;
      width: 151px;
      height: 150px;
      top: 50%;
      z-index: 1;
      left: 100px;

      &.pipe2 {
        left: auto;
        right: 100px;
      }
    }

    .fun-card {
      margin-inline: auto;
      padding-top: 97px;
      z-index: 1;
      margin-top: 58px;

      &::after {
        position: absolute;
        background: #ED1C24;
        width: 100%;
        height: 97px;
        top: 0;
        z-index: -1;
        border-radius: 14px 14px 0 0;
        content: '';
        z-index: -1;
      }

      &.even {
        &::after {
          background: #12B24C;
        }
      }

      h5 {
        position: absolute;
        top: 50px;
        bottom: unset;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        color: #FFFFFF;
        line-height: 70px;
      }
    }

    .bootom_list {
      margin-top: 65px;

      h4 {
        text-align: center;
        color: #fff;
        font-size: 32px;
        line-height: 1;
        margin-bottom: 16px;
      }

      ul {
        display: flex;
        justify-content: space-between;
        padding: 0;

        li {
          font-size: 20px;
          width: auto;
        }
      }
    }
  }
}

.offer {
  position: relative;
  padding: 204px 0 90px;

  .offer_box {
    background: #12B24C;
    color: #FFFFFF;
    min-height: 333px;
    border-radius: 8px;
    padding: 50px 70px;

    .offer_deal {
      h3 {
        font-size: 32px;
        line-height: 1;
        margin-bottom: 15px;
      }

      h4 {
        font-size: 24px;
        font-weight: 600;
        font-family: var(--body-font);
        position: relative;
        z-index: 1;
        padding-bottom: 10px;
        margin-bottom: 23px;
        margin-top: 10px;

        &::after {
          position: absolute;
          content: '';
          bottom: 0;
          width: 211px;
          height: 1px;
          background: #FFFFFF;
          left: 50%;
          transform: translateX(-50%);
        }
      }

      .offer_deal_box {
        font-family: var(--body-font);
        padding: 12px 18px;
        border-radius: 8px;
        background: rgb(255 255 255 / 25%);
        margin-bottom: 16px;

        h6 {
          font-size: 16px;
          margin-bottom: 5px;
          font-weight: 600;
          font-family: var(--body-font);
        }

        span {
          font-size: 15px;
        }

        ul {
          list-style: none;
          display: flex;
          /* justify-content: space-between; */
          gap: 17px;

          li {
            position: relative;
            padding-left: 25px;
            font-size: 14px;

            &::after {
              content: "";
              position: absolute;
              height: 20px;
              width: 20px;
              left: -0;
              top: 7px;
              background-image: url(../images/tick-mark.svg);
              background-repeat: no-repeat;
              background-size: 19px 10px;
            }
          }
        }
      }

      p {
        font-size: 16px;
        line-height: 1;

      }
    }
  }

  .offer_bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1px;
    width: 117px;
    height: 537px;
    content: '';
    z-index: 1;
  }
}

header.sticky-header {
  position: fixed;
  width: 100%;

  &::after {
    content: normal;
  }

  .location-pill {
    display: none;
  }

  .logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 9999;
  }

  .stellarnav {
    padding-left: 100px;
  }

  .container {
    position: relative;
  }

  .book-btn {
    margin-bottom: 0;
  }
}


/*custom css*/
ul.list-unstyled.d-flex.justify-content-end.footer_social li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding-bottom: 3px;
}
ul.list-unstyled.d-flex.justify-content-end.footer_social{
  gap: 20px 20px;
}

#newsletter-form input[type="email"]::placeholder {
    opacity: 0.6;
    padding-left: 10px;
}
#footer-logo{
  max-width: 115px;
  width: 100%;
  height: 90px;
}
footer .list-unstyled.footer_social li a:hover{
  box-sizing: 0;
}

.testimonial_inner.slick-slide.slick-current.slick-active .testimonial_card{
  margin-left: 154px;
  margin-right: auto;
}

.bottom-text{
  font-size: 16px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
}
.bottom-text p{
  color: #fff;
  font-size: 16px;
  width: 561px;
}

.bottom-text{
  &.new_content{
  p{
    position: absolute;
    width: 100%;
    max-width: 561px;
    margin-inline: auto;bottom: 0;
    z-index: 2;
  }
}
}