p {
  margin: 0;
}

/* === banner === */

#banner {
  background-image: url(../image/sportvenues_bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  position: relative;
}

#banner .banner {
  max-width: 100%;

  max-height: 100%;

  height: 500px;

  position: relative;

  padding: 200px 0 50px 0;
}

#banner .banner img {
  width: 100% !important;

  height: 100%;

  object-fit: cover;

  object-position: center;

  position: absolute;

  top: 50%;

  right: 50%;

  width: 70%;

  transform: translate(50%, -50%);
}

#banner .layer {
  position: absolute;

  top: 0;

  right: 0;

  width: 100%;

  height: 100%;

  background-image: linear-gradient(var(--nir-gray) 80%, transparent);

  opacity: 0.4;

  z-index: 1;
}

#banner .layer_content {
  color: var(--nir-white);

  text-align: center;

  position: relative;

  z-index: 2;
}

#banner .layer_content h1 {
  font-size: 28px;

  font-weight: bold;

  margin-bottom: 10px;
}

#banner .layer_content p {
  font-size: 18px;

  font-weight: 400;
}

/* === selector === */

#selector {
  padding: 20px 0;
}

#selector .selector {
  display: flex;

  justify-content: space-between;

  align-items: stretch;

  gap: 20px;
}

#selector .selector div select {
  background-color: var(--nir-white);

  color: var(--nir-gray);

  border-radius: 10px;

  padding: 10px 20px;

  font-weight: bold;

  font-size: 19px;
}

#selector .selector div a {
  background-color: var(--nir-theme);

  height: 100%;

  font-size: 19px;

  font-weight: bold;

  display: flex;

  justify-content: center;

  align-items: center;

  color: var(--nir-white);

  transition: all 0.4s;
}

#selector .selector div a:hover {
  background-color: var(--nir-white);

  color: var(--nir-theme);
}

.btn {
  border-radius: 10px;
}

/* === gallery === */

.gallery_card_main {
  display: flex;

  justify-content: center;

  align-items: stretch;

  flex-wrap: wrap;
}

.gallery_card_main .gallery_card {
  width: 100%;

  max-height: 270px;

  position: relative;
}

.gallery_card_main .gallery_card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: all 0.4s;
}

.gallery_card_main .gallery_card:hover img {
  filter: brightness(0.4);
}

.gallery_card_main .gallery_card .gallery_detail {
  text-align: center;

  color: var(--nir-white);

  position: absolute;

  top: 50%;

  right: 50%;

  transform: translate(50%, -50%);
}

.gallery_card_main .gallery_card .gallery_detail h5 {
  font-size: 22px;

  font-weight: bold;
}

.gallery_card_main .gallery_card .gallery_detail p {
  font-size: 12px;

  font-weight: 400;
}

/* === Blog List === */

#blog_list {
  position: relative;

  overflow: hidden;
}

.pagination {
  position: relative;

  margin-bottom: 35px;
}

.list_card:last-child {
  margin-bottom: 0;
}

.list_card:last-child .list_detail {
  padding-bottom: 30px;
}

.blog_list {
  position: relative;

  z-index: 1;

  padding-top: 0px;

  width: 100%;
}

.tableList {
  padding-top: 100px;
}

.silde_layer {
  position: absolute;

  top: 0;

  opacity: 0.7;

  background-color: var(--nir-bg-gray);

  left: 50%;

  width: 50vw;

  height: 100%;

  z-index: -1;
}

.list_card .list_detail .review {
  display: flex;

  justify-content: start;

  align-items: stretch;

  gap: 5px;
}

.list_card {
  display: flex;

  justify-content: space-between;

  align-items: stretch;

  flex-wrap: wrap;

  margin-bottom: 35px;
}

.list_card figure {
  width: 48%;

  margin: 0;

  height: 300px;
}

.list_card .list_detail {
  width: 48%;

  padding-left: 30px;
}

.list_card .list_detail {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  align-items: start;
}

.list_card .list_detail h5 {
  font-size: 28px;

  font-weight: bold;

  color: var(--nir-gray);

  margin-bottom: 16px;
}

.list_btn a {
  text-decoration: none;

  border: 1px solid var(--nir-gray);

  color: var(--nir-gray);

  border-radius: 8px;

  padding: 1px 20px;

  display: block;

  font-size: 20px;

  font-weight: bold;

  transition: all 0.4s;
}

.list_btn a:hover {
  background-color: var(--nir-theme);

  color: var(--nir-white);

  border: 1px solid var(--nir-theme);
}

.list_card figure img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 20px;

  aspect-ratio: 1 / 1;
}

.list_card .slide_location img {
  width: 20px !important;

  height: 20px;

  padding: 0 !important;

  margin-right: 6px;
}

.list_card .slide_detail {
  font-size: 18px;

  font-weight: 400;

  margin-bottom: 0;

  text-align: left;
}

.list_card .slide_location {
  display: flex;

  justify-content: start;

  color: var(--nir-gray);

  align-items: center;

  margin: 20px 0;

  font-size: 14px;

  font-weight: 400;
}

/* Blog Pagenation */

#pagin {
  display: flex;

  justify-content: flex-end;

  gap: 5px;

  align-items: stretch;

  margin-bottom: 50px;
}

#pagin #button_prev_sport svg,
#pagin #button_prev svg {
  transform: scale(-1);

  margin-right: 10px;
}

#button_next_sport,
#button_next {
  margin-left: 10px;
}

.pageButton {
  transition: all 0.4s;

  cursor: pointer;
}

.pageButton svg {
  height: 100%;
}

.pageButton,
#page_number,
#page_number_sport {
  display: flex;
  justify-content: center;

  align-items: center;

  gap: 10px;
}

.number_list {
  background-color: var(--nir-white);

  color: var(--nir-gray);

  border: 2px solid var(--nir-theme);

  font-size: 18px;

  font-weight: bold;

  text-decoration: none;

  cursor: pointer;

  transition: all 0.4s;

  padding: 5px;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  transition: all 0.4s;
}

.number_active_btn {
  display: none;
}

.numbersport_list:hover,
.numbersport_list_active,
.number_list:hover,
.number_list_active {
  background-color: var(--nir-theme);

  color: var(--nir-white);
}

/* === Forms === */

#forms {
  background-color: var(--nir-bg-gray);

  padding: 40px 0;
}

#forms input {
  background-color: var(--nir-white);

  color: var(--nir-gray);

  border-radius: 10px;

  padding: 12px 20px;

  font-weight: 400;

  font-size: 16px;
}

#forms label {
  font-weight: 400;

  font-size: 16px;

  color: var(--nir-gray);
}

.forms input {
  margin-bottom: 30px;
}

#forms .availability a {
  background-color: var(--nir-theme);

  height: 100%;

  width: 50%;

  margin: 0 auto;

  font-size: 19px;

  font-weight: bold;

  display: flex;

  justify-content: center;

  align-items: center;

  color: var(--nir-white);

  transition: all 0.4s;

  padding: 10px;
}

#forms a:hover {
  background-color: var(--nir-white);

  color: var(--nir-theme);
}

.btn {
  border-radius: 10px;
}

/* === Retreat === */

#retreat {
  background-image: url(../image/sport_bg-02.jpg);

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  position: relative;
}

#retreat p {
  font-size: 30px;

  font-weight: bold;

  text-align: center;

  padding: 70px 0;

  color: var(--nir-white);

  position: relative;

  z-index: 2;

  margin-bottom: 0;
}

#retreat .layer {
  position: absolute;

  top: 0;

  right: 0;

  width: 100%;

  height: 100%;

  background-image: linear-gradient(var(--nir-gray) 90%, transparent);

  opacity: 0.4;

  z-index: 1;
}

/* === Map === */

#map iframe {
  width: 100%;
}

input {
  max-width: 100%;
}

/* === end css === */

@media (max-width: 770px) {
  /* == Selector == */

  #selector .selector {
    flex-wrap: wrap;
  }

  #selector .selector div {
    width: 100%;
  }

  /* === Gallery === */

  .gallery_card_main .gallery_card {
    width: 50%;
  }

  /* === Blog List === */

  .blog_list {
    padding-top: 50px;
  }

  .list_card figure {
    height: auto;
  }

  /* === Forms === */

  #forms .availability a {
    width: 100%;
  }
}

@media (max-width: 450px) {
  /* === banner === */

  #banner .layer_content h1 {
    font-size: 30px;

    margin-bottom: 20px;
  }

  #banner .layer_content p {
    font-size: 16px;

    font-weight: 400;
  }

  /* === Blog List === */

  .list_card .list_detail,
  .list_card figure {
    width: 100%;

    padding-bottom: 0;

    padding-left: 0;
  }

  .list_card .list_detail h5 {
    font-size: 22px;

    margin-bottom: 10px;

    text-align: start;
  }

  .list_card .slide_location {
    text-align: start;
  }

  .list_btn a {
    font-size: 16px;
  }

  .list_card .list_detail {
    margin-top: 20px;

    text-align: center;
  }

  .blog_list {
    padding-bottom: 10px;

    margin-bottom: 20px;
  }

  .list_btn {
    margin: 20px auto 0 auto;
  }

  .silde_layer {
    background-color: unset;
  }

  .list_card figure img {
    aspect-ratio: 2 / 1;
  }

  /* === Gallery === */

  .gallery_card_main .gallery_card {
    width: 100%;
  }

  /* === Froms === */

  .forms input {
    margin-bottom: 20px;
  }

  #selector .selector div a,
  #selector .selector div select,
  #forms .availability a {
    font-size: 16px;
  }

  .list_card .list_detail .review {
    justify-content: center;
  }
}

/* New venue page css */

.banner-section {
  /*background-image: url(../image/Banner.png);*/
  background-image: url(../image/campsheaderbg.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 74px 0 105px 0;
}
.venue .banner-section {
  background-image: url(../image/venue.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 74px 0 105px 0;
}


.banner-section::after {
  content: "";
  content: "";
  /*background: rgba(125, 0, 4, 0.6);*/
  inset: 0;
  width: 100%;
  position: absolute;
  height: 100%;
}

.banner-container {
  position: relative;
  z-index: 1;
}

.banner-text h2 {
  font-size: 108px;
  line-height: 99px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff;
  text-align: center;
}

.banner-text p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-align: center;
}

.selector-form {
  display: flex;
  align-items: flex-end;
}

.banner-text label {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000000;
}

#selector .selector-form div select {
  background-color: white;
  color: #959595;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

#selector .container {
  background: white;
  padding: 20px;
  border-radius: 5px;
}

.availability-section .get-touch {
  line-height: 18px;
}

.availability-section .get-touch:hover {
  color: #ea2127;
  border: 1px solid #ea2127;
  background-color: white;
}

@media (max-width: 767px) {
  .selector-form {
    flex-wrap: wrap;
  }

  .banner-text h2 {
    font-size: 80px;
    line-height: 78px;
  }

  .availability-section .get-touch {
    line-height: 28px;
  }
}

/* venue-section-start  */

.venue-content h2 {
  font-size: 60px;
  line-height: 52px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
}

.venue-card h5 {
  font-size: 24px;
  line-height: 23px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin: 10px 0;
}

.addres-venue p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.addres-venue {
  gap: 10px;
}

.venue-text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.card.venue-main-card img.card-img-top{    height: 300px !important;}
.venue-line {
  border: 1px solid #d0d0d0;
}

.venue-sport {
  gap: 20px;
}

.get-explore {
  border: 1px solid #ea2127;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 12px 35px !important;
  font-size: 16px !important;
  text-decoration: none;
  display: block;
  width: fit-content;
  color: #ea2127 !important;
  transition: all 0.4s;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.get-explore:hover {
  border: 1px solid transparent !important;
  background-color: #ea2127 !important;
  color: #ffffff !important;
}

.venue-main-card {
  border: 1px solid #bdbdbd;
  transition: all 0.4s;
  padding: 15px;
  height: 100%;
}

.venue-main-card:hover {
  fill: var(--nir-theme);
  box-shadow: 0px 10px 50px #ea212770;
  border: 1px solid #ea2127;
  transition: all 0.4s;
}

.venue-pagination {
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.page-item.active .page-link {
  background-color: #ea2127 !important;
  border: 1px solid #ea2127 !important;
}

.page-item:hover .page-link {
  background-color: #ea2127 !important;
  color: white;
}
.page-item path {
  transition: all 0.4s;
}

.page-item:hover path {
  stroke: white;
}

.page-item .page-link {
  color: #b9b9b9;
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  padding: 10px 20px;
}

.page-item a {
  font-size: 26px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  .venue-content h2 {
    font-size: 50px;
    line-height: 18px;
  }
}

@media (min-width: 768px) {
  .get-explore {
    padding: 12px 20px !important;
    font-size: 12px !important;
  }

  .availability-section .get-touch {
    padding: 7px 30px !important;
  }
  .venue-main-card {
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .get-explore {
    padding: 12px 35px !important;
    font-size: 16px !important;
  }
}

@media (min-width: 1200px) {
  .availability-section .get-touch {
    padding: 15px 30px !important;
  }
}

/* venue-section-end  */

/* lets-section-start */

.lets-content p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.lets-content h3 {
  font-size: 60px;
  line-height: 50px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff;
}

.lets-content {
  background-color: #000000;
  padding: 30px 24px;
  height: 100%;
}

.lets-content .form-label {
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.lets-content textarea {
  background-color: rgb(255, 255, 2555, 0.3);
  border: 1px solid #ffffff;
  padding: 15px;
}

.lets-content input[type="email"] {
  background-color: rgb(255, 255, 2555, 0.3);
  border: 1px solid #ffffff;
  padding: 15px;
}

.lets-content input[type="text"] {
  background-color: rgb(255, 255, 2555, 0.3);
  border: 1px solid #ffffff;
  padding: 15px;
}

.lets-content textarea:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  padding: 15px;
}

.lets-content input[type="email"]:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  padding: 15px;
}

.lets-content input[type="text"]:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  padding: 15px;
}

.lets-content label {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.lets-content form {
  background-color: transparent;
  padding: 0px;
}

.get-content {
  background: #ea2127;
  border-radius: 5px;
  padding: 15px 30px !important;
  font-size: 16px !important;
  text-decoration: none;
  display: block;
  width: 100%;
  color: white;
  border: 1px solid transparent;
  transition: all 0.4s;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.get-content:hover {
  background-color: white !important;
  color: #ea2127 !important;
  transition: all 0.4s;
}

.lets-image {
  height: 100%;
}

.lets-image img {
  height: 100%;
  position: relative;
  width: 100%;
}

@media (min-width: 450px) {
  .lets-content {
    padding: 80px 50px;
  }
}

@media (min-width: 768px) {
  .lets-content {
    padding: 50px 25px;
  }
}

@media (min-width: 992px) {
  .lets-content {
    padding: 60px 80px;
  }
}

@media (min-width: 1200px) {
  .lets-content {
    padding: 80px 125px;
  }
}

/* lets-section-end */

/* banner-section-start  */

.banner-inner-section {
  background-image: url(../image/banner.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 74px 0 0 0;
}

.banner-inner-section::after {
  content: "";
  content: "";
  /*background: rgba(125, 0, 4, 0.6);*/
  inset: 0;
  width: 100%;
  position: absolute;
  height: 100%;
}

.banner-container {
  position: relative;
  z-index: 2;
}

.banner-text h2 {
  font-size: 108px;
  line-height: 99px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff;
}

.banner-text p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-align: center;
}

.selector-form {
  align-items: flex-end;
}

.banner-text {
  gap: 100px;
}

.selector-form p {
  color: #000000;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.banner-text label {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000000;
}

#selector .selector-form {
  margin: 0;
  padding: 10px;
}

#selector .selector-form div select {
  background-color: white;
  color: #959595;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

#selector .container {
  background: white;
  padding: 25px 39px;
  box-shadow: 0px 21px 46px rgba(0, 0, 0, 0.1);
}

.availability-section .get-touch {
  line-height: 18px;
}

.availability-section .get-touch:hover {
  color: #ea2127;
  border: 1px solid #ea2127;
  background-color: white;
}

.book-content p {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: black;
  margin-bottom: 0px !important;
}

#selector .book-content {
  background: #ececec;
  padding: 25px 39px;
  border-radius: 5px;
}
form #edit-markup{padding-top:8px !important;margin-bottom:0px;padding-bottom:8px !important;}
.form-wrapper{margin-top:0px !important;margin-bottom: 0;}

.sport_activities input {
  display: block;
}

.date-camps input {
  display: block;
}

#selector label {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  color: #000000;
}

#selector .form-control,
#selector .form-date {
  border: 1px solid #7d7d7d4d;
  width: 100%;
  color: #7d7d7d4d;
  border-radius: 4px;
  padding: 10px;
}

.explore {
  background-color: white;
  z-index: 1;
  position: relative;
  padding: 36px 0;
}

.explore-content h3 {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #272727;
}

.explore-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #282828;
}

.banner-container .row {
  align-items: center;
}

.venue-section {
  margin-top: 50px !important;
}
.venue-main-card img {
  object-fit: cover;
}
#selector .container {
  padding: 0;
}
@media (max-width: 450px) {
  .page-item .page-link {
    padding: 5px 10px;
  }
}
@media (max-width: 767px) {
  .selector-form {
    flex-wrap: wrap;
  }

  .banner-text h2 {
    font-size: 80px;
    line-height: 78px;
  }

  .availability-section .get-touch {
    line-height: 28px;
  }

  #selector {
    margin-bottom: 0;
  }

  .venue-sport {
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .get-explore {
    padding: 12px 20px !important;
    font-size: 12px !important;
  }

  .availability-section .get-touch {
    padding: 7px 30px !important;
  }

  .banner-text h2 {
    font-size: 80px;
    line-height: 82px;
  }

  #selector .book-content {
    padding: 25px 15px;
  }

  #selector .container {
    padding: 0;
    width: 95%;
    margin: 0 auto;
  }
  .book-content p {
    font-size: 20px;
  }
  .venue-section {
    margin-top: 70px !important;
  }
}

@media (min-width: 992px) {
  .get-explore {
    padding: 12px 35px !important;
    font-size: 16px !important;
  }

  .banner-text h2 {
    font-size: 80px;
    line-height: 90px;
  }
}

@media (min-width: 1024px) {
  .banner-text h2 {
    /* font-size: 108px; */
    line-height: 99px;
  }
  .book-content p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .availability-section .get-touch {
    padding: 15px 30px !important;
  }

  #selector .book-content {
    padding: 25px 39px;
  }
}

/* banner-section-end  */

/* lets-section-start */

.lets-content p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.lets-content h3 {
  font-size: 60px;
  line-height: 50px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff;
}

.lets-content {
  background-color: #000000;
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lets-content .form-label {
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.lets-content input {
  background-color: rgb(255, 255, 2555, 0.3);
  border: 1px solid #ffffff;
  padding: 15px;
}

.get-content {
  background: #ea2127;
  border-radius: 5px;
  padding: 15px 30px !important;
  font-size: 16px !important;
  text-decoration: none;
  display: block;
  width: 100%;
  color: white;
  border: 1px solid transparent;
  transition: all 0.4s;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.get-content:hover {
  background-color: white !important;
  color: #ea2127 !important;
  transition: all 0.4s;
}

.lets-image {
  height: 100%;
}

.lets-image img {
  height: 100%;
  position: relative;
  width: 100%;
}

@media (min-width: 450px) {
  .lets-content {
    padding: 80px 50px;
  }
}

@media (min-width: 768px) {
  .lets-content {
    padding: 50px 25px;
  }

  form.webform-submission-check-availability-form {
    position: absolute;
    width: 50%;
 }
}


@media (max-width: 767px) {
  .explore {
    margin-top: 30px;
  }
  .lets-image img {
    height: 500px;
  }
}

@media (min-width: 992px) {
  .lets-content {
    padding: 60px 80px;
  }

  form.webform-submission-check-availability-form {
    position: absolute;
    bottom: -170px;
  }

}

@media (min-width: 1200px) {
  .lets-content {
    padding: 80px 125px;
  }
}

form.webform-submission-check-availability-form {
  background: #ececec;
  box-shadow: 10px 0px 168px #9999994f;
  border-radius: 5px;
}

form.webform-submission-check-availability-form input {
  border: 1px solid black;
  background: white;
}

form.webform-submission-check-availability-form
  input:not([type="submit"]):focus {
  border-color: #eb3c3f1d !important;
  box-shadow: 0 0 0 0.25rem #eb3c3f14 !important;
}

form.webform-submission-check-availability-form input[type="submit"] {
  border: 1px solid red;
}

form.webform-submission-check-availability-form .webform-section-title {
  text-align: center;
}

/* maraleina-sports-section */
.maraleina-sports-section .resort-details .star {
  margin-bottom: 16px;
}

.maraleina-sports-section .resort-details .star {
  gap: 3px;
}

.maraleina-sports-section .resort-details h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 14px 0 11px;
}

.maraleina-sports-section .resort-details p {
  font-size: 13px;
  color: #373737;
  font-family: "Poppins", sans-serif;
}

.maraleina-sports-section p {
  font-family: "Poppins", sans-serif;
}

.maraleina-sports-section .resort-details p img {
  height: 17px;
}

.maraleina-sports-section .common-btn {
  margin: 50px auto 0;
}

.maraleina-sports-section .nav-tabs a {
  font-size: 18px;
  padding: 0 !important;
  box-shadow: none;
  border: none;
  background: transparent;
  font-weight: 500;
  color: black;
  transition: all 0.1s linear;
  text-decoration: none;
}

.maraleina-sports-section .nav-tabs li {
  padding: 8px;
  border: solid 1px #000;
  padding: 8px;
  width: 50%;
  text-align: center;
  transition: all 0.1s linear;
}

.maraleina-sports-section .nav-tabs li:nth-child(1) {
  border-radius: 5px 0 0 5px;
}

.maraleina-sports-section .nav-tabs li:nth-child(2) {
  border-radius: 0 5px 5px 0;
}

.maraleina-sports-section .nav-tabs li:hover a,
.maraleina-sports-section .nav-tabs li.active a {
  border: none;
  background-color: #000;
  color: #fff;
  transition: all 0.1s linear;
}

.maraleina-sports-section .nav-tabs li:hover,
.maraleina-sports-section .nav-tabs li.active {
  box-shadow: none;
  background-color: #000;
  transition: all 0.1s linear;
  position: relative;
}

.maraleina-sports-section .nav-tabs li.active:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #000;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
  bottom: -10px;
  border-radius: 2px;
}

.maraleina-sports-section .tab-content img {
  width: 100%;
  display: block;
  aspect-ratio: 1.6;
}

.maraleina-sports-section .nav-tabs {
  margin-bottom: 36px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* coach-profile-section */
.coach-profile-section h6 {
  font-size: 24px;
  font-weight: 600;
}

.coach-profile-section .profile-img img {  
  object-fit: cover;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

@media (min-width: 1024px){
    .banner-text h2 {
        font-size: 108px !important;
    }
}
.card.venue-main-card{
    border-radius: 5px;
}
.card.venue-main-card img{
    border-radius: 5px;
}

.addres-venue p{
    margin-bottom: 10px !important;
}
.card.venue-main-card img{
    margin-bottom: 15px;
}
/* lets-section-end */

/* design fixes for 5 march*/

@media screen and (max-width: 767px){
    .venue .venue-section .col-12.mb-5{
        margin-bottom: 22px !important;
        margin-top: 10px;
    }
    .coach-profile-section .profile-img {text-align: center;}
}
@media screen and (min-width: 768px){
  .coach-profile-section .profile-img img{width: 250px; height: 250px;}
}

@media (min-width: 1024px) {

  .mataleina-form form {
    max-width: 400px;
  }
}
