


@font-face {
  font-family: timesNewRoman;
  src: url(../fonts/Times-New-Roman/times\ new\ roman.ttf);
}

@font-face {
  font-family: sf-ui;
  src: url(../fonts/sf-ui/SFUIText-Light.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-primary: timesNewRoman;
  /* --font-heading: "EB Garamond", serif; */
  /* --font-para: "Roboto", sans-serif; */
  --font-secondary: sf-ui;

  --color-white: #fff;
  --color-white-opacity: rgba(255, 255, 255, 0.7);
  --color-black: #000;
  --color-dark: #292a2d;
  --color-grey: #6d6e71;
  --color-blue: #01537f;

  --color-primary: #b30001;
  --color-accent: #646e2b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

p {
  font-family: var(--font-primary);
  color: var(--color-grey);
  font-size: 1.12rem;
}

a {
  text-decoration: none;
  color: var(--color-black);
  letter-spacing: 0.5px;
  transition-duration: 0.2s;
}

ul {
  list-style: none;
  padding-left: 0;
}

.sec-p {
  padding: 2.5rem 0;
}

.heading-bx {
  text-align: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto 2.3rem;
}

.heading-bx h3 {
  font-size: 2.2rem;
  text-transform: capitalize;
}

.heading-bx h3 span {
  color: var(--color-primary);
  font-weight: 600;
}

.heading-bx.inside {
  text-align: left;
  margin-bottom: 0;
}

.heading-bx.inside h6 {
  font-size: 1.4rem;
}
/* 
.heading-bx.inside h6 span {
	color: var(--color-black);
	font-style: italic;
} */

.btn-custom {
  font-family: var(--font-secondary);
  color: var(--color-black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.5rem 0 !important;
  text-align: center;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease-in-out !important;
}

.btn-custom .btn-custom-icon {
  position: absolute;
  margin-left: 0.4rem;
  transition: all 0.3s ease-in-out !important;
}

.btn-custom:hover .btn-custom-icon {
  margin-left: 0.7rem;
}

.btn-custom:hover {
  color: var(--color-black);
}

.btn-custom.btn-accent {
  color: var(--color-accent);
}

.btn-custom.btn-blue {
  color: var(--color-blue);
}

/* Slick Slider */

.slick-prev,
.slick-next {
  width: 30px;
  height: 30px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 30px;
  color: var(--color-primary);
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 10px;
}

.slick-dots li.slick-active button:before {
  color: var(--color-primary);
}

.slick-prev {
  z-index: 10;
}

/* Header */

header.fixed-top {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.7122199221485469) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.7122199221485469) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.7122199221485469) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}

header .sliding-bg {
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  backdrop-filter: blur(5px);
  transition: top 0.4s ease-out;
}

header .navbar .offcanvas {
  background-color: var(--color-dark);
}

header .navbar .navbar-brand img {
  width: 100%;
  max-width: 170px;
}

header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
  transition: text-shadow 0.2s ease-in-out;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
}

header
  .navbar
  .offcanvas
  .offcanvas-body
  .navbar-nav
  .nav-item
  .nav-link:hover {
  text-shadow: 0 0 10px white;
}

header
  .navbar
  .offcanvas
  .offcanvas-body
  .navbar-nav
  .nav-item
  .nav-link.btn-book {
  border: 1px solid var(--color-white);
  padding: 0.7rem 1.1rem !important;
  color: var(--color-white);
  font-size: 0.85rem;
}

header
  .navbar
  .offcanvas
  .offcanvas-body
  .navbar-nav
  .nav-item
  .nav-link.btn-book:hover {
  background-color: var(--color-primary);
  text-shadow: none;
}

/* Hero Video */

.hero-video .content-bx {
  position: relative;
  max-height: 100vh;
  /* height: 85vh; */
  overflow: hidden;
}

.hero-video .content-bx .main-video {
  width: 100%;
}

.hero-video .content-bx .scroll-container {
  width: 30px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  bottom: 2%;
  display: none;
}

.hero-video .content-bx .scroll-container .scroller {
  width: 16px;
  border-radius: 8px;
  background-color: #fff;
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 34px;
  animation: scroller 1500ms ease-out infinite;
}

@keyframes scroller {
  0% {
    bottom: 34px;
  }
  5% {
    top: 4px;
  }
  32% {
    bottom: 4px;
  }
  66% {
    top: 34px;
    bottom: 4px;
  }
  100% {
    top: 4px;
    bottom: 34px;
  }
}

/* Hero Banner */

.hero-banner .img-bx {
  height: 35vh;
}

.hero-banner .img-bx img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Height Adjust */
/* 
.height-adjust {
	height: 95px;
	width: 100%;
} */

/* Breadcrumb */

.breadcrumb-custom {
  margin: 0;
  padding: 2.5rem 0 0;
}

.breadcrumb-custom .bc-page-link {
  font-family: var(--font-secondary);
}

.breadcrumb-custom .bc-page-link:hover {
  color: var(--color-black);
}

.breadcrumb-custom .bc-page-link:hover .arrow-icon {
  margin-right: 0.8rem;
}

.breadcrumb-custom .arrow-icon {
  margin-right: 0.5rem;
  transition: margin 0.3s ease-in-out;
}

.breadcrumb-custom .page {
  text-transform: uppercase;
  font-weight: 600;
}

/* About Us */

.about-us .heading-bx {
  margin-bottom: 1.3rem;
}

.about-us .heading-bx h3 {
  text-transform: none;
}

.about-us .content-bx {
  padding: 0 0.75rem;
  text-align: center;
}

.about-us .content-bx p {
  width: 100%;
  max-width: 710px;
  margin: 0 auto;
}

.about-us .award-bx {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.about-us .award-bx img {
  width: 80px;
  margin: 0 1.2rem 1.2rem;
}

/* Accommodation */

.accommodation .room-slider-bx .room-slider .slick-next {
  right: 24%;
}

.accommodation .room-slider-bx .room-slider .slick-prev {
  left: 24%;
  z-index: 10;
}

.accommodation .room-slider-bx .room-slider .slider-item {
  padding: 0 1rem;
  filter: opacity(0.35);
  transform: scale(0.95);
  transition: all 0.5s ease-in-out;
}

.accommodation
  .room-slider-bx
  .room-slider
  .slider-item.slick-current.slick-active {
  filter: opacity(1);
  transform: scale(1);
}

.accommodation .room-slider-bx .room-slider .slider-item .item-content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.accommodation .room-slider-bx .room-slider .slider-item .item-content h6 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: var(--color-primary);
}

.accommodation .room-slider-bx .room-slider .slider-item .item-content h6 span {
  font-size: 1.1rem;
}

.accommodation .room-slider-bx .room-slider .slider-item .item-content p {
  margin-bottom: 0.2rem;
}

.accommodation
  .room-slider-bx
  .room-slider
  .slider-item
  .item-content
  .btn-primary {
  margin: 0 2.5rem 0 0;
}

.accommodation
  .room-slider-bx
  .room-slider
  .slider-item.slick-current.slick-active
  .item-content {
  opacity: 1;
}

.accommodation .room-slider-bx .room-slider .slider-item .item-img {
  height: 200px;
}

.accommodation .room-slider-bx .room-slider .slider-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.accommodation-page .rooms-list-bx .room-item {
  margin-bottom: 3.5rem;
}

.accommodation-page .rooms-list-bx .room-item:last-child {
  margin-bottom: 0;
}

/*.accommodation-page .rooms-list-bx .room-item .row {*/
/*  align-items: center;*/
/*}*/

.accommodation-page .rooms-list-bx .room-item .img-bx .bx {
  height: 240px;
}

.accommodation-page .rooms-list-bx .room-item .img-bx {
  max-height: 495px;
  overflow: hidden;
}

.accommodation-page .rooms-list-bx .room-item .img-bx .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .heading-bx {
  text-align: left;
  margin: 0 0 1rem;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .heading-bx h6 {
  font-size: 1.8rem;
  color: var(--color-primary);
  text-transform: capitalize;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .heading-bx h6 span {
  color: var(--color-primary);
}

.accommodation-page .rooms-list-bx .room-item .text-bx .heading-bx .sub-h {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-family: var(--font-primary);
  color: var(--color-grey);
}

.accommodation-page .rooms-list-bx .room-item .text-bx .heading-bx p {
  margin-bottom: 0;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .room-desc {
  margin-bottom: 1rem;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .info {
  display: block;
  margin-bottom: 1rem;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .info a {
  font-weight: 500;
  color: var(--color-grey);
}

.accommodation-page .rooms-list-bx .room-item .text-bx .room-info-list {
  margin-bottom: 1rem;
  font-family: var(--font-primary);
  font-size: 1.1rem;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .room-info-list li {
  margin-bottom: 0.5rem;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .room-info-list li span {
  display: inline-block;
  vertical-align: top;
}

.accommodation-page
  .rooms-list-bx
  .room-item
  .text-bx
  .room-info-list
  li
  span:first-child {
  width: 30%;
  font-weight: 600;
}

.accommodation-page
  .rooms-list-bx
  .room-item
  .text-bx
  .room-info-list
  li
  span:last-child {
  width: 55%;
}

.accommodation-page .rooms-list-bx .room-item .text-bx .btn-primary {
  margin-right: 2.5rem;
}

/* Single Room Page */

.rooms-list-bx .room-item .img-bx .slick-next {
  right: 20px;
}

.rooms-list-bx .room-item .img-bx .slick-prev {
  left: 20px;
}

.rooms-list-bx .room-item .img-bx .slick-prev:before,
.rooms-list-bx .room-item .img-bx .slick-next:before {
  opacity: 0.8;
  color: var(--color-white);
}

.single-room-page .amenities {
  margin-top: 2.5rem;
}

.single-room-page .amenities .heading-bx {
  text-align: left;
  margin: 0 0 1.4rem;
}

.single-room-page .amenities .heading-bx h6 {
  font-size: 1.8rem;
  text-transform: capitalize;
  margin-top: 0.8rem;
}

.single-room-page .amenities .heading-bx h6 span {
  color: var(--color-primary);
}

.single-room-page .amenities .heading-bx p {
  margin-bottom: 0;
}

.single-room-page .amenities .amenities-list {
  margin-bottom: 0;
  align-items: flex-start !important;
}

.single-room-page .amenities .amenities-list li {
  margin-bottom: 0.7rem;
  display: flex;
  color: var(--color-grey);
  font-size: 1.1rem;
}

.single-room-page .amenities .amenities-list li .icon-bx {
  display: inline-block;
  height: 100%;
  margin-right: 0.4rem;
}

.single-room-page .amenities .amenities-list li .text-bx {
  display: inline-block;
  height: 100%;
  font-family: var(--font-primary);
}

/* Single Item Slider */

.single-item-slider .slider-item .row {
  align-items: center;
}

.single-item-slider .slider-item .img-bx {
  height: 200px;
}

.single-item-slider .slider-item .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dining & Exploring Manali */

.dining .restaurant-slider-bx .single-item-slider .slider-item {
  padding: 0 1rem;
}

.dining .restaurant-slider-bx .single-item-slider .slider-item .content-bx h6 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--color-primary);
}

.dining
  .restaurant-slider-bx
  .single-item-slider
  .slider-item
  .content-bx
  .sub-h {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-family: var(--font-primary);
  color: var(--color-grey);
}

.dining
  .restaurant-slider-bx
  .single-item-slider
  .slider-item
  .content-bx
  .btn-primary {
  margin-right: 0.8rem;
}

.dining
  .restaurant-slider-bx
  .single-item-slider
  .slider-item
  .content-bx
  .info {
  display: block;
  margin-bottom: 1.1rem;
}

.dining
  .restaurant-slider-bx
  .single-item-slider
  .slider-item
  .content-bx
  .info
  a {
  font-weight: 500;
  color: var(--color-grey);
}

.dining
  .restaurant-slider-bx
  .single-item-slider
  .slider-item
  .content-bx
  .btn-custom {
  margin-right: 2.5rem;
}

/* Experience */

.experience .experience-slider-bx .experience-slider .slider-item {
  padding: 0 1rem;
}

.experience .experience-slider-bx .experience-slider .slider-item .img-bx {
  height: 200px;
}

.experience .experience-slider-bx .experience-slider .slider-item .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience .experience-slider-bx .experience-slider .slider-item .text-bx h6 {
  font-size: 1.5rem;
  margin-top: 0.8rem;
  color: var(--color-primary);
}

.experience-page {
  overflow-x: hidden;
}

.experience-page .rooms-list-bx .room-item {
  margin-bottom: 2rem;
}

.experience-page .rooms-list-bx .room-item.col-rev .row {
  flex-direction: column-reverse;
}

/* Reservation */

.reservation img {
  width: 100%;
  height: 100%;
}

/* Recognition */

.recognition .awards-slider-bx .awards-slider .slider-item {
  text-align: center;
}

/* .recognition .awards-slider-bx .awards-slider .slider-item.slick-active {
	border-right: 1px solid var(--color-accent);
} */

.recognition .awards-slider-bx .awards-slider .slider-item h6 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.recognition .awards-slider-bx .awards-slider .slider-item span {
  display: block;
  margin-bottom: 0.2rem;
}

.recognition .awards-slider-bx .awards-slider .slider-item span:last-child {
  margin-bottom: 0;
}

/* Destination */

.destination-page .destination-bx .util-num {
  display: block;
  margin-bottom: 3rem;
  color: var(--color-grey);
}

.destination-page .destination-bx .util-num a {
  color: var(--color-black);
}

.destination-page .destination-bx .util-num a:hover {
  color: var(--color-blue);
}

.destination-page .destination-bx .dest-item {
  margin-bottom: 2.5rem;
}

.destination-page .destination-bx .dest-item .img-bx {
  height: 300px;
}

.destination-page .destination-bx .dest-item .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-page .destination-bx .dest-item .content-bx .heading-bx.inside {
  margin-top: 1rem;
}

.destination-page .destination-bx .dest-item .content-bx .heading-bx.inside h6 {
  margin-bottom: 0.3rem;
  color: var(--color-primary);
}

.destination-page .destination-bx .dest-item .content-bx ul {
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary);
}

.destination-page
  .destination-bx
  .dest-item
  .content-bx
  ul
  li
  span:first-child {
  font-weight: 600;
  margin-right: 10px;
}

.destination-page .destination-bx .dest-item .content-bx p {
  margin-bottom: 0;
}

/* Gallery */

.gallery .gallery-section .portfolio {
  color: #333;
}

.gallery .gallery-section .portfolio .filters {
  text-align: center;
}

.gallery .gallery-section .portfolio .filters ul {
  padding: 0;
}

.gallery .gallery-section .portfolio .filters ul li {
  list-style: none;
  display: inline-block;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
}

.gallery .gallery-section .portfolio .filters ul li:after {
  content: "";
  display: block;
  width: calc(0% - 60px);
  position: absolute;
  height: 2px;
  background: #333;
  transition: width 350ms ease-out;
}

.gallery .gallery-section .portfolio .filters ul li:hover:after {
  width: calc(100% - 60px);
  transition: width 350ms ease-out;
}

.gallery .gallery-section .portfolio .filters ul li.active:after {
  width: calc(100% - 60px);
}

.gallery .gallery-section .portfolio .filters-content {
  margin-top: 50px;
}

.gallery .gallery-section .portfolio .filters-content .show {
  opacity: 1;
  visibility: visible;
  transition: all 350ms;
}

.gallery .gallery-section .portfolio .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}

.gallery .gallery-section .portfolio .filters-content .item {
  text-align: center;
  cursor: pointer;
  margin-bottom: 30px;
  height: 250px;
  overflow: hidden;
}

.gallery .gallery-section.portfolio .filters-content .item .p-inner {
  padding: 20px 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.gallery .gallery-section .portfolio .filters-content .item .p-inner h5 {
  font-size: 15px;
}

.gallery .gallery-section .portfolio .filters-content .item .p-inner .cat {
  font-size: 13px;
}

.gallery .gallery-section .portfolio .filters-content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .gallery-section .portfolio .filters-content .grid {
  /* column-count: 4; */
}

.wedding-page .rooms-list-bx .room-item .img-bx.img-nav {
  margin-top: 1rem;
}

.wedding-page .rooms-list-bx .room-item .img-bx.img-nav .bx {
  height: 150px;
  padding: 0 0.4rem;
}

.wedding-page .rooms-list-bx .room-item .img-bx.img-nav .bx img {
  cursor: pointer;
}

.wedding-page .rooms-list-bx .room-item .img-bx.img-nav .slick-prev {
  left: 0px;
}

.wedding-page .rooms-list-bx .room-item .img-bx.img-nav .slick-next {
  right: 0px;
}

.wedding-page .rooms-list-bx .room-item .row {
  align-items: flex-start;
}

.wedding-page
  .rooms-list-bx
  .room-item
  .text-bx
  .room-info-list
  li
  span:last-child {
  padding-left: 0.7rem;
}

.contact-page .rooms-list-bx .room-item form button {
  width: 100%;
  max-width: 170px;
}

.contact-page .rooms-list-bx .room-item .row {
  align-items: flex-start;
}

.contact-page
  .rooms-list-bx
  .room-item
  .text-bx
  .room-info-list
  li
  span:first-child {
  width: 5%;
}

.contact-page
  .rooms-list-bx
  .room-item
  .text-bx
  .room-info-list
  li
  span:last-child {
  width: 90%;
}

.policy-page .policy-bx .text-cntnr .list {
  padding-left: 2.5rem;
}

.policy-page .policy-bx .text-cntnr .list li {
  position: relative;
  color: var(--color-grey);
}

.policy-page .policy-bx .text-cntnr .list li .icon {
  position: absolute;
  top: 8.5px;
  left: -14px;
  font-size: 8px;
}

.policy-page .policy-bx .text-cntnr .sub-list {
  padding-left: 2rem;
}

.policy-page .policy-bx .text-cntnr .sub-list .icon {
  font-size: 9px;
}

.policy-page .policy-bx .text-cntnr .specific-c-p {
  padding-left: 2rem;
}

.policy-page .policy-bx .text-cntnr .specific-c-p h6 {
  font-size: 1.1rem;
}

/* Footer */

footer * {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
}

footer {
  background-color: var(--color-dark);
  font-size: 0.95rem;
}

footer,
footer a,
footer p {
  color: var(--color-white-opacity);
}

footer a {
  transition: all 0.2s ease-in-out;
}

footer a:hover {
  color: var(--color-white);
}

footer ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

footer .logo-bx {
  text-align: center;
}

footer .logo-bx .logo {
  width: 100%;
  max-width: 180px;
}

footer .footer-top {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer .footer-top .item {
  display: block;
}

footer .sm-tc-bx .s-m,
footer .sm-tc-bx .t-c {
  display: flex;
}

footer .sm-tc-bx .s-m p {
  margin-right: 0.7rem;
  margin-bottom: 0;
}

footer .sm-tc-bx .s-m li {
  margin-right: 0.7rem;
}

footer .sm-tc-bx .s-m li a i {
  font-size: 1.2rem;
}

footer .footer-bottom {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .footer-bottom p {
  text-align: center;
  font-size: 0.85rem;
  margin-bottom: 0;
}

footer .footer-bottom p img {
  width: 8rem;
}





#sy-whatshelp {
  right: 25px;
  bottom: 25px;
  position: fixed;
  z-index: 9999;
}

#sy-whatshelp a {
  position: relative;
}

#sy-whatshelp a.sywh-open-services {
  background-color: #800000;
  color: #fff;
  line-height: 55px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-size: 23px;
  width: 55px;
  height: 55px;
  text-align: center;
  box-shadow: 2px 2px 8px -3px #000;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  display: inline-block;
}

#sy-whatshelp a.sywh-open-services i {
  line-height: 37px;
  font-size: 30px;
}

#sy-whatshelp a.sywh-open-services i.fa-times {
  display: none;
}

#sy-whatshelp .sywh-services {
  width: 55px;
  height: auto;
}

#sy-whatshelp .sywh-services a {
  display: none;
}

#sy-whatshelp .sywh-services a i {
  background-color: #129bf4;
  color: #fff;
  line-height: 36px;
  font-size: 28px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  
  width: 55px;
  height: 55px;
  text-align: center;
  box-shadow: 2px 2px 8px -3px #000;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
}

#sy-whatshelp .sywh-services a.email i {
  background-color: #b92b27;
}

#sy-whatshelp .sywh-services a.instagram i {
  background-color: #e4405f;
}

#sy-whatshelp .sywh-services a.messenger i {
  background-color: #0084ff;
}

#sy-whatshelp .sywh-services a.whatsapp i {
  background-color: #25d366;
}

#sy-whatshelp .sywh-services a.call i {
  background-color: #129bf4;
}

a[data-tooltip] {
  position: relative;
}

a[data-tooltip]::before,
a[data-tooltip]::after {
  position: absolute;
  display: none;
  opacity: 0.85;
  transition: all 0.3s ease-in-out;
}

a[data-tooltip]::before {
  content: attr(data-tooltip);
  background: #800000c9;
  color: #fff;
  font-size: 13px;
  padding: 7px 11px;
  border-radius: 5px;
  white-space: nowrap;
  text-decoration: none;
}

a[data-tooltip]::after {
  width: 0;
  height: 0;
  border: 6px solid transparent;
  content: "";
}

a[data-tooltip]:hover::before,
a[data-tooltip]:hover::after {
  display: block;
}

a.sywh-open-services[data-tooltip]::before,
a.sywh-open-services[data-tooltip]::after {
  display: block;
}

a.data-tooltip-hide[data-tooltip]::before,
a.data-tooltip-hide[data-tooltip]::after {
  display: none !important;
}

a.sywh-open-services[data-tooltip][data-placement="left"]::before {
  top: 11px;
}

a[data-tooltip][data-placement="left"]::before {
  top: -7px;
  right: 100%;
  line-height: normal;
  margin-right: 10px;
}

a[data-tooltip][data-placement="left"]::after {
  border-left-color: #800000c9;
  border-right: none;
  top: 50%;
  right: 100%;
  margin-top: -6px;
  margin-right: 4px;
}

a[data-tooltip][data-placement="right"]::before {
  top: -7px;
  left: 100%;
  line-height: normal;
  margin-left: 10px;
}

a[data-tooltip][data-placement="right"]::after {
  border-right-color: #800000c9;
  border-left: none;
  top: 50%;
  left: 100%;
  margin-top: -6px;
  margin-left: 4px;
}

a[data-tooltip][data-placement="top"]::before {
  bottom: 100%;
  left: 0;
  margin-bottom: 10px;
}

a[data-tooltip][data-placement="top"]::after {
  /* border-top-color: #800000c9; */
  border-bottom: none;
  bottom: 100%;
  left: 10px;
  margin-bottom: 4px;
}

a[data-tooltip][data-placement="bottom"]::before {
  top: 100%;
  left: 0;
  margin-top: 10px;
}

a[data-tooltip][data-placement="bottom"]::after {
  /* border-bottom-color: #800000c9; */
  border-top: none;
  top: 100%;
  left: 10px;
  margin-top: 4px;
}




/* for mobile */
@media screen and (max-width: 767px) {
  .whatsapp-icon {
    margin-top: 10px;
  }
  .whatsapp_float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 10px;
    font-size: 36px;
  }
  a.whatsapp_float:active{
    background-color: #25d366 !important;
  color: #fff !important;
}
.about-us .content-bx p{
    display:none;
}
.hero-video {
      padding-top: 70px;
   

}
.fixed-top .container{
     background: black;
}
}


/* popup slider css start */

body {
  margin: 0;
  position: relative;
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
}

/* Help Link Styles */
.helpLink:before {
  content: attr(data-assist);
  display: inline-block;
  text-align: center;
  background: #333;
  color: white;
  font-weight: 400;
  width: auto;
  overflow: hidden;
  white-space: pre;
  height: auto;
  position: absolute;
  bottom: calc(-10pt - 31px);
  right: 50%;
  line-height: 1;
  line-break: auto;
  padding: 8px;
  font-size: 10pt;
  color: white;
  transition: opacity 0.1s ease-in-out;
}
.helpLink:after {
  content: "";
  display: block;
  border: 10px solid transparent;
  border-right-color: #333;
  position: absolute;
  bottom: -25px;
  right: 50%;
}
.helpLink:before,
.helpLink:after {
  pointer-events: none;
  opacity: 0;
}
.helpLink:hover:after,
.helpLink:focus:after {
  transition: opacity 0.2s ease-in-out;
}
.helpLink:hover:before,
.helpLink:focus:before,
.helpLink:hover:after,
.helpLink:focus:after {
  opacity: 1;
}

/* Help Modal Logic */
.helpModal,
.helpModal1,
.helpModal2,
.helpModal3,
.helpModal1 *,
.helpModal2 *,
.helpModal2 *,
.helpModal * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.helpModal,
.helpModal1,
.helpModal2,
.helpModal3,
.helpOverlay {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 5000;
}
.helpModal:checked + .helpModal,
.helpModal:checked + .helpModal .helpOverlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.helpModal1:checked + .helpModal1,
.helpModal1:checked + .helpModal1 .helpOverlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.helpModal2:checked + .helpModal2,
.helpModal2:checked + .helpModal2 .helpOverlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.helpModal3:checked + .helpModal3,
.helpModal3:checked + .helpModal3 .helpOverlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.helpOverlay {
  margin: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
}
.helpModal aside {
  display: block;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
  z-index: 6000;
  transition: padding 0.2s ease-in-out;
  background: white;
}
.helpModal1 aside {
  display: block;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
  z-index: 6000;
  transition: padding 0.2s ease-in-out;
  background: white;
}
.helpModal2 aside {
  display: block;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
  z-index: 6000;
  transition: padding 0.2s ease-in-out;
  background: white;
}
.helpModal3 aside {
  display: block;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
  z-index: 6000;
  transition: padding 0.2s ease-in-out;
  background: white;
}
@media (min-width: 900px) {
  .helpModal aside {
    margin: 90px auto 30px auto;
  }
  .helpModal1 aside {
    margin: 90px auto 30px auto;
  }
}
/* Exit Styles */
.helpExit {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  color: #c00;
  z-index: 6000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
}
.helpExit:before,
.helpExit:after {
  content: "";
  display: block;
  background: red;
  height: 25px;
  width: 4px;
  position: absolute;
  top: 12.5px;
  left: calc(50% - 2px);
  transform-origin: center;
  transition: all 0.1s ease-in-out;
}
.helpExit:before {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.helpExit:after {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.helpExit:hover:before,
.helpExit:focus:before,
.helpExit:hover:after,
.helpExit:focus:after {
  background: white;
}
.helpExit:hover:before,
.helpExit:focus:before {
  transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.helpExit:hover:after,
.helpExit:focus:after {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.helpExit:focus + article,
.helpExit:hover + article {
  opacity: 0.7;
}
@media (min-width: 900px) {
  .helpExit:focus + article,
  .helpExit:hover + article {
    background: transparent;
    border: 1px solid white;
    color: white;
  }
  .helpExit:hover + article > *,
  .helpExit:focus + article > *,
  .helpExit:hover + article * + *,
  .helpExit:focus + article * + * {
    background: transparent !important;
    color: white;
  }
}
/* Article Styles */
.helpModal article {
  background: white;
  border: 0 solid transparent;
  margin: 0;
  color: #222;
  max-width: 100%;

  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
}
.helpModal article h1 {
  letter-spacing: -0.02em;
  font-size: 24pt;
  margin: 0 0 0.5em 0;
}
.helpModal article p {
  margin: 0;
  font-size: 12pt;
}
.helpModal article p + p {
  margin-top: 1em;
}
/* Article Styles */
.helpModal1 article {
  background: white;
  border: 0 solid transparent;
  margin: 0;
  color: #222;
  max-width: 100%;

  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
}
.helpModal1 article h1 {
  letter-spacing: -0.02em;
  font-size: 24pt;
  margin: 0 0 0.5em 0;
}
.helpModal1 article p {
  margin: 0;
  font-size: 12pt;
}
.helpModal1 article p + p {
  margin-top: 1em;
}
/* Article Styles */
.helpModal2 article {
  background: white;
  border: 0 solid transparent;
  margin: 0;
  color: #222;
  max-width: 100%;

  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
}
.helpModal2 article h1 {
  letter-spacing: -0.02em;
  font-size: 24pt;
  margin: 0 0 0.5em 0;
}
.helpModal2 article p {
  margin: 0;
  font-size: 12pt;
}
.helpModal2 article p + p {
  margin-top: 1em;
}
/* Article Styles */
.helpModal3 article {
  background: white;
  border: 0 solid transparent;
  margin: 0;
  color: #222;
  max-width: 100%;

  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
}
.helpModal3 article h1 {
  letter-spacing: -0.02em;
  font-size: 24pt;
  margin: 0 0 0.5em 0;
}
.helpModal3 article p {
  margin: 0;
  font-size: 12pt;
}
.helpModal3 article p + p {
  margin-top: 1em;
}
/* Toggle Box */
.toggleBox,
.toggleBox * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.toggleBox {
  background: #fafafa;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.toggleBox:after {
  content: "";
  display: block;
  clear: both;
}
.toggleBox input {
  display: none;
  transition: all 0.1s ease-in-out;
}
.toggleBox label:hover,
.toggleBox label:focus {
  text-decoration: underline;
}
.toggleBox input:checked + label {
  font-weight: bold;
  background: #eaeaea;
}
.toggleBox small {
  display: block;
  padding: 0;
  margin: 7px;
  font-size: 18pt;
  color: #333;
}
.toggleBox label {
  display: inline-block;
  width: 50%;
  float: left;
  padding: 15px 0;
  text-align: center;
  font-size: 10pt;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
  background: white;
  border-top: 1px solid #eaeaea;
}
.toggleBox .slider {
  position: relative;
  float: left;
  width: 200%;
}
.toggleBox .slider div[class^="tab-"] {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  transition: left 0.2s ease-in-out;
}
.toggleBox #tab1 ~ .slider .tab-1 {
  left: -50%;
}
.toggleBox #tab1:checked ~ .slider .tab-1 {
  left: 0;
}
.toggleBox #tab2 ~ .slider .tab-2 {
  left: 50%;
}
.toggleBox #tab2:checked ~ .slider .tab-2 {
  left: -50%;
}
@media (min-width: 600px) {
  .toggleBox label {
    font-size: 12pt;
  }
  .toggleBox small {
    display: none;
  }
}

/* popup slider css end */

/* slider  */

.mySlides,
.mySlides1,
.mySlides3,
.mySlides2 {
  display: none;
}

.mySlides img {
  vertical-align: middle;
  height: 500px;
  border-radius: 10px;
}
.mySlides1 img {
  vertical-align: middle;
  height: 500px;
  border-radius: 10px;
}
.mySlides2 img {
  vertical-align: middle;
  height: 500px;
  border-radius: 10px;
}
.mySlides3 img {
  vertical-align: middle;
  height: 500px;
  border-radius: 10px;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 10px;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 10px;
}
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.dot,
.dot1,
.dot2,
.dot3 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #5d5f65;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/*.active,*/
/*.dot:hover {*/
/*  background-color: #393a3e;*/
/*}*/
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
.credit {
  text-align: center;
  color: #202124;
  padding-top: 15px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
.hide {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -moz-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -o-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  width: 51px;
  height: 51px;
  font-size: 0;
  cursor: pointer;
}

.close:before,
.close:after {
  content: "";
  position: absolute;
  background: #767676;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  left: 14px;
  right: 14px;
  top: 30px;
  height: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -webkit-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
}

.close:after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup {
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: #fafdff;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 80%;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.09),
    0px 11px 12px 7px rgba(0, 0, 0, 0.02);

  -moz-transition: all 120ms;
  -webkit-transition: all 120ms;
  -o-transition: all 120ms;
  transition: all 120ms;
  z-index: 999999;
  padding: 25px;
  color: #5e5e5e;
}

@media screen and (max-width: 1000px) {
  .popup {
    width: 100%;
  }
}

.popup-header {
  text-transform: uppercase;
  font-size: 18px;
}

.popup-body {
  padding: 25px 0;
}

.button {
  text-transform: uppercase;
  border: 0;
  background: white;
  cursor: pointer;
  transition: all 120ms ease-in;
  outline: none;
  font-size: 20px;
  color: var(--color-blue);
}

.button:active,
.button:visited {
  transform: translateY(1px);
  outline: none;
  box-shadow: 1px 2px 3px #f5f5f5;
}
.hide {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -moz-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -o-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  width: 51px;
  height: 51px;
  font-size: 0;
  cursor: pointer;
}

.close:before,
.close:after {
  content: "";
  position: absolute;
  background: #767676;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  left: 14px;
  right: 14px;
  top: 30px;
  height: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -webkit-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
}

.close:after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup {
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: #fafdff;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 80%;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.09),
    0px 11px 12px 7px rgba(0, 0, 0, 0.02);

  -moz-transition: all 120ms;
  -webkit-transition: all 120ms;
  -o-transition: all 120ms;
  transition: all 120ms;
  z-index: 999999;
  padding: 25px;
  color: #5e5e5e;
}

@media screen and (max-width: 1000px) {
  .popup {
    width: 100%;
  }
  .mySlides3 img{
      height:300px;
      width:100%;
      padding-top:30px;
  }
  .mySlides img{
      height:300px;
      width:100%;
      padding-top:30px;
  }
  .mySlides1 img{
      height:300px;
      width:100%;
      padding-top:30px;
  }
  .mySlides2 img{
      height:300px;
      width:100%;
      padding-top:30px;
  }
  
}

.popup-header {
  text-transform: uppercase;
  font-size: 18px;
}

.popup-body {
  padding: 25px 0;
}

.button {
  text-transform: uppercase;
  border: 0;
  background: white;
  cursor: pointer;
  transition: all 120ms ease-in;
  outline: none;
  font-size: 20px;
  color: var(--color-blue);
}

.button:active,
.button:visited {
  transform: translateY(1px);
  outline: none;
  box-shadow: 1px 2px 3px #f5f5f5;
}


