@import url("../../css2");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  --primary-color: #e5347f;
  --primary-sec: #ff79b2;
}

body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
/* 
p {
  font-size: rem;
} */

.padding {
  padding: 40px 0px;
}
.title h2.heading-1 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.sec-heading {
  text-align: center;
  margin-bottom: 20px;
}

.sec-heading h2 {
  font-weight: 600;
  color: #ffa355;
}

.sec-heading p.des {
  font-size: 1rem;
  font-size: 600;
  text-align: center;
}

.custom-btn {
  width: 100%;
  font-weight: 700;
  padding: 10px;
  text-transform: uppercase;
  margin: 14px 0px;
  background-color: #ffa355;
  outline: none;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  transition: 0.2s ease;
}
.custom-btn:hover {
  background-color: #7bbac8;
}
.map iframe {
  width: 100%;
}

.outline {
  background-image: url(../img/icon-our.png);
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-bottom: 10px;
}
.hero-sec {
  background-image: url(../img/about-header.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 22px 0px;
}
.banner-title h1 {
  font-weight: 700;
  text-align: center;
  font-size: 2.5rem;
  color: #ffa355;
}
.banner-title p.des {
  font-size: 1rem;
  font-size: 600;
  text-align: center;
}

/* SCROLL TO TOP */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #ffa355;
  color: white;
  cursor: pointer;
  /* padding: 15px; */
  height: 40px;
  width: 40px;
  border-radius: 4px;
}

/* ====================== Header Area ====================== */
header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  /* background-color: #fff; */
  /* background-color: rgba(0, 0, 0, 0.6); */
  background-color: #000;
}

header.sticky {
  position: sticky;
  animation: sticky 1s ease-out;
}

@keyframes sticky {
  0% {
    transform: translateY(-150px);
  }

  100% {
    transform: translateY(0);
  }
}

.top-header {
  /* background-color: #F7FAFD; */
  color: rgba(0, 0, 0, 0.6);
}

.top-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-header .header ul {
  list-style: none;
  padding: 5px 0;
  margin: 0;
}

.top-header .header ul li {
  display: inline-block;
}

.top-header .header ul:first-child li {
  margin-right: 1.8rem;
}

.top-header .header ul:last-child li {
  margin-left: 1.8rem;
}

.top-header .header ul li a {
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  font-size: 0.82rem;
  /* color: #333; */
  color: #fff;
}

.top-header .header ul li a i {
  display: inline-block;
  margin-right: 0.3rem;
}

.main-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.main-header .header .logo img {
  width: 186px;
}

.main-header .header .nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
}

.main-header .header .nav ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* margin-left: 2.2rem; */
}

.main-header .header .nav ul li a:not(.btn-1) {
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  font-size: 0.92rem;
  /* color: #333; */
  color: #fff;
  /* padding: 8px 15px; */
  padding: 8px 12px;
}

/* .main-header .header .nav ul li.menu > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  display: inline-block;
  position: relative;
  top: 1px;
  margin-left: 8px;
  transition: 0.3s;
} */

.main-header .header .nav ul li.menu:hover > a::after {
  top: -1px;
  transform: rotate(180deg);
}

.main-header .header .nav ul li.menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 224px;
  /* background-color: #fff; */
  background-color: rgba(0, 0, 0, 0.6);
  /* background-color: #000; */
  border-bottom: 2px solid var(--primary-color-3);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.main-header .header .nav ul li.menu:hover ul {
  opacity: 1;
  pointer-events: all;
}

.main-header .header .nav ul li.menu ul li {
  display: block;
  margin-left: 0;
}

.main-header .header .nav ul li.menu ul li a {
  font-size: 0.85rem;
}

.main-header .header .side-menu-btn {
  display: inline-block;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.main-header .header .side-menu-btn i {
  color: #fff;
  font-size: 1.6rem;
}

@media screen and (min-width: 1200px) {
  .main-header .header .side-menu-btn {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .top-header {
    display: none;
  }

  .main-header .header .nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .main-header .header {
    padding: 8px 0;
  }

  .main-header .header .logo img {
    width: 72px;
  }
}

/* ====================== End Header Area ====================== */
/* ====================== Side-Popup ====================== */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #000;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 20px;
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav ul{
  padding-left:0px ;
}

.sidenav ul li.menu ul{
  display: none;
}
.sidenav ul li.menu ul li a{
  font-size: .9rem;
}
.sidenav ul li.menu a{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidenav ul li.menu a i{
  font-size: .9rem;
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 33px;
  margin-left: 50px;
}

/* ====================== Side-Popup ====================== */

/* banner-section */
.banner {
  margin-top: -110px;
}

.banner-sec img {
  width: 100%;
}

/* about-us */
.about-sec .about-img{
  height: 100%;
  padding: 12px 0px;
}

.about-sec .about-img img {
  width: 100%;
  height: 100%;
}

/* service section */
.service {
  padding: 12px 0px;
}
.service .service-box{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.service .service-box .service-img img {
  width: 100%;
  height: 100%;
}

.service .service-box .service-name {
  padding: 20px 0px;
  background: linear-gradient( 90deg, rgb(229 153 52) 0%, rgb(61 164 195 / 69%) 100% );
    
  border-end-start-radius: 10px;
  border-end-end-radius: 10px;
}

.service .service-box .service-name a {
  color: #fff;
  text-align: center;
}

.service .service-box .service-name a h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0px;
}
.service .service-box .service-name p{
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
  font-weight: 600;
}
.service .service-box .service-name p:not(:last-child){
  margin-top: 8px;
}
.service .service-box .service-name .book-btn{
  text-align: center;
}
.service .service-box .service-name .book-btn a{
display: inline-block;
background-color: #fff;
border-radius: 8px;
color: #ffa355;
padding: 5px 46px;
margin-top: 10px;
font-weight: 500;
}


/* package-section */
.package .package-box {
  text-align: center;
  padding: 12px 0px;
}

.package .package-box .package-type {
  background-color: #b0d8c27d;
  color: #333;
  padding: 16px 2px;
  text-align: center;
}

.package .package-box .package-type h4 {
  text-align: center;
  margin-bottom: 0px;
  font-size: 1.2rem;
  font-weight: 600;
}
.package .package-box .package-total {
  padding: 0px 10px;
  background-color: #f1f1f1;
}
.package .package-box .package-total p {
  padding: 5px 0px;
  margin-bottom: 0px;
}

.package .package-box .package-total p .amout {
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
}

.package .package-box .package-total p .ahour {
  background-color: #ffa355;
  color: #fff;
  padding: 3px;
  border-radius: 20px;
  font-weight: 600;
}

.package .package-box ul {
  padding-left: 0px;
  margin-bottom: 0px;
  padding: 10px 0px;
  line-height: 30px;
}

.package .package-box ul li {
  font-size: 1rem;
}

.price-list .sec-heading h2 {
  color: #000;
}
.price-list table {
  background-color: #fff;
}
.price-list,
.faq-sec {
  background-color: #f1f1f1;
}
.faq-box:not(:last-child) {
  margin-bottom: 30px;
}

.faq-box ul li {
  list-style-type: disc;
}

.about-1 .about-img img {
  width: 100%;
}

.contact-sec {
  padding: 40px 0px;
  background-color: #f1f1f1;
}
.contact-sec .contact-info .title h3 {
  text-align: center;
  font-size: 1.7rem;
}
.contact-sec .contact-info p {
  /* font-size: 16px; */
  text-align: center;
}
.contact-sec .contact-info .info-box {
  border: 1px solid black;
  padding: 20px;
  text-align: center;
}
.contact-sec .contact-info .info-box:not(:last-child) {
  margin-bottom: 18px;
}

.contact-sec .contact-info .info-box .box-title {
  font-size: 18px;
  font-weight: 600;
}
.contact-sec .contact-info .info-box a {
  color: #000;
}

.contact-sec .contact-info .info-box .scolia-link i {
  font-size: 32px;
  padding: 0px 6px;
  color: #000;
}

.spa-service.padding {
  background-color: #f2f2f2;
}

.spa-service .spa-img img {
  width: 100%;
}
.spa-service .spa-content h3 {
  color: #ffa355;
  font-size: 1.8rem;
  font-weight: 700;
}
.spa-service .spa-content p {
  text-align: justify;
}
.spa-service .our-service h4 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  text-transform: uppercase;
}
.spa-service .our-service ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.spa-service .our-service ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px;
  border-bottom: 1px solid #000;
}

.spa-service .our-service ul li .img {
  width: 70px;
}

.spa-service .our-service ul li .img img {
  width: 100%;
}

.spa-service .our-service ul li .text a {
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
}

.spa-service .table h3 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
}
.gallery-sec .gallery-img {
  padding: 12px 0px;
  height: 100%;
}
.gallery-sec a img {
  width: 100%;
  height: 100%;
}

.testimonial-sec {
  background-image: url(../img/euphoria-testimonial-back.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial-sec .testimonial-box {
  text-align: center;
  color: #fff;
  padding: 0px 40px;
}
.testimonial-sec .testimonial-box p {
  font-size: 1rem;
}
/* footer */

footer {
  background-color: #232323;
}

footer .f-menu {
  padding: 60px 0px 40px;
}

footer .content h3 {
  font-family: "Brygada 1918", serif;
  color: #fff;
}
footer .content p {
  color: #fff;
}
footer .f-col {
  color: #fff;
}

footer .f-col .f-title {
  font-family: "Brygada 1918", serif;
  margin-bottom: 16px;
}

footer .f-col p a {
  color: #fff;
}

footer .f-col .list {
  padding-left: 0px;
  margin-bottom: 10px;
}

footer .f-col .list a:hover {
  color: #fff;
}
footer .f-col .list li {
  list-style: none;
}
footer .f-col .list li a {
  color: #fff;
}
hr {
  color: aliceblue;
}

footer .social-link a {
  color: #fff;
  font-size: 1.4em;
  padding-right: 8px;
}

footer .copy-right {
  padding: 10px 0px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .padding {
    padding: 30px 0px;
  }
  .banner {
    margin-top: 0px;
  }
  .contact-sec .contact-info .info-box {
    margin-bottom: 18px;
  }
  /* .hero-sec {
    padding: 40px 0px;
  } */
  .banner-title h1 {
    font-size: 1.9rem;
  }
  .banner-title p.des {
    font-size: 1rem;
  }
}


.end{
    text-align: end;
}

@media(max-width:767px){
    .end{
        text-align: start!important;
    }
}

.black{
    background-color: #000;
}





@media (min-width: 768px) {
  .call {
    width: 50px;
    height: 50px;
    background-color: #068616;
    border-radius: 50%;
    position: fixed;
    left: 10%;
    bottom: 25%;
    transform: translate(-50%, -50%);
    z-index: 999999;
  }
  .whats-app-btn {
    width: 50px;
    height: 50px;
    background-color: #068616;
    border-radius: 50%;
    position: fixed;
    left: 10%;
    bottom: 10%;
    transform: translate(-50%, -50%);
    z-index: 999999;
  }
}
@media (max-width: 768px) {
  .call {
    width: 50px;
    height: 50px;
    background-color: #068616;
    border-radius: 50%;
    position: fixed;
    left: 15%;
    bottom: 25%;
    transform: translate(-50%, -50%);
    z-index: 999999;
  }
  .whats-app-btn {
    width: 50px;
    height: 50px;
    background-color: #068616;
    border-radius: 50%;
    position: fixed;
    left: 15%;
    bottom: 10%;
    transform: translate(-50%, -50%);
    z-index: 999999;
  }
}
.call:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #068616;
  border-radius: 50%;
  animation: animate 2s linear infinite;
}
.call:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #068616;
  border-radius: 50%;
  animation: animate 2s 1s linear infinite;
}
.whats-app-btn:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #ffffff;
  border-radius: 50%;
  animation: animate 2s linear infinite;
}
.whats-app-btn:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #068616;
  border-radius: 50%;
  animation: animate 2s 1s linear infinite;
}
@keyframes animate {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.call .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 35px;
  color: #fff;
  max-width: 40px;
  transform: translate(-50%, -50%);
}
.call .fa:before {
  animation: call 2s linear infinite;
}
@keyframes call {
  50% {
    transform: rotate(50deg) scale(1);
  }
  100% {
    transform: rotate(100deg) scale(1);
  }
}
a.enquiry_btn {
  background: #000000;
  color: #fff;
  font-weight: 500;
  margin-top: 20px;
  padding: 12px;
}
select.form-control.fjhfss.ccompetition {
  box-shadow: 1px 1px 5px 0px #e8e8e8;
}
textarea.form-control.dfasd {
  box-shadow: 1px 1px 5px 0px #e8e8e8;
}
p.inquiry-bbtnskj {
  margin-top: 14px;
}

.whatsapp {
  position: fixed;
  left: 22px;
  bottom: 20px;
  /* bottom: 100px;
    left: 22px; */
  z-index: 99;
}

.whatsapp:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #ffffff;
  border-radius: 50%;
  animation: animate 2s linear infinite;
}

.whatsapp:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #00e676;
  border-radius: 50%;
  animation: animate 2s 1s linear infinite;
}


.pink{
    color: #ffa355;
}