@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/*----------common styling-----------------*/
body {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.f1 {
  font-family: 'Open Sans', sans-serif;
}

.f2 {
  font-family: 'Roboto', sans-serif;
}

.color-blue {
  color: #2367A0;
}

.color-black {
  color: #181818;
}

.section-padding {
  padding: 40px 0;
}

.h5x {
  font-size: 24px;
}

.h4x {
  font-size: 26px;
}

.h3x {
  font-size: 28px;
}

.h2x {
  font-size: 30px;
}

.h1x {
  font-size: 32px !important;
}

.h1 {
  font-size: 22px;
}

.h2 {
  font-size: 20px;
}

.h3 {
  font-size: 19px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 17px;
}

.h6 {
  font-size: 16px;
}

.h7 {
  font-size: 15px;
}

.h8 {
  font-size: 14px;
}

.h9 {
  font-size: 13px;
}

input:focus {
  outline: none;
}

a {
  text-decoration: none !important;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}

.common-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 55px;
}

.common-contact-btn {
  background: #00c4df;
  border-radius: 10px;
  font-size: 16px;
  color: #fff !important;
  display: block;
  padding: 10px 20px;
  margin: 15px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.common-contact-btn:hover {
  color: #fff;
}

:focus-visible {
  outline: none;
}

.common-para {
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

.common-btn,
.common-btn-blue-border {
  padding: 10px 30px;
  background: transparent;
  border: 1px solid #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .7px;
  font-weight: 400;
  color: #2367A0;
  display: inline-flex;
  align-items: center;
  transition: .4s;
}

.common-btn-blue-border {
  border: 1px solid #2367A0;
  color: #2367A0;
}

.common-btn:hover,
.common-btn-blue-border:hover {
  padding: 10px 45px;
}

.common-btn-blue-border:hover {
  color: #2367A0;
}

.padding-box {
  padding: 0 80px;
}

/*----------home page slider css------------*/
.slider-logo-box img {
  height: 120px !important;
  width: 120px !important;
  margin-bottom: 15px;
  border-radius: 50%;
}

.home-slider .common-btn span svg {
  font-size: 30px;
  position: relative;
}

/*--------------------------home about-----------*/
.home-about .common-para.about-para {
  line-height: 2;
  letter-spacing: 0.5px;
  text-align: justify;
}

.home-about .about-card {
  cursor: pointer;
}

.home-about .about-card .about-pic {
  overflow: hidden;
  position: relative;
}

.home-about .about-card .about-title {
  text-transform: capitalize;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 15px;
  background-color: #0000008f;
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 26px;
}

.home-about .about-card .about-pic img {
  transition: .8s ease-in-out;
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.home-about .about-card:hover .about-pic img {
  transform: scale(1.08);
}

.home-about .about-card .common-para {
  padding: 30px 0px;
  font-weight: 500;
}

.home-about .about-card .common-btn {
  border-color: #2367A0;
  color: #2367A0;
}

.home-about .about-card .common-btn svg {
  color: #2367A0;
}

/*----------------------------------member-resources---------------*/
.member-resources {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("/style/home/img/gym-with-fun.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.member-resources .member-resource-card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 3px;
  padding: 30px 16px;
}

.member-resources .member-resource-card {
  text-align: center;
}

.member-resources .member-resource-card .resource-card-title {
  font-weight: 700;
  color: #000;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin: 20px 0;
  line-height: 1;
  text-transform: capitalize;
}

.member-resources .member-resource-card .common-para {
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  margin-bottom: 40px;
}

.member-resources .member-resource-card .resource-card-link {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-decoration: underline;
  color: #000;
  padding: 7px 12px;
  border: 1px solid;
  border-radius: 5px;
  text-transform: capitalize;
}

.member-resources .member-resource-card svg {
  height: 73px;
  width: 73px;
}

/*-----------------------Buzz-------------------*/
.buzz-details .slickSlider .slick-prev:before,
.buzz-details .slickSlider .slick-next:before {
  color: #000;
}

.buzz-details .buzz-cards .card {
  transition: all .4s ease-in-out;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 10px;
  margin: 10px;
  height: 350px;
}

.buzz-details .buzz-cards .card img {
  height: 250px;
}

.buzz-details .buzz-cards .card .card-body {
  padding: 5px 0 0 0;
}

.buzz-details .buzz-cards .card .card-body .common-para {
  color: #000;
}

.buzz-details .buzz-cards .card:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/*-----------------------upcoming-events-------------------*/
.upcoming-events .col-md-12 {
  padding: 0px !important;
}

.upcoming-events .col-md-8 {
  padding: 0px !important;
}

.upcoming-events .content {
  position: relative;
  margin: auto;
  overflow: hidden;
}

.upcoming-events .content .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.upcoming-events .content:hover .content-overlay {
  opacity: 1;
}

.upcoming-events .content-image3 {
  width: 100%;
  height: 450px;
  border: 6px solid #fff;
}

.upcoming-events .content-image2 {
  width: 100%;
  height: 225px;
  border: 6px solid #fff;
}

.upcoming-events .content-image1 {
  width: 100%;
  height: 300px;
}

.upcoming-events .content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.upcoming-events .content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.upcoming-events .content-details h3 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.upcoming-events .content-details p {
  color: #fff;
  font-size: 1.1em;
}

.upcoming-events .fadeIn-bottom {
  top: 80%;
}

.upcoming-events .fadeIn-top {
  top: 20%;
}

.upcoming-events .fadeIn-left {
  left: 20%;
}

.upcoming-events .fadeIn-right {
  left: 80%;
}

@media(max-width:567px) {
  .content-image3 {
    height: 225px;
  }
}

.upcoming-events .upcoming-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.16);
  margin-bottom: 35px;
}

.upcoming-events .upcoming-card .upcoming-card-pic img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.upcoming-events .upcoming-card .upcoming-title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0;
  line-height: 1.3;
}

.upcoming-events .upcoming-card .upcoming-card-content {
  padding: 30px 50px;
}

.upcoming-events .upcoming-card .upcoming-sub-title {
  font-weight: 600;
  margin-bottom: 0;
}

.upcoming-events .upcoming-card .common-para {
  font-weight: 500;
  color: #000;
  margin: 20px 0;
}

/*---------------------new-member-request-----------*/
.new-member-request {
  background: #13A4DF;
  padding: 50px 0;
}

/*--------new-member-request--------------------*/
.latest-updates .upper {
  background: #fff;
  padding: 0 80px;
  position: relative;
}

.latest-updates {
  padding-bottom: 150px;
}

.latest-updates .card {
  max-width: 1034px;
  margin: auto;
  border: 0;
  padding: 70px 30px;
  background: #FFFFFF;
  box-shadow: 0px 13px 45px rgba(0, 0, 0, 0.15);
}

.latest-updates .card ul li {
  margin-bottom: 30px;
  padding: 20px;
}

.latest-updates .carousel-inner {
  padding: 40px 0;
}

.latest-updates .carousel-control-prev {
  opacity: 1;
  width: auto;
}

.latest-updates .carousel-control-next {
  opacity: 1;
  width: auto;
}

.latest-updates .carousel-control-prev-icon {
  background-image: none;
  padding: 20px;
  background: #2367A0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-updates .carousel-control-next-icon {
  background-image: none;
  padding: 20px;
  background: #2367A0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-updates .upper ul {
  padding-left: 0;
}

.latest-updates .upper .second {
  padding-left: 40px;
  border-left: 1px solid #A3A3A3;
}

.latest-updates .upper .update-title {
  font-weight: 700;
  color: #000;
  font-size: 22px;
  margin-bottom: 8px;
}

.latest-updates .upper .update-content {
  color: #646464;
  font-style: italic;
  font-size: 14px;
}

.latest-updates .upper .pic img {
  height: 175px;
  object-fit: fill;
  width: 100%;
}

.latest-updates .upper .content {
  padding-left: 15px;
}

.latest-updates .update-read-more {
  font-size: 18px;
  color: #2367A0;
  margin-bottom: 14px;
  display: block;
}

.update-date {
  margin: 10px 0px;
  display: flex;
  justify-content: end;
  font-weight: 700;
  font-size: 15px;
}

/*-------------------about--------------------------*/
.about-single {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("/style/friendsclub_images/About-us-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-single .about-content {
  display: flex;
  flex-direction: column;
  height: 80vh;
  justify-content: center;
}

.our-history-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.our-history-content .one {
  position: relative;
  margin-bottom: 20px;
}

.our-history .our-history-pic img {
  height: 385px;
  width: 100%;
  object-fit: cover;
}

.our-history .our-history-alternate {
  margin-top: 50px;
}

.our-history .our-history-number {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.our-history-content.first .our-history-number {
  left: 20px;
}

.our-history-content .one {
  right: 24%;
}

.our-history-alternate .our-history-content .one {
  left: 24%;
}

.about-footer {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)), url("/style/friendsclub_images/pool-game.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 200px;
  background-position: bottom;
}

/*-----------------footer----------*/
footer {
  background: #090909;
}

footer .footer-heading {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .7px;
  font-size: 16px;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer .footer-title {
  font-weight: 300;
  font-size: 14px;
  color: #fff !important;
  letter-spacing: .2px;
}

.footer-signup {
  position: relative;
  background: #fff;
  padding: 7px 5px;
}

.footer-signup input {
  width: 100%;
  border: 0;
  padding-left: 14px;
}

.footer-signup span {
  position: absolute;
  background: #2367A0;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

.footer-copyright {
  background: #DEDEDE;
  padding: 20px 30px;
}

.footer-copyright ul {
  display: flex;
  margin-bottom: 0;
  justify-content: center;
}

.footer-copyright ul li {
  color: #2367A0;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 20px;
}

.footer-copyright .copyright-note {
  text-align: center;
  color: #000;
  font-size: 12px;
  margin-bottom: 0;
}


.page-btn {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  display: block;
  color: #fff;
  width: 40px;
  font-size: 20px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
}

.page-btn span {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-btn {
  left: 4rem;
}

.right-btn {
  right: 4rem;
}

.progress-wrapper {
  position: fixed;
  z-index: 100;
  bottom: 2rem;
  left: 3rem;
  display: none;
}

.custom-slider .progress {
  margin: 1rem 0;
  text-align: center;
}

.custom-slider .progress h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
}

.custom-slider .circle-wrapper {
  display: flex;
}

.custom-slider .circle {
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  margin: 0 0.3rem;
  transition: background-color 0.3s;
}

.custom-slider .circle-1 {
  background-color: #ddd;
}

.custom-slider .wrapper {
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.custom-slider .section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  overflow: hidden;
  transition: left 1.5s;
}

.custom-slider .section-1 {
  z-index: 50;
}

.custom-slider .section-wrapper {
  width: inherit;
  height: inherit;
  transform: scale(1.5);
  transition: all 2s;
}



.custom-slider .section-1-heading-wrapper {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-20%, -50%);
  color: #fff;
}

.custom-slider .section-1-heading {
  font-size: 4rem;
  font-weight: 300;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  text-align: left;
  user-select: none;
}

.custom-slider .section-2 {
  z-index: 40;
}

.custom-slider .section-2-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("/style/home/img/about-bg.jpg") center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.custom-slider .section-3 {
  z-index: 30;
  background-color: #000;
}

.custom-slider .section-3-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("/style/home/img/slider3.jpg") center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-slider .section-4 {
  z-index: 20;
}

.custom-slider .section-4-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* .section-1 .section-4-bg{
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("/style/home/img/sports-2024.jpeg") center no-repeat!important;
    background-size: cover!important;
    background-position: left!important;
} */

.custom-slider .section-4-bg {
  width: 110%;
  height: 110%;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("/style/home/img/Friends-Club.jpg") center no-repeat;
  background-size: cover;
  z-index: -1;
}

.custom-slider .section-4-heading {
  font-size: 10rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 7rem;
  color: #d50000;
  user-select: none;
}

.custom-slider .new-wines-img {
  width: 70rem;
  border: 0.1rem solid #fff;
  padding: 1rem;
  opacity: 0.7;
}

.custom-slider .section-5 {
  z-index: 10;
}

.custom-slider .section-5-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("/style/home/img/gym-with-fun.jpg") center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {

  .latest-updates .carousel-inner {
    padding: 0px;
  }

  .section-1-heading-wrapper {
    width: 80%;
  }

  .section-1-heading {
    font-size: 8rem;
  }

  .sale-bag {
    width: 25rem;
  }

  .sale-btn {
    width: 15rem;
    height: 4rem;
    font-size: 1.7rem;
  }

  .wine-bottle {
    width: 50rem;
  }

  .footer-img {
    width: 25rem;
    margin: 0 7rem;
  }
}


@media (max-width: 800px) {
  .left-btn {
    left: 2rem;
  }

  .right-btn {
    right: 2rem;
  }

  .section-1-heading {
    font-size: 6rem;
  }

  .sale-bag {
    width: 20rem;
  }

  .wine-bottle {
    width: 40rem;
  }

  .section-3-heading {
    font-size: 11rem;
    opacity: 0.7;
  }

  .frame-img {
    width: 60rem;
  }

  .new-wines-img {
    width: 45rem;
  }

  .progress-wrapper {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links div img {
    height: 160px !important;
  }
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  .section-1-heading {
    font-size: 4rem;
  }

  .sale-bag {
    width: 15rem;
  }

  .wine-bottle {
    width: 30rem;
  }

  .sale-btn {
    width: 12rem;
    height: 3rem;
    font-size: 1.4rem;
  }

  .section-3-heading {
    font-size: 10rem;
  }

  .frame-img {
    width: 35rem;
  }

  .section-4-heading {
    font-size: 6rem;
  }

  .new-wines-img {
    width: 35rem;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 45%;
  }

  .left-btn {
    left: 1.5rem;
  }

  .right-btn {
    right: 1.5rem;
  }

  .nav-list {
    top: 6.5rem;
  }

  .section-3-heading {
    font-size: 8rem;
  }

  .grapes-img {
    width: 15rem;
  }

  .grapes-img:hover {
    width: 25rem;
  }
}

@media (max-width: 1218.98px) {
  .latest-updates .card {
    padding: 10px !important;
    max-width: 1032px;
  }
}

@media (max-width: 1300.98px) {
  .latest-updates .upper {
    padding: 0 40px;
  }
}

@media (max-width: 1199.98px) {
  .padding-box {
    padding: 0 30px;
  }

  .slider-logo-box img {
    height: 110px !important;
    width: 110px !important;
  }

  .home-slider #carouselExampleCaptions .slider-title {
    font-size: 36px;
  }

  .home-slider #carouselExampleCaptions .tour-info {
    font-size: 16px;
  }

  .custom-slider .section-1-heading-wrapper {
    text-align: center;
    width: 100%;
  }

  .custom-slider .section-1-heading-wrapper .section-1-heading {
    font-size: 3.2rem;
    text-align: center;
  }

  .custom-slider .common-btn {
    color: #fff;
    margin-top: 30px !important;
    padding: 7px 20px;
    font-size: 14px;
  }

  .common-btn,
  .common-btn-blue-border {
    padding: 7px 20px;
    font-size: 14px;
  }

  .latest-updates .card {
    max-width: 854px;
  }

  .latest-updates .upper .update-title {
    font-size: 25px;
  }

  .latest-updates .upper .update-date {
    font-size: 17px;
  }

  .latest-updates .upper .update-content {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .latest-updates .update-read-more {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .latest-updates .upper .pic img {
    height: 300px;
  }

  .latest-updates .update-read-more svg {
    width: 12px;
  }
}

@media (max-width: 991.98px) {

  .common-btn,
  .common-btn-blue-border {
    padding: 6px 20px;
    font-size: 12px;
  }

  .padding-box {
    padding: 0 0px;
  }

  .home-about .about-card .about-pic img {
    height: 300px;
  }

  .home-about .about-card .about-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .member-resources .member-resource-card {
    padding-bottom: 25px;
    min-height: 290px;
    margin-bottom: 25px;
  }

  .upcoming-events .upcoming-card .upcoming-card-pic img {
    height: 200px;
  }

  .upcoming-events .upcoming-card .upcoming-card-content {
    padding: 20px;
  }

  .upcoming-events .upcoming-card .upcoming-title {
    font-size: 22px;
  }

  .upcoming-events .upcoming-card .upcoming-sub-title {
    font-size: 16px;
  }

  .upcoming-events .upcoming-card .common-para {
    margin: 0px 0;
  }

  .latest-updates .upper {
    padding: 0px 0px;
  }

  .latest-updates .card {
    max-width: 632px;
    padding: 20px 25px 0 20px;
  }

  .latest-updates .upper ul {
    margin-bottom: 0;
  }

  .latest-updates .card ul li {
    border: 1px solid gainsboro;
  }

  .latest-updates .card ul li .content {
    padding: 15px;
  }

  .latest-updates .carousel-control-prev-icon,
  .latest-updates .carousel-control-next-icon {
    padding: 16px;
    font-size: 12px;
    display: none;
  }

  .upcoming-events .upcoming-card {
    min-height: 395px;
  }

  .custom-slider .section-1-heading-wrapper .section-1-heading {
    font-size: 2.7rem;
  }


}

@media (max-width: 767.98px) {
  .common-heading {
    font-size: 25px;
  }

  .common-para {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px;
  }

  .home-about .about-card {
    margin-bottom: 10px;
  }

  .custom-slider .wrapper {
    height: 70vh;
  }

  .page-btn {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .custom-slider .section-1-heading-wrapper {
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .custom-slider .section-1-heading-wrapper .section-1-heading {
    font-size: 2.2rem;
    text-align: center;
  }

  .custom-slider .common-btn {
    padding: 5px 15px;
    font-size: 12px;
  }

  .member-resources .member-resource-card,
  .upcoming-events .upcoming-card {
    width: 80%;
    margin: 20px auto 20px auto;
  }

  .latest-updates .upper .second {
    border-left: 0;
    padding-left: 0;
  }

  .latest-updates .card {
    max-width: 440px;

  }

  .upcoming-events .content,
  .member-resources .padding-box .col-md-3 {
    margin-bottom: 10px;
  }


  .our-history .our-history-alternate {
    flex-direction: column-reverse;
  }

  .our-history-content {
    top: 0;
    transform: translateY(0%);
  }

  .ttm-page-title-row {
    padding-left: 20px;
    padding-top: 80px !important;
    padding-bottom: 30px !important;
  }

  .table>tbody {
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {

  body,
  button,
  table,
  .span {
    font-size: 14px !important;
  }

  h5 {
    font-size: 16px !important;
  }

  .section-padding {
    padding: 20px 0;
  }

  .ttm-page-title-row .title-box .title {
    font-size: 25px;
  }

  .ttm-page-title-row .breadcrumb-wrapper span {
    font-size: 12px;
  }

  .sub-heading h4 {
    font-size: 25px;
  }

  .common-heading {
    line-height: 25px;
    text-align: center;
  }

  .common-btn,
  .common-btn-blue-border {
    padding: 8px 15px;
    font-size: 12px;
  }

  .home-about .common-para.about-para {
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-align: justify;
    font-size: 12px;
  }

  .common-btn:hover,
  .common-btn-blue-border:hover {
    padding: 8px 30px;
  }

  .member-resources .member-resource-card {
    backdrop-filter: none;

  }

  .home-about .about-card {
    margin: 20px auto 20px auto;
  }

  .home-about .about-card .about-pic img {
    height: 200px;
  }

  .custom-slider .section-1-heading-wrapper .section-1-heading {
    font-size: 32px;
  }

  .custom-slider .section-1-heading-wrapper .section-1-heading {
    text-align: center;
    font-size: 25px;
  }

  .custom-slider .common-btn {
    padding: 4px 10px;
    font-size: 13px;
  }

  .upcoming-events .content-image3 {
    height: 225px;
  }

  .page-btn {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }

  .home-about .about-card .about-title {
    font-size: 17px;
  }

  .member-resources .member-resource-card,
  .upcoming-events .upcoming-card {
    width: 65%;
    margin: 20px auto 20px auto;
    padding: 30px;
    min-height: 270px;
  }

  .upcoming-events .margin10 {
    margin: 0 10px;
  }

  .new-member-request {
    text-align: center;
  }

  .new-member-request .common-para {
    padding: 0 30px;
  }

  footer .footer-heading {
    font-size: 14px;
  }

  footer .footer-title {
    font-size: 13px;
  }

  footer .footer-title br:first-child {
    display: none;
  }

  footer ul li {
    margin-bottom: 0;
  }

  .footer-signup {
    width: 170px;
  }

  .footer-signup input {
    font-size: 12px;
  }

  .footer-signup {
    width: 200px;
    padding: 5px 0px;
  }

  .footer-signup span {
    font-size: 12px;
  }

  .footer-copyright {
    padding: 10px;
  }

  .footer-copyright ul li {
    font-size: 11px;
    margin: 0;
    margin-right: 12px;
  }

  .our-history-content .one {
    right: 0%;
    margin: 10px;
  }

  .our-history-alternate .our-history-content .one {
    left: 0%;
  }

  .contact-single .right-wrapper {
    padding: 0px 25px 0px 25px !important;
  }
}

.upcoming-card-content p {
  font-size: 13px;
}

@media (max-width: 500.98px) {
  footer .footer-links {
    padding: 30px !important;
  }

  .footer-signup {
    width: auto;
  }

  .footer-signup span {
    font-size: 11px;
  }


}

@media (max-width: 475.98px) {

  .member-resources .member-resource-card,
  .upcoming-events .upcoming-card {
    width: 90%;
    height: auto;
  }

}

@media (max-width: 425.98px) {

  .member-resources .member-resource-card,
  .upcoming-events .upcoming-card {
    width: 90%;
  }

  .member-resources .member-resource-card svg {
    width: 60px;
    height: 60px;
  }

  .member-resources .member-resource-card .resource-card-title {
    font-size: 18px;
  }

  .upcoming-events .upcoming-card .upcoming-title {
    font-size: 24px;
  }

}

/* New css Start */

.cutom-breadcrum-section {
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-image: linear-gradient(45deg, #00bcd4, rgba(8, 83, 156, 0.75)),
    url("/style/home/img/slider1.jpg");
}

.cutom-breadcrum-section p {
  font-size: 2rem;
  color: white;
  margin-top: auto;
  text-transform: capitalize;
}

.customize-body {
  min-height: calc(100vh - 432px);
}

/*-----------------------------------contact-single--------------------*/
.contact-single {
  /* height: 100vh;*/
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url("/style/friendsclub_images/contact-us-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.contact-single .left,
.contact-single .right {
  margin-top: 50px;
}

.contact-single .left {
  padding: 41px 23px 41px 23px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9px);
}

.contact-single .left ul {
  padding-left: 0;
  list-style-type: none;
}

.contact-single .left ul li {
  margin-bottom: 30px;
}

.contact-single .left .contact-icon-box span {
  height: 65px;
  width: 65px;
  background: #fff;
  display: flex;
  border-radius: 50%;
  color: #000;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

.contact-single .left .contact-info-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #13A4DF;
  margin-bottom: 5px;

}

.contact-single .left .contact-info-content {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 0;
  color: #FFFFFF;
}

.contact-single .right-wrapper {
  padding: 0px 25px 30px 80px;
}

.contact-single .right {
  padding: 20px;
  background: #fff;
}

.contact-single .right input,
.contact-single .right textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #AAAAAA;
  margin-bottom: 30px;
  resize: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.contact-single .right input::placeholder,
.contact-single .right textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #484848;
}

/* Breadcrum header */
.ttm-page-title-row {
  display: block;
  padding-top: 110px;
  padding-bottom: 70px;
  z-index: 11;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.ttm-page-title-row .breadcrumb-wrapper span a {
  color: #fff;
}

/* Breadcrum header end*/

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: #0094da;
}

label {
  display: contents !important;
}

/* Loader */
.form-group {
  position: relative;
}

#loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(225, 225, 225, 0.4);
  /* Adjust the opacity as needed */
  backdrop-filter: blur(4px);
  /* Apply the blur effect */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensure the loading overlay is on top of other content */
}

#loading-image {
  width: 200px;
  height: 200px;
}

/* gallery css */

.gallery-section .col-12 {
  display: flex;
  justify-content: center;
}

.gallery-section .gallery {
  position: relative;
  width: 300px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotate 35s linear infinite;
}

@keyframes rotate {
  from {
    transform: perspective(1200px) rotateY(0deg);
  }

  to {
    transform: perspective(1200px) rotateY(360deg);
  }
}

.gallery-section .gallery span {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg)) translateZ(380px);
}

.gallery-section .gallery span img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:768.98px) {
  .gallery-section .gallery {
    width: 250px;
    height: 175px;
  }

  .gallery-section .gallery span {
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(320px);
  }
}

@media (max-width:640.98px) {
  .gallery-section .gallery {
    width: 200px;
    height: 150px;
  }

  .gallery-section .gallery span {
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(270px);
  }
}

@media (max-width: 425.98px) {
  .gallery-section .gallery {
    width: 140px;
    height: 120px;
  }

  .gallery-section .gallery span {
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(180px);
  }
}