body {
  font-family: "Tstar Pro", sans-serif;
}
a {
  text-decoration: none;
}
/* .reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
} */
.visually-hidden {
  position: absolute;
  height: 1px;
  width: 1px;
  white-space: nowrap;
  clip-path: inset(-50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.main-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  background-color: rgba(13, 30, 43, 0.7);
  color: #fff;
  height: 70px;
}
.logo svg {
  height: 45px;
  width: 45px;
}
.logo svg path:nth-child(1) {
  stroke: #e1e1e1;
}
.logo svg path:nth-child(2) {
  stroke: #fff;
}
.menu-toggle-btn {
  /* background: transparent; */
  border: 0;
  cursor: pointer;
  color: white;
}
.menu-toggle-btn path {
  stroke-width: 1px;
  transform-box: fill-box;
  transition: 250ms;
  transform-origin: center;
  fill: white;
}
.menu-toggle-btn[aria-expanded="true"] path:nth-child(1) {
  opacity: 0;
  transform: rotate(45deg);
}
.menu-toggle-btn[aria-expanded="true"] path:nth-child(2) {
  transform: rotate(45deg);
}
.menu-toggle-btn[aria-expanded="true"] path:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.primary-navigation {
  position: absolute;
  top: 69px;
  background: rgba(13, 30, 43, 0.91);
  color: #fff;
  height: calc(100vh - 64px);
  right: 0px;
  width: 500px;
  z-index: 111;
}
.primary-navigation li {
  list-style: none;
}
.primary-navigation a {
  position: relative;
  width: 100%;
  display: inline-block;
  padding: 10px 0px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 250ms;
  font-size: 16px;
  text-transform: uppercase;
}
.primary-navigation a:hover,
.primary-navigation a:focus {
  color: #d2a571;
  letter-spacing: 2px;
}
.primary-navigation a:hover:before,
.primary-navigation a:focus:before {
  width: 100%;
}
.primary-navigation a:before {
  content: "";
  height: 1px;
  width: 0%;
  background-color: rgba(13, 30, 43, 0.7);
  transition: 250ms;
  position: absolute;
  bottom: 0;
  left: 0;
}
.primary-navigation[data-state="opened"] {
  display: block;
  animation: navigationOpenAnimation 250ms ease-in-out forwards;
}
.primary-navigation[data-state="closing"] {
  animation: navigationCloseAnimation 250ms ease-in-out forwards;
}
.primary-navigation[data-state="closed"] {
  display: none;
}

@keyframes navigationOpenAnimation {
  0% {
    clip-path: circle(0% at top right);
  }
  100% {
    clip-path: circle(250% at top right);
  }
}

@keyframes navigationCloseAnimation {
  0% {
    clip-path: circle(250% at top right);
  }
  100% {
    clip-path: circle(0% at top right);
  }
}
@-webkit-keyframes navigationOpenAnimation {
  0% {
    clip-path: circle(0% at top right);
  }
  100% {
    clip-path: circle(250% at top right);
  }
}

@-webkit-keyframes navigationCloseAnimation {
  0% {
    clip-path: circle(250% at top right);
  }
  100% {
    clip-path: circle(0% at top right);
  }
}
nav.nav__main > ul li.has_children {
  position: relative;
}
nav.nav__main > ul li.has_children:before {
  display: block;
  position: absolute;
  top: 1em;
  right: 1em;
  content: "";
  width: 1.5em;
  height: 1.5em;
  background-image: url(../img/arrow-down.svg);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: pointer;
}

/* .hide{
  display: none !important;
 } */
ul li .subnav {
  position: relative;
  top: auto;
  display: none;
  z-index: 1000;
  padding-bottom: 20px;
  background-color: rgba(13, 30, 43, 0.6);
}
ul li .subnav ul li a {
  border-bottom: 0;
  padding: 5px 0px;
}
/* ul li .subnav .container {
  display: block;
} */
.show {
  display: block !important;
}
ul li.has_children.show:before {
  transform: rotate(180deg);
}

ul li .subnav .container .subnav_group h4 {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  color: #cfa176;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  margin: 1em 0;
  padding: 0 0 0.5em 0;
}
ul li .subnav .container .subnav_group ul {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 740px) {
  .primary-navigation {
    width: 400px;
  }
}

.topin {
  display: none;
}
.reg-btn {
  background-color: #24a6a6;
  color: white;
  font-weight: 600;
}
.reg-btn a {
  color: white;
}
.reg-btn:hover {
  background-color: white;
  color: #24a6a6;
  border: 1px solid #24a6a6;
}

.reg-btn:hover a {
  color: #24a6a6;
}

.socail-links {
  list-style: none;
  margin: 0px 50px;
}

.socail-links .liimg {
  display: inline-block;
  padding: 0px 6px;
}
.socail-links li img {
  width: 20px;
}
.socail-links li a:hover img {
  opacity: 80%;
}
@media screen and (max-width: 1024px) {
  .socail-links {
    display: none;
  }
}
@media screen and (max-width: 740px) {
  .wrapper {
    position: fixed;
    top: 0;
    left: 20%;
    height: 100%;
    width: 80%;
  }
  .socail-links {
    list-style: none;
    margin: 0px 10px;
  }
  
}
/* --------------------------- */

.banner img {
  width: 100%;
}
.home__banner__main{

    background-color: #cfa176;
    margin: 0 auto;
    width: 80%;
    transform: translateY(-60px);
    padding: 30px 20px;
    border-radius: 10px;
}
.home__banner__main .home__banner__secdiv{
    display: flex;
  justify-content: space-between;
  align-items: center;
}
.home__banner__main .home__banner__secdiv a{
    color: black;
    font-weight: 500;
    font-size: 18px;
}
.carousel-indicators {
  width: 15px;
  top: 0;
  left: inherit;
  right: 60px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-indicators li {
  background-color: transparent;
  margin: 10px;
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin: 8px 0px;
  padding: 0px;
  border: 1px solid white;
  border-radius: 15px;
  transition: background-color 0.2s ease 0s;
}
.carousel-indicators .active {
  background-color: #fff;
}
.carousel-caption {
  text-align: center !important;
  top:50% !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  padding: 0;
}
.banner-info {
  font-weight: 600;
  line-height: 1.2;
color: #d2a571;
  font-size: 4rem;
}
.home-filters-item .btn .pull-left:before {
  font-family: icomoon !important;
  line-height: 80px;
  position: absolute;
  top: 0;
  left: 24px;
  color: #242a3a;
}

.home-filters-line-first .home-filters-item:first-child .pull-left:before {
  font-size: 21px;
  line-height: 78px;
}
.home-filters-item .btn {
  width: 100%;
  background-color: transparent;
  font-family: geomanistlight, Sans-Serif;
  color: #242a3a;
  cursor: pointer;
  border: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}

.home-filters-type .pull-left:before {
  content: "\e909";
  font-size: 25px;
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;

  background: transparent;

  border: none;
}

.home-filters-search-bar {
  position: absolute;

  top: 0;

  left: 0;

  width: 820px;

  white-space: nowrap;

  height: 80px;

  z-index: 10;

  overflow: hidden;

  pointer-events: none;
}

.home-filters-submit .home-filters-button {
  width: 100%;

  height: 100%;

  color: #fff;

  position: relative;

  z-index: 2;

  background-color: transparent;
}

.home-filters-submit {
  width: 142px;

  border: 0;

  position: absolute;

  right: 0;

  top: 0;

  height: 80px;

  z-index: 10;
}

.home-filters-submit-validate {
  width: 100%;

  color: #fff;

  font-family: geomanistbook, Sans-Serif;

  position: absolute;

  text-align: center;

  pointer-events: none;

  top: 0;

  height: 100%;

  left: 0;

  z-index: 2;

  line-height: 18px;

  background-color: #0d1e2b;

  display: flex;

  justify-content: center;

  flex-direction: column;
}

.home-filters-item .btn span {
  height: 80px;

  line-height: 80px;

  font-size: 14px;

  display: block;

  position: relative;

  padding-left: 60px;
}

.about-section {
  background-color: #d2a571;

  margin-top: 20px;

  position: relative;
}

.about-section .about-container {
  padding: 50px;

  display: flex;

  align-items: center;
}

.about-img-container {
  width: 50%;
}

.block-img {
  /* background-image:url(../img/about-img.jpeg);

	background-color: rgba(255,255,255,0.1);

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    /* background-attachment: fixed;

    position: relative;

    height: 0;

    width: 100%;

    padding-bottom: 100%;

    overflow: hidden; */
}

.block-img img {
  width: 100%;
}

.about-content-container {
  position: absolute;

  width: 60%;

  background-color: rgba(255, 255, 255, 0.9);

  right: 20px;
}

.about-content-container .about-content {
  width: 100%;

  padding: 5%;
}

.about-content h2,
h3 {
  text-align: center;

  color: #cfa176;

  font-weight: 700;
}
.about__us h2{
  margin: 20px 0;
  font-size: 36px;
}
.content__about p{

  color: #373737;
  font-size: 15px;
    line-height: 1.5em;
}

.about-content p {
  text-align: left;
 
}

.about-content h3 {
  text-align: left;
}

.details-section {
  background-color: #fff;

  padding: 50px 0px;
}

.details-section .container-fluid {
  padding: 0px;
}

.details-section-points {
  display: flex;

  background-color: #d2a571;

  color: #fff;
}

.activities {
  background-color: #0d1e2b;
}

.details-section h2 {
  margin-top: 10px;

  text-align: center;
}

.details-section ul li {
  text-align: left;

  padding-right: 20px;

  list-style-type: none;

  padding-bottom: 8px;
}

.details-section ul li::marker {
  display: none;

  list-style-type: none;
}

.details-section ul li:before {
  content: "";

  position: absolute;

  right: 0px;

  top: 16px;

  border-radius: 50%;

  width: 4px;

  height: 4px;

  background: #fff;
}

.objectives {
  width: 50%;

  padding: 20px 40px;

  border-right: 1px solid #0d1e2b;
}

.details-section-img {
  text-align: center;

  margin: 30px auto;
}

.activities {
  width: 50%;

  padding: 20px 40px;
}

.details-section h2 {
  margin-bottom: 30px;
}

.contact {
  background: #dee2e6;

  padding: 60px 0px 60px 0px;
}

.contact .titlepage {
  text-align: center;
}

.contact .titlepage h3 {
  font-weight: 700;

  color: #0d1e2b;

  line-height: 30px;

  font-size: 2rem;

  margin: 0 auto;

  margin-bottom: 10px;
}

.contact .titlepage p {
  color: #0d1e2b;
  line-height: 30px;
  font-size: 1rem;
}

.contact .contact {
  background: #0d1e2b;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.contact .contact .contactus {
  border: #b1b0b0 solid 1px;
  padding: 12px 19px;
  margin-bottom: 26px;
  border-radius: inherit;
  color: #000;
  width: 100%;
  border-radius: 0.375rem;
  text-align: left;
}

.contact .contact .textarea {
  margin-bottom: 25px;
  padding: 15px 19px;
  color: #000 !important;
  width: 100%;
  border: #b1b0b0 solid 1px;
  border-radius: inherit;
  border-radius: 0.375rem;
  text-align: left;
}

.contact .contact .send {
  font-size: 16px;
  border: #000 solid 1px;
  padding: 10px 50px;
  background-color: #f83308;
  color: #fff;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  transition: ease-in all 0.5s;
border-radius: 0.375rem;
}

.contact .contact .send:hover {
  background-color: #24a6a6;

  border: #d2a571 solid 1px;

  color: #fff;

  border-radius: 25px;

  transition: ease-in all 0.5s;
}

.width {
  width: 25%;
}
/* 
.footer {
  background: #0178b2;

  padding: 40px 0 40px 0;
}

.footer .address h3 {
  color: #fff;

  font-size: 25px;

  line-height: 35px;

  font-weight: 500;

  padding-bottom: 20px;
}

.footer .address i {
  color: #fff;

  font-size: 15px;

  font-weight: 500;
}

.footer .address i img {
  padding-right: 10px;
} */

.form-control {
  border: #b1b0b0 solid 2px;

  margin-bottom: 30px;

  border-radius: inherit;

  padding: 16px 19px;

  color: #cfcece;
}

.form-control:focus,
.form-control:hover {
  border: #b1b0b0 solid 2px !important;
}

.textarea {
  margin-bottom: 30px;

  padding: 71px 19px;

  color: #655f5f !important;

  width: 100%;

  border: #b1b0b0 solid 2px;

  border-radius: inherit;
}

.send-btn {
  margin-left: 15px;

  font-size: 16px;

  border: #000000 solid 2px;

  padding: 16px 70px;

  background-color: #000000;

  color: #fff;
}

.send-btn:hover {
  background-color: #ff0000;

  border: #ff0000 solid 2px;

  color: #fff;
}

.footer .address .form-control {
  padding: 10px 15px;

  border: #ddd solid 1px;

  margin-bottom: 20px;

  box-shadow: inherit;
}

.form-control:focus,
.form-control:hover {
  border: #ddd solid 1px !important;
}

.footer .address .submit-btn {
  padding: 4px 23px;

  border: #000 solid 1px;

  background: #000;

  color: #fc4311;

  font-weight: 500;

  font-size: 17px;
}

.footer .address .submit-btn:hover {
  background: #fff;

  border: #fff solid 1px;

  color: #fc4311;
}

.footer-area-main li a {
  color: #fff;

  font-size: 17px;
}

.footer-area-main li:hover a,
.footer-area-main li:focus a {
  color: #000;
}

.footer-area-main li.active a {
  color: #000;
}

footer {
  text-align: center;
}

.footer-area {
  background-color: #0d1e2b;
}

.copy-right {
  padding: 20px;

  background-color: #0d1e2b;

  font-size: 0.9rem;

  font-weight: 600;

  color: white;
}

.copy-right p {
  margin-bottom: 0;
}

@keyframes growProgressBar {
  0%,
  33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: "<number>";

  inherits: false;

  initial-value: 0;
}

div[role="progressbar"] {
  --size: 12rem;

  --fg: #d2a571;

  --bg: #0d1e2b;

  --pgPercentage: var(--value);

  animation: growProgressBar 3s 1 forwards;

  width: var(--size);

  height: var(--size);

  border-radius: 50%;

  display: grid;

  place-items: center;

  background: radial-gradient(
      closest-side,
      white 80%,

      transparent 0 99.9%,

      white 0
    ),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);

  font-family: Helvetica, Arial, sans-serif;

  font-size: calc(var(--size) / 5);

  color: var(--fg);

  margin: 30px auto;
}

div[role="progressbar"]::before {
  counter-reset: percentage var(--value);

  content: counter(percentage) "%";
}

.progress-box {
  padding: 30px 30px;

  font-size: 16px;

  color: #0d1e2b;
}

.progress-section {
  text-align: center;

  padding: 60px 0px;
}

.progress-section h3 {
  padding: 0px 0px 6px 0px;

  font-weight: bold;

  color: #0d1e2b;

  line-height: 30px;

  font-size: 2.5rem;

  margin: 10px auto;

  margin-bottom: 20px;
}

.progress-section h3::after {
  content: "";

  display: block;

  width: 70px;

  height: 5px;

  background-color: #cfa176;

  margin: auto;

  margin-top: 10px;
}

.video-section {
  text-align: center;

  padding: 40px 0px 70px 0px;
}

.video-section img,
.video-section h3 {
  margin-bottom: 30px;
}
.register-section{
  margin: 50px 0 50px 0 ;

}

.register-section  .home__boxes{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap:10px;
}

.register-box {
  height: 200px;

  background: url(../img/sp-banner1.jpg) left center no-repeat;

  background-size: cover;

  text-align: center;

  padding: 60px 60px;

  position: relative;
}

.register-txt {
  position: absolute;

  left: 0px;

  right: 0px;

  margin: auto;

  bottom: 60px;
}

.register-box h2  {
  font-size: 24px;

  color: #fff;
font-weight: 600;
  margin-bottom: 30px;
}
.register-box h2  a{
  font-size: 24px;

  color: #fff;
font-weight: 600;
  margin-bottom: 30px;
}
.register-box .btn {
  background: #d2a571;

  padding: 10px 20px;

  color: white;
}

.register-box .btn:hover {
  background: #a07f58;
  border: none;
}

.register-box1 {
  background: url(../img/sp-banner2.jpg) left center no-repeat;

  background-size: cover;
}
.register-box2 {
  background: url(../img/outdoor.jpg) left center no-repeat;

  background-size: cover;
}
/* ------------------about us styling---------------- */

.bg {
  background-color: white;

  width: 100%;

  height: 100px;
}

.main-cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-gap: 20px;

  margin: 30px 0px;
}

.cards-main-div h2 {
  text-align: center;

  font-weight: 800;

  font-size: 2.5rem;

  margin: 20px 0px;
}

.cards-main-div h2::after {
  content: " ";

  display: block;

  width: 100px;

  height: 6px;

  background-color: rgb(211, 9, 9);

  margin: auto;
}

.main-cards .card {
  border-radius: 40px !important;

  --bs-card-border-color: white;
}

.main-cards .div1 .card .cards-buttons {
  display: flex;

  justify-content: space-between;
}

.main-cards .div1 .card .card-body .card-btn {
  display: flex;

  align-items: center;

  justify-content: center;
}

.main-cards .div1 .card-body .badge {
  padding: 5px 30px;

  text-align: center;

  background-color: rgb(211, 9, 9);

  font-size: 1rem;

  align-items: center;
}

.main-cards .card img {
  padding: 10px;

  border-radius: 30px;
}

.main-cards .card-body a {
  text-decoration: none;

  align-items: center;
}

.main-cards .card-body a:hover {
  text-decoration: none;

  color: white;
}

.card-body table .table-head {
  margin: 20px 0px;
}

.card-body table .pkgprice {
  color: rgb(211, 9, 9);

  font-weight: 800;
}

.card-body table td {
  font-size: 0.9rem;

  font-weight: 500;
}

.table > :not(caption) > * > * {
  padding: 0.3rem 0rem;

  background-color: var(--bs-table-bg);

  border-bottom-width: 0px !important;

  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

@media screen and (max-width: 1024px) {
  .main-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-gap: 30px;

    margin: 30px 0px;
  }
}

@media screen and (max-width: 740px) {
  .main-cards {
    display: grid;

    grid-template-columns: repeat(1, 1fr);

    grid-gap: 20px;

    margin: 30px 0px;
  }
}

/* -----------popup----------- */

.overlay {
  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.5);

  z-index: 10;

  opacity: 0;

  visibility: hidden;

  transition: all 0.5s ease;
}

.overlay.visible {
  opacity: 1;

  visibility: visible;
}

.main-popup {
  position: fixed;

  left: 0;

  top: 30px;

  margin: 0;

  width: 100%;

  height: 450px;

  background-color: #e7e7f6;

  border-radius: 5px;

  z-index: 15;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-20px);

  transition: all 0.5s ease;

  /*overflow: hidden;*/
}

.main-popup.visible {
  opacity: 1;

  visibility: visible;

  transform: translateY(10px);

  transition: all 0.5s ease;
}

@media (min-width: 500px) {
  .main-popup {
    width: 500px;

    left: 50%;

    margin: 0 0 0 -250px;
  }
}

.popup-header {
  position: relative;

  padding: 0;

  margin: 0;

  height: 62px;

  width: 100%;
}

#popup-close-button a {
  position: absolute;

  right: 10px;

  top: -30px;

  width: 22px;

  height: 22px;
}

#popup-close-button a::before {
  content: "";

  position: absolute;

  right: 10px;

  top: 0;

  width: 3px;

  height: 25px;

  background-color: #fff;

  -webkit-transform: rotate(45deg);

  -moz-transform: rotate(45deg);

  -ms-transform: rotate(45deg);

  -o-transform: rotate(45deg);

  transform: rotate(45deg);
}

#popup-close-button a::after {
  content: "";

  position: absolute;

  right: 10px;

  top: 0;

  width: 3px;

  height: 25px;

  background-color: #fff;

  -webkit-transform: rotate(-45deg);

  -moz-transform: rotate(-45deg);

  -ms-transform: rotate(-45deg);

  -o-transform: rotate(-45deg);

  transform: rotate(-45deg);
}

.popup-header ul {
  margin: 0;

  padding: 0;
}

.popup-header ul li {
  text-align: center;

  list-style: none;

  width: 100%;

  float: left;
}

.popup-header ul li a {
  display: block;

  padding: 20px 0;

  margin: 0;

  text-decoration: none;

  font-size: 1.2em;
}

#register {
  background-color: rgba(13, 30, 43, 0.7);

  color: #fff;

  border-radius: 0 5px 0 0;

  text-transform: uppercase;

  font-weight: 700;
}

.popup-content form {
  padding: 10px;
}

.popup-content .form-control {
  margin-bottom: 0 !important;

  padding: 11px 19px !important;
}

#containers {
  width: 70%;

  margin: auto;

  position: absolute;

  top: 20%;

  left: 0;

  right: 0;

  bottom: 0;
}

#containers header {
  text-align: center;

  vertical-align: middle;

  line-height: 3rem;

  /* height: 3rem; */

  background: #23a5a5;

  font-size: 1.4rem;

  color: white;

  font-weight: 700;
}

#containers p {
  color: black;

  padding: 20px 10px;

  text-align: center;
}

.needs-validation input {
  border: 2px solid #23a5a5;

  border-left: 4px solid;

  border-color: #23a5a5;

  /* padding: 10px; */

  color: white;
}

.needs-validation input[type="text"]:focus,
.needs-validation input[type="email"]:focus,
.needs-validation input[type="password"]:focus,
.needs-validation input[type="number"]:focus {
  outline: 0;

  background: #23a5a5;

  border-radius: 1.2rem;

  border-color: transparent;

  color: white;
}

.needs-validation select {
  border: 2px solid #23a5a5;

  border-left: 4px solid;

  border-color: #23a5a5;

  /* padding: 10px; */

  /* color: white; */
}

.needs-validation button[type="submit"] {
  display: block;

  width: 40%;

  background-color: #23a5a5;

  text-transform: uppercase;

  color: white;

  font-weight: 600;

  margin: auto;

  align-items: center;

  text-align: center;

  margin: 20px auto;
}

.needs-validation .form-select {
  margin-right: 10px;

  border-radius: 0 !important;
}

.needs-validation .form-control {
  padding: 5px 19px !important;

  color: white !important;
}

.needs-validation label {
  color: black;
}

/* -----------product details page ----------- */

.pricing-section a,
.pricing-section a:hover,
.pricing-section a:focus,
.pricing-section a:active {
  text-decoration: none;

  outline: none;
}

.pricing-section {
  position: relative;

  padding: 180px 0 80px;

  overflow: hidden;
}

.pricing-section .outer-box {
  max-width: 1100px;

  margin: 0 auto;
}

.pricing-section .row {
  margin: 0 -30px;
}

.pricing-block {
  position: relative;

  /* padding: 0 30px;

margin-bottom: 40px; */
}

.pricing-block .inner-box {
  position: relative;

  background-color: #ffffff;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  padding: 0 0 30px;

  margin: 0 auto;

  border: 1px solid rgba(0, 0, 0, 0.175);
}

.pricing-section .price-box {
  position: relative;

  text-align: center;

  padding: 10px 20px;
}

.pricing-section .title {
  position: relative;

  display: block;

  font-size: 24px;

  line-height: 1.2em;

  color: #222222;

  font-weight: 600;
}

.pricing-section .price {
  display: block;

  font-size: 30px;

  color: #222222;

  font-weight: 700;

  color: #24a6a6;
}

.pricing-block .features {
  position: relative;

  max-width: 600px;

  margin: 0 auto 20px;
}

.pricing-section .btn-box {
  position: relative;

  text-align: center;
}

.pricing-section .btn-box a {
  position: relative;

  display: inline-block;

  font-size: 16px;

  line-height: 25px;

  color: #ffffff;

  font-weight: 600;

  padding: 8px 40px;

  background-color: #24a6a6;

  border-radius: 10px;

  border-top: 2px solid transparent;

  border-bottom: 2px solid transparent;

  -webkit-transition: all 400ms ease;

  -moz-transition: all 400ms ease;

  -ms-transition: all 400ms ease;

  -o-transition: all 400ms ease;

  transition: all 300ms ease;
}

.pricing-section .btn-box a:hover {
  color: #ffffff;
}

.pricing-block .inner-box:hover .btn-box a {
  color: #24a6a6;

  background: none;

  border-radius: 0px;

  border-color: #24a6a6;
}

.pricing-section .card:hover .btn-box a {
  color: #24a6a6;

  background: none;

  border-radius: 0px;

  border-color: #24a6a6;
}

.pricing-section .table > :not(caption) > * > * {
  padding: 0.7rem 1rem !important;
}

.pricing-section .card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  height: 400px;
}

.pricing-section .for-services td {
  border: 1px solid rgba(0, 0, 0, 0.175);
}

.pricing-section .for-services {
  border-bottom: 1px solid rgba(0, 0, 0, 0.175);
}

section {
  /* padding: 60px 0; */
  position: relative;
}
.inner_page_breadcrumb {
  background-image: url("{{asset('public/frontend/img/contactbg.html')}}");
  background-repeat: no-repeat;
  height: 370px;
  /* margin-top: 88px; */
  position: relative;
}
.inner_page_breadcrumb:before {
  background-color: #1d293e;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: 0;
}
.inner_page_breadcrumb .breadcrumb_title {
  font-size: 40px;
  font-family: "Tstar Pro", sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}
.inner_page_breadcrumb .breadcrumb_content .breadcrumb {
  background-color: transparent;
  display: inline-flex;
  margin-bottom: 0;
  padding-left: 0;
}
.inner_page_breadcrumb .breadcrumb_content {
  margin-top: 85px;
  position: relative;
}
.inner_page_breadcrumb {
  padding: 100px 0px 0px 0px;
}
.bgc-f7 {
  background-color: #f7f7f7;
}
.form_grid {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  padding: 30px;
}
.contact_localtion {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 30px;
  position: relative;
}
.form_grid .contact_form input,
.form_grid .contact_form textarea.form-control {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  background-color: #fff;
  color: #484848;
  font-size: 14px;
  line-height: 1.2;
}
.form_grid .contact_form input {
  height: 50px;
  margin-bottom: 20px;
  padding-left: 20px;
}
/* .form_grid .contact_form button {
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgb(255 90 95 / 30%);
    font-size: 16px;
    font-family: "Tstar Pro", sans-serif;
    color: #fff;;
    line-height: 1.2;

} */
.contact_form_social_area {
  display: flex;
  justify-content: center;
}
.contact_form_social_area li {
  background-color: #f7f7f7;
  border-radius: 8px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  width: 42px;
  transition: 0.3s;
}
.contact_form_social_area li a {
  font-size: 14px;
  color: #484848;
  line-height: 1.2;
}
.contact_form_social_area li:hover {
  background-color: #24a6a6;
  border-radius: 8px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  width: 42px;
  transition: 0.3s;
}
.contact_form_social_area li:hover a {
  font-size: 14px;
  color: white;
  line-height: 1.2;
}
.contact_localtion .content_list .h5,
.contact_localtion .content_list h5 {
  font-size: 16px;
  font-family: "Tstar Pro", sans-serif;
  color: #484848;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 0;
}
.form_grid .h4,
.form_grid h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #24a6a6;
}
.contact_localtion .h4,
.contact_localtion h4 {
  font-family: "Tstar Pro", sans-serif;
  color: #24a6a6;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact_localtion p {
  font-size: 14px;
  font-family: "Tstar Pro", sans-serif;
  color: #484848;
  line-height: 1.714;
  margin-bottom: 20px;
}
.gmap_canvas iframe {
  width: 100%;
  height: 100%;
}
.mt50 {
  margin-top: 50px;
}
.h600 {
  height: 600px;
}
/* .location__tab tr td {
    padding:6px 5px;

} */

.responsive-map {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.responsive-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.inner_page_breadcrumb .breadcrumb-item a,
.inner_page_breadcrumb .breadcrumb-item + .breadcrumb-item:before,
.inner_page_breadcrumb .breadcrumb-item.active {
  color: #fff;
  text-transform: capitalize;
}
.inner_page_breadcrumb .breadcrumb-item.active {
  color: #fff;
  text-transform: capitalize;
}
.header {
  width: 100%;
  padding: 100px 0px 30px 0px;
  overflow: hidden;
  background: radial-gradient(#111, #071a1a);
}
.text__top {
  z-index: 11;
  padding: 50px 100px 0px 0px;
}

.visual {
  width: 50%;
}
.visual img {
  width: 100%;
}

.text__top h1 {
  font-size: 70px;
  font-weight: 700;
  color: white;
}

.text__top h1 span {
  color: #24a6a6;
}
.text__top p {
  color: white;
}
.text__top .top_serv_btn:hover a {
  text-decoration: none;
  cursor: pointer;
  color: white;
}
@media (max-width: 768px) {
  .header .container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .text__top,
  .visual {
    width: 100%;
    margin-bottom: 20px;
  }

  #discount .visual img {
    width: 70%;
    margin-bottom: 30px;
  }
}

.banner__layer .row {
  align-items: center;
}
.banner__layer a {
  text-decoration: none;
  cursor: pointer;
}
.banner__layer .banner__layer-btn:hover a {
  text-decoration: none;
  cursor: pointer;
  color: white;
}
.banner__layer {
  background-color: #24a6a6;
  padding: 50px 60px;
  border-radius: 20px;
  background-image: url("{{asset('public/frontend/img/curve.webp')}}");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 314px -419px;
  align-items: center;
}
.banner__layer-info {
  color: #fff;
  position: relative;
  left: -10px;
  top: 13px;
}
.banner__layer-info h2 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 600;
}
.free-btn {
  width: 297px;
  height: 72px;
  border-radius: 8px;
  text-align: center;
  line-height: 72px;
  font-size: 20px;
  color: #fff;
  display: inline-block;
  position: relative;
  margin: auto;
  text-transform: uppercase;
  font-weight: 600;
  background: #d2a571;
}
.free-btn:hover {
  background: #d19148;
}
.banner__layer-btn {
  text-align: right;
}
.btn-hover-ripple .btn-content {
  z-index: 2;
  position: relative;
  transition: color 0.2s ease-in-out;
}
.btn-hover-ripple .btn-ripple {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.17);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.btn-hover-translate {
  transform: translateY(0px);
}
.btn-hover-translate:hover {
  transform: translateY(-2px);
}
.section__title {
  margin-bottom: 30px;
  margin-top: 30px;
}
.section__title {
  font-size: 50px;
  font-weight: 500;
}
.section__desc {
  margin-bottom: 20px;
}
.section__desc {
  font-size: 15px;
  line-height: 1.5em;
  color: #373737;
}

.section__header ul {
  /* margin-bottom: 40px; */
}
/* .list-unstyled {
    padding-left: 0;
    list-style: none;
} */
.section__header ul li {
  font-size: 16px;
  margin-bottom: 15px;
  /* display: flex; */
  align-items: center;
  color: #75799d;
}

.workout {
  text-align: center;
  width: 90%;
  margin: auto;
}
.workout h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: #24a6a6;
  font-weight: 600;
}
.workout p {
  font-size: 18px;
  line-height: 1.7;
  color: #75799d;
}

.about-col h1 {
  font-size: 28px;
  color: #24a6a6;
}
.about-col p {
  max-width: 90%;
  text-align: justify;
  margin: 15px auto;
}

.service-grid {
  background: #fcfcfc;
}

.service-icon {
  position: relative;
}

.service-icon i {
  font-size: 40px;
  color: #24a6a6;
  margin-bottom: 20px;
  display: inline-block;
}
.service-wrap {
  border: 1px solid #e6e6e6;
  padding: 50px 30px;
  position: relative;
  background-image: url(../img/spagenltmen.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: local;
  transition: all 0.5s;
}

.service-wrap a {
  color: white;
  text-decoration: none;
}

.service-wrap1 {
  background-image: url(../img/ladies.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: local;
  transition: all 0.5s;
}

.service-wrap h4 {
  font-weight: 600;
  color: white;
  margin-bottom: 17px;
  font-size: 18px;
  text-transform: capitalize;
  position: relative;
}
.service-wrap a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.spa__services h4 {
  font-weight: 600;
  color: #24a6a6;
  margin-bottom: 17px;
  font-size: 32px;
  text-transform: capitalize;
  text-align: center;
}
.spa__services p {
  font-size: 18px;
  line-height: 1.7;
  color: #75799d;
}

#container {
  /* height: 100vh;
  width: 100vw; */
  margin: 0;
  padding: 0;
  /* background: #24a6a6; */
  display: grid;
  place-items: center;
}

#slider-container {
  height: 300px;
  width: 85vw;
  max-width: 1400px;
  /* background: #54d5e4; */
  /* box-shadow: 5px 5px 8px gray inset; */
  position: relative;
  overflow: hidden;
  padding: 20px;
}

#slider-container .btn {
  position: absolute;
  top: calc(55% - 30px);
  height: 30px;
  width: 30px;
  border-left: 8px solid #d2a571;
  border-top: 8px solid #d2a571;
}

#slider-container .btn:hover {
  transform: scale(1.2);
}

#slider-container .btn.inactive {
  border-color: rgb(153, 121, 126);
}

#slider-container .btn:first-of-type {
  transform: rotate(-45deg);
  left: 10px;
}

#slider-container .btn:last-of-type {
  transform: rotate(135deg);
  right: 10px;
}

#slider-container #slider {
  display: flex;
  width: 1000%;
  height: 100%;
  transition: all 0.5s;
}

#slider-container #slider .slide {
  height: 90%;
  margin: auto 10px;
  background-color: #24a6a6;
  box-shadow: 2px 2px 4px 2px white, -2px -2px 4px 2px white;
  display: grid;
  place-items: center;
}

#slider-container #slider .slide span {
  color: white;
  font-size: 30px;
  text-align: center;
}

@media only screen and (min-width: 1100px) {
  #slider-container #slider .slide {
    width: calc(2.5% - 20px);
  }
}

@media only screen and (max-width: 1100px) {
  #slider-container #slider .slide {
    width: calc(3.3333333% - 20px);
  }
}

@media only screen and (max-width: 900px) {
  #slider-container #slider .slide {
    width: calc(5% - 20px);
  }
}

@media only screen and (max-width: 550px) {
  #slider-container #slider .slide {
    width: calc(10% - 20px);
  }
}

.todays-speciality {
  width: 100%;
  height: 600px;
  position: relative;
}
#today {
  position: absolute;
  background-attachment: fixed;
  background-size: cover;
  background-image: url("../../../../demo.kallyas.net/phaeton-restaurant-bar-pub/wp-content/uploads/sites/7/2016/06/section2.jpg");
  width: 100%;
  height: 100%;
}
.today-title,
.service-title,
.tasty-title {
  /* font-family: 'Amatic SC',cursive; */
  font-size: 4em;
  letter-spacing: 20px;
  word-spacing: 10px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  text-align: center;
  margin-top: 150px;
}
.service-title,
.tasty-title {
  font-weight: 600;
}
.today-brief,
.service-brief {
  font-size: 1.3em;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  background-color: rgba(0, 0, 0, 0);
  width: 80%;
  margin: auto;
  text-align: center;
  color: white;
}

.img-service {
  margin-top: 25px;
}

.card:hover {
  transform: scale(1.1);
}
.card {
  transition: transform 0.5s;
}
.classes h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: #24a6a6;
  font-weight: 600;
  text-align: center;
}
.classes h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #cfa176;
  margin: 5px auto;
}
.classes .row .card .card-text {
  font-size: 18px;
  line-height: 1.7;
  color: #75799d;
}
.classes .row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2rem;
}
.venusart img {
  width: 100%;
}
/* -----------venus gym--------- */
.content_sections {
  background-color: white;
  font-family: "Tstar Pro", sans-serif;
}
section.header_image .header_gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.header_image .header_gallery .header_gallery_item {
  /* background-image: url("../img/backgroundgym.jpg"); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  background-size: cover;
  background-position: center top;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
}

.content_sections section.block_image.blue_box_background.translucent_box .block_content_container .block_content {
    background-color: rgba(13,30,43,0.9);
    color: white;
}
.content_sections section.block_image .block_content_container {
  position: relative;
  z-index: 2;
}
section.header_image .header_image_content {
  visibility: visible;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1) 0.4s,
    transform 0.8s cubic-bezier(0.5, 0, 0, 1) 0.4s;
}
section.header_image .header_image_content h1 img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 30px;
}
section.header_image .header_image_content .block_content {
  max-width: 1090px;
  padding: 80px 0;
}

/* .content_sections section h1,
.content_sections section h2 {
  font-size: 30px;
  font-weight: 400;
  color: #373737;
  text-align: center;
} */
.content_sections section p {
  font-size: 15px;
  line-height: 1.5em;
  margin-top: 20px;
  font-weight:200;
}
.content_sections section.blue_background {
  background-color: #0d1e2b;
  background-image: none;
}


.content_sections
  section.block_image.image_right
  .block_image_content_container {
  flex-direction: row-reverse;
}
.cont__ent {
  visibility: visible;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transition: opacity 2s cubic-bezier(0.5, 0, 0, 1) 0.4s,
    transform 2s cubic-bezier(0.5, 0, 0, 1) 0.4s;
}
.content_sections
  section.block_image.gold_box_background.translucent_box
  .block_content_container
  .block_content {
  background-color: #dee2e6;
}
.main__headings {
  font-size: 5rem;
  color: #cfa176;
  text-transform: uppercase;
  text-align: center;
}

.content_sections section.gold_background {
  background-color: #dee2e6;
  background-image: none;
}
.content_sections section.block_image .block_image_container .block_image {
  background-color: rgba(255,255,255,0.1);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.content_sections section.block_image .block_content_container, .content_sections section.block_image .block_image_container {
  padding: 0!important;
}

.content_sections section.block_image.white_box_background.translucent_box .block_content_container .block_content {
  background-color: rgba(255,255,255,0.9);
}
.content_sections section.block_image .block_content_container .block_content {
  width: 100%;
  padding: 10%;
}
.content_sections section.block_image.white_box_background .block_content_container .block_content * {
  color: #373737;
}
.content_sections section.block_image .block_content_container .block_content h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.content_sections section.block_image .block_content_container .block_content * {
  text-align: inherit;
}
.content_sections section.block_image .block_image_container {
  position: relative;
  top: 0;
  z-index: 1;
}
.content_sections section.block_image .block_content_container .block_content p.button_links {
  margin-top: 1em;
  margin-bottom: 0;
}
.content_sections section.block_image.blue_box_background .block_content_container .block_content .button_links button {
  background-color: #0d1e2b;
  border-color: #d2a571;
  color: #d2a571!important;
  padding: 1em 1.25em;
  transition: 0.2s all;
    line-height: 1em;
    letter-spacing: 0.1em;
}
.content_sections section.block_image.white_box_background .block_content_container .block_content .button_links button {
  background-color: white;
  border-color: #d2a571;
  color: #d2a571!important;
  padding: 1em 1.25em;
  transition: 0.2s all;
    line-height: 1em;
    letter-spacing: 0.1em;
}
.content_sections section.block_image .block_image_container .block_image video {
    z-index: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    position: absolute;
    top: -2px;
    left: -2px;
}
.content_sections   .tranform__prop{
  transform: translateX(100px) !important;
}
@media (min-width: 1200px){
  .content_sections section.block_image .container {
    padding: 50px;
}
.content_sections section.block_image .block_content_container {
    -webkit-margin-start: -10%;
    margin-inline-start: -10%;
    width: 60%;
}
}
.content_sections section.block_image .container {
  max-width: 1200px;
}
.content_sections section.full_width_promo_image.taller, .content_sections section.header_image.taller {
    min-height: 80vh;
}
.content_sections section.full_width_promo_image .header_gallery .header_gallery_item video, .content_sections section.header_image .header_gallery .header_gallery_item video {
    z-index: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
}
.content_sections section.full_width_promo_image .header_image_content, .content_sections section.header_image .header_image_content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 60px 30px 30px 30px;
}
@media (min-width: 1024px) 
{
    .content_sections section.full_width_promo_image:first-child, .content_sections section.header_image:first-child {
        /* margin-top: -100px; */
        padding-top: 100px;
    }
}

@media (min-width: 768px) {
  .content_sections section.block_image .block_image_content_container, .content_sections section.block_image.flex .block_image_content_container {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.content_sections section.block_image .block_image_container, .content_sections section.block_image.flex .block_image_container {
  width: 50%;

}
.content_sections section.block_image.flex.image_right .block_image_content_container, .content_sections section.block_image.image_right .block_image_content_container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.content_sections section.block_image.image_right .block_image_content_container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse !important;
}
.content_sections section.block_image .block_content_container, .content_sections section.block_image.flex .block_content_container {

  margin-block: 20px;
}
}
.pool__section{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap:10px;
}
.pool__area{

  background-position: center;
  background-size: cover;
  position: relative;
  height: 300px;
  background-repeat: no-repeat;
}
/* --------------footer styling---------- */
#page_footer .footer_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 50px;
}
#page_footer {
    position: relative;
    overflow: hidden;
    padding: 30px 0 0 0;
    color: white;
    background-color: #0d1e2b;
}
#page_footer a{
    color: white;
}
#page_footer .footer_main .footer_nav_group {
    width: 50%;
    padding: 15px;
}
#page_footer .footer_main .footer_nav_group nav h4 {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.25);
    margin: 0 0 1em 0;
    padding: 1em 0 0.5em 0;
}
#page_footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
#page_footer .footer_main .footer_nav_group nav ul li {
    padding: 5px 0;
}
#page_footer ul li {
    padding: 0;
    margin: 0;
    font-size: 14px;    letter-spacing: 0.04em;
}
@media (min-width: 768px){
    #page_footer .footer_main {
display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        text-align: start; 
        background-image: url(../img/logo1.png);
        background-repeat: no-repeat;
        background-position: left 15px top 30px;
        background-size: 10% auto;
        padding-left: 30%;
      
     
    }
    #page_footer .footer_main .footer_nav_group {
        width: auto;
    }
}
@media screen and (max-width:740px) {
    .register-section  .home__boxes{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:10px;
      }
      .home__banner__main{
        width: 90%;
        transform: translateY(-30px);
      }
      .home__banner__main .home__banner__secdiv{
        display: flex;
        flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .home__banner__main .home__banner__secdiv a{
     padding: 10px;
    }
    .pool__section{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:10px;
      }
      .content_sections   .tranform__prop{
        transform: translateX(0px) !important;
      }
  
}