
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Cardo",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #000000; /* Background color for the entire website, including individual sections */
  --default-color: #fafafa; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #27a776; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --contrast-color: #161718; /* The contrast color is used for elements when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.5);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-dropdown-background-color: #161718; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.5); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #FFEB3B, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 0 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 110px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .logo i, #about-logo-side {
  font-size: 35px;
  margin-left: 1rem;
  transform: rotateY(0deg) rotate(-45deg);
  transition: transform 2s;
}

.header .logo i:hover {
transform:  rotateY(180deg) rotate(45deg);
}

.header .header-social-links {
  /* padding-right: 15px; */
  max-width: 70px;
}

.header .header-social-links a {
  color: color-mix(in srgb, #fff, transparent 20%);
  padding-left: 3px;
  padding-right: 3px;
  display: inline-block;
  transition: 0.3s;
  font-size: 1.5rem;
}

.header .header-social-links a:hover {
  color: #FFEB3B;
}

.header .header-social-links a i {
  line-height: 0px;
}

#text-logo {
  display: none;
}

@media (max-width: 1200px) {
  .header .logo img {
    max-height: 100px;
  }
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 26px;
  }

  .header .logo i {
    font-size: 40px;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .header-social-links a {
    font-size: 16px;
  }

  .header .navmenu {
    order: 3;
  }
}



.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
  background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 23%, rgba(255, 255, 255, 0.0) 25%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 26%, transparent 25%) !important;
}

.ybo-scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
  background: rgba(0, 0, 0, .55);
}
/* 
.scrolled .header img, .scrolled #navmenu, .scrolled #top-right-social-media {
  display: none !important;
} */

.scrolled .header img, .scrolled #top-right-social-media, .ybo-scrolled .header img, .ybo-scrolled #top-right-social-media {
  display: none !important;
}


.scrolled #text-logo, .ybo-scrolled #text-logo {
  display: block;
  font-size: 1rem;
}

.scrolled .header i.bi-camera, .ybo-scrolled .header i.bi-camera {
  display: block !important;
  font-size: 30px;
  margin-bottom: 3px;
  margin-left: 1rem;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0 1rem;
    display: flex;
    list-style: none;
    align-items: center;
    /* background: rgba(0, 0, 0, 1); */
    border-radius: 50px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 3px 15px;
    font-size: 1rem;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  /* .navmenu li:last-child a {
    padding-right: 0;
  } */

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #FFEB3B;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: rgba(0, 0, 0, .75);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 7px 10px;
    font-size: 1rem;
    text-transform: none;
    color: #fff;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #FFEB3B;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffd700;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: rgb(0 0 0 / 70%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ddd;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #fff, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #ffc107;
    color: #000;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffc107;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #ffc107;
    color: #000;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: #ddd;
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%); */
  padding: 8px;
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #FFEB3B;
  border-color: #FFEB3B;
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loadimg {
  position: absolute;
  margin: auto;
  top: calc(50% - 60px);
  left: calc(50% - 118px);
  z-index: 0;
  transform: rotate(-90deg);
  border-radius: 10px;
  /* max-height: 150px; */
  height: 120px;
}

#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  height: 100vw;
  width: 100vh;
  z-index: 99999;
  transform: rotate(90deg) translateY(-100%);
  transform-origin:top left;
  overflow: hidden;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: #000000;
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.7s ease 0s;
  z-index: -1;
  /* background: url(images/logos/logo.png);
  background-repeat: no-repeat; */
}

#preloader:before {
  left: auto;
  right: 50%;
}

#preloader:after {
  left: 50%;
  right: auto;
}


#preloader .line {
  position: relative;
  overflow: visible;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line img{
  position: absolute;
  top: -50;
  left: -50;
}

#preloader .line:before {
  content: "";
  position: absolute;
      /* background: url(images/logos/logo.png);
  background-repeat: no-repeat; */
  background-color: #000000;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: linemove 1200ms linear 0s infinite;
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader {
  animation: preloaderfinish2;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    /* background: #fff; */
    width: 100%;
  }

  100% {
    /* background: #000; */
    width: 0%;
  }
}

@keyframes preloaderfinish2 {
  0% {
    /* background: #fff; */
    position: relative;
    width: 100%;
  }

  100% {
    /* background: #000; */
    width: 0%;
  }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: gold;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 1px solid #333;
}

.scroll-top i {
  font-size: 24px;
  color: #000;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, gold, transparent 20%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #000;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 80vh;
  /* border-top: .1rem solid #9d813d; */
  /* filter: brightness(50%); */
}

.page-title .heading {
  padding: 80px 0;
  position: absolute;
    width: 100%;
    bottom: 5%;
}

.page-title .heading h1 {
  font-size: 7em;
  font-weight: 400;
  color: #000;
}

.page-title .heading .cta-btn {
  color: var(--default-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-title .heading .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

.page-title nav {
  background-color: color-mix(in srgb, #000, transparent 0%);
  padding: 7px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  /* font-weight: 600; */
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #000;
  background: url('images/backgrounds/section-bg.webp');
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
  /* border-top: .1rem solid #9d813d; */
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  font-family: var(--default-font);
}

.section-title h2::before {
  content: "";
  width: 20px;
  height: 1px;
  display: inline-block;
  background: #ffc107;
  margin: 4px 10px;
  /* transform: rotate(15deg); */
}

.section-title h2::after {
  content: "";
  width: 20px;
  height: 1px;
  display: inline-block;
  background: #ffc107;
  margin: 4px 10px;
  /* transform: rotate(-15deg); */
}

.section-title h2.text-danger::before {
  content: "";
  width: 20px;
  height: 1px;
  display: inline-block;
  background: firebrick;
  margin: 4px 10px;
  /* transform: rotate(15deg); */
}

.section-title h2.text-danger::after {
  content: "";
  width: 20px;
  height: 1px;
  display: inline-block;
  background: firebrick;
  margin: 4px 10px;
  /* transform: rotate(-15deg); */
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# ybo Section
--------------------------------------------------------------*/
.ybo {
  --default-color: #000;
  --background-color: #fff;
  --heading-color: #000;
  --contrast-color: #000;
  background-image: url('images/backgrounds/section-bg.webp');
  background-position: bottom;
  background-repeat: repeat;
  width: 100%;
  /* min-height: 80vh; */
  position: relative;
  /* padding: 120px 0 60px 0; */
  display: flex;
  align-items: center;
}

.ybo h2 {
  margin: 0 0 10px 0;
  font-size: 38px;
  /* font-weight: 700; */
}

.ybo h2 .underlight {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block;
}

.ybo h2 .underlight:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  z-index: -1;
}

.ybo p {
  color: #333;
  margin-bottom: 30px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .ybo h2 {
    font-size: 32px;
  }
}

.ybo .btn-get-started {
  color: #333;
  background: #fbfbfb;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #aaa;
}

.ybo .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
/* .gallery {
  background: #000;
} */

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #000;
}

.gallery .gallery-item img {
  transition: 0.3s;
  height: 15vw;
  object-fit: cover;
  width: 100%;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 3.2rem;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  /* background-image: url('images/backgrounds/section-bg-black.webp');
  background-position: bottom;
  background-repeat: repeat; */
  background: #000;
}

.testimonials .testimonial-item {
  box-shadow: 0px 0 20px color-mix(in srgb, gold, transparent 90%);
  background: #fff;
  color: #222;
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  border-radius: 10px;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 1rem;
  color: color-mix(in srgb, firebrick, transparent 0%);
  margin: 0;
  font-weight: bold;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc107;
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

/* .testimonials .swiper-slide-next .testimonial-item {
  background: #fff;
} */

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Gallery Details Section
--------------------------------------------------------------*/
.gallery-details .portfolio-details-slider img {
  width: 100%;
}

.gallery-details .swiper-wrapper {
  height: auto;
}

.gallery-details .swiper-button-prev,
.gallery-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.gallery-details .swiper-button-prev:after,
.gallery-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gallery-details .swiper-button-prev:hover:after,
.gallery-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .gallery-details .swiper-button-prev,
  .gallery-details .swiper-button-next {
    display: none;
  }
}

.gallery-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.gallery-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.gallery-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.gallery-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.gallery-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.gallery-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.gallery-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.gallery-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.gallery-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-details .portfolio-description p {
  padding: 0;
}

.gallery-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.gallery-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.gallery-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.gallery-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-left,
.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.gallery-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: #fff;
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid #aaa;
  border-radius: 10px;
  width: 100%;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: #000;
  /* inset: 100% 0 0 0; */
  transition: all 0.3s;
  z-index: -1;
}

.services .ybo-sv1:before {
  inset: 0 0 0 100%;
}

.services .ybo-sv2:before {
  inset: 100% 0 0 0;
}

.services .ybo-sv3:before {
  inset: 0 0 100%  0;
}

.services .ybo-sv4:before {
  inset: 0 100% 0 0;
}

.services .service-item .icon {
  margin-bottom: 15px;
}

.services .service-item .icon i {
  color: #fff;
  background-color: #222;
  font-size: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: ease-in-out 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: var(--default-font);
}

.services .service-item h4 a {
  color: #222;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  color: #333;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
  letter-spacing: .4px;
}

.services .service-item:hover h4 a {
  color: #e6ac00;
}
.services .service-item:hover p {
  color: #ccc;
}

.services .service-item:hover i {
  color: #000;
  background-color: #fff;
}

.services .service-item:hover:before {
  background: #000;
  inset: 0;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  --heading-font: var(--default-font);
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: color-mix(in srgb, #000, transparent 30%);
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  margin-bottom: 30px;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  /* border: 1px solid color-mix(in srgb, #fff, transparent 40%); */
  margin-right: 15px;
  background: #222;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #222;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #fff;
  color: #000;
  border:1px solid #333;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #000;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #000;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #000;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #000;
  border-top-color: #000;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 7px;
  color: #000;
  background-color: #fff;
  border-color: color-mix(in srgb, #000, transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #000;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, #000, transparent 70%);
}

/* .contact .php-email-form button[type=submit] {
  color: #00151e;
  background: #bec457;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border: 0;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .php-email-form button[type=submit]:hover {
  background-color: color-mix(in srgb, #fff 90%, #000 10%);
} */

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# YBO CUSTOM
--------------------------------------------------------------*/
/* .section a{
  font-size: 1.2rem;
} */
.ybo-object-fit {
  object-fit: cover !important;
  width: 100% !important;
}

 .text-danger {
  color: firebrick !important;
 }

 .text-warning {
  color: #fdde59 !important;
 }

 .ybo-bg-black {
  background: #000 !important;
 }

 .ybo-mt-n3 {
  margin-top: -47px;
  position: relative;
  z-index: 100000;
}

.bi-hand-index {
  transform: rotateY(0deg) rotate(45deg);
}

.ybo-h1{
  font-size: 3.5rem !important;
  transform: rotateY(0deg) rotate(-20deg);
  transition: transform 2s;
}

.ybo-border-light {
  border: 1px solid #aaa;
}

.rancho-regular {
  font-family: "Rancho", cursive;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .009em;
}

.finger-paint-regular {
  font-family: "Finger Paint", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bold-tangerine{
  font-family: "Tangerine", cursive;
  font-weight: bolder;
  font-style: normal;
}

.ybo-welcome-frame{
  max-height: 15vh;
}

.ybo-welcome-frame h1 {
  font-size: 28px;
}

.ybo-mask-black{
  background-color: rgba(0, 0, 0, .5);
}

.ybo-mask-menu-black{
  background: rgba(0, 0, 0, .75);
}

.ybo-text-gold {
  background: -webkit-linear-gradient(top, #DF9F28, #FDE08D, #DF9F28);
	background: linear-gradient(top, #DF9F28, #FDE08D, #DF9F28);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ybo-homeimg-1 {
  transform: perspective(800px) rotateY(8deg);
  transition: transform 1s ease 0s;
  /* border-radius: 7px; */
  /* box-shadow: 0 70px 40px -20px rgba(0, 0, 0, 0.2); */
  box-shadow: 7px 7px 0 0px rgba(0, 0, 0, .50);
  &:hover {
    transform: perspective(800px) rotateY(-4deg);
  }
}

.ybo-homeimg-2 {
  transform:
  perspective(800px)
  rotateY(-8deg);
  transition: transform 1s ease 0s;
  /* border-radius: 7px; */
  /* box-shadow: 0 70px 40px -20px rgba(0, 0, 0, 0.2); */
  
  box-shadow: -7px 7px 0 0px rgba(0, 0, 0, .50);
  &:hover {
    transform: perspective(800px) rotateY(-4deg);
  }
}

.ybo-aboutimg-1{
  transform:
    perspective(800px)
    rotateY(15deg) scale(1)
    rotateX(10deg);
  /* filter: blur(2px); */
  /* opacity: 0.5; */
  transition: 0.6s ease all;
  box-shadow: -7px 7px 0 0px rgba(0, 0, 0, .50);
}

.ybo-aboutimg-1:hover{
  transform:
  perspective(800px)
  rotateY(-10deg)
  /* translateY(-50px) */
  rotateX(10deg)
  scale(1);
  filter: blur(0);
  opacity: 1;
  box-shadow: 7px 7px 0 0px rgba(0, 0, 0, .50);
}

.ybo-aboutimg-2{
  transform:
  perspective(800px)
  rotateY(-10deg)
  /* translateY(-50px) */
  rotateX(10deg)
  scale(.7);
  /* filter: blur(2px); */
  /* opacity: 0.5; */
  transition: 0.6s ease all;
  box-shadow: 7px 7px 0 0px rgba(0, 0, 0, .50);
}

.ybo-aboutimg-2:hover{
  transform:
    perspective(800px)
    rotateY(15deg) scale(.7)
    rotateX(10deg);
    filter: blur(0);
    opacity: 1;
    box-shadow: -7px 7px 0 0px rgba(0, 0, 0, .50);
}

.ybo-bg-diag{
  background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 35%, rgba(255, 255, 255, 0.0) 38%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 39%, transparent 39%);
}

/* Page Title */

.ybo-about-page {
  background-image: url('images/backgrounds/about.webp');
  background-position: bottom !important;
}

.ybo-contact-page {
  background-image: url('images/backgrounds/contact-us.webp');
}

.ybo-services-page {
  background-image: url('images/backgrounds/services.webp');
  background-position: bottom left !important;
}


.ybo-photo-gallery-events-page {
  background-image: url('images/backgrounds/photo-gallery-events.jpg');
}


.breadcrumbs {
  background: #000;
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  /* border-top: .1rem solid #9d813d; */
}

.breadcrumbs .current {
  color: #FDE08D;
}
/* End Page Title */

/* Carousel */


.carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item img{
  height:95vh;
  object-fit: cover;
  filter: brightness(50%);
}


.carousel-caption {
  bottom: 25% !important;
}

.ybo-video-caption {
  bottom: 0 !important;
  right: 0 !important;
  left: 0 !important;
  padding: .5rem 0 0 0 !important;
}

.carousel-caption h3 {
	margin: auto;
	letter-spacing: .07em;
	font-size: 7em;
	text-align: center;
  font-family: "Tangerine", cursive;
  font-weight: bolder;
  font-style: normal;
}

.ybo-video-caption h3 {
	letter-spacing: .07em;
	font-size: 3em;
}

#book-now-modal {
  position: absolute;
  /* right: 15%; */
  bottom: 13%;
  /* left: 15%; */
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.btn-book-now, .btn:not(.close) {
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 2px;
  /* text-transform: uppercase; */
  font-family: "Rancho", cursive;
  display: inline-block;
  padding: 1rem 2rem .8rem;
  /* border-radius: 50px; */
  transition: 0.3s;
  line-height: 1;
  /* background: rgb(0 0 0 / 65%); */
  background: rgba(190, 196, 87, .8);
  color: #000;
  border: 1px solid #555;
  margin-top: 3px;
  margin-bottom: 3px;
}

/* .btn-book-now:hover, .btn:hover, .btn-submit:hover {
  background: #000;
  color: #fff;
  border-color: #555;
} */

 /* Get book */
 #book-now-modal-form .modal-dialog .modal-content {
  background: #fbfbfb !important;
}

#book-now-modal-close {
  border: none;
  font-size: 3rem;
  padding: 0px 4px !important;
  /* background: none; */
  color: #000;
  position: relative;
  top: 0px !important;
  right: 0px !important;
  font-weight: bold;
  line-height: .7;
  /* width: 2.5rem; */
}

#book-now-modal-close:hover {
  color: firebrick !important;
  background: #fff !important;
}

#book-now-modal-close span{
position: relative;
  top: 0px;
}
.btn-book {
  font-size: 2rem !important;
  border-radius: 45px !important;
  color: firebrick  !important;
  border: 1px solid #aaa !important;
  background: rgba(255, 255, 255, .95)  !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  padding-top: 0 !important;
  padding-bottom: 5px !important;
  font-weight: 600 !important;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
}

.btn-book-now:hover, .btn:hover, .btn-submit:hover {
  background: #bec457 !important;
  color: #00151e !important;
  border-color: #15242a !important;
}

/* .btn-submit {
  font-size: 1.5rem !important;
  border-radius: 45px !important;
  color: firebrick  !important;
  border: 1px solid #aaa !important;
  background: #fbfbfb  !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
  font-weight: 600 !important;
} */

#btn-book-link {
  color: #e6d600;
  font-weight: 700;
  padding: 3px 9px 1px 11px !important;
  border-radius: 50px !important;
  border: 1px solid #e6d600 !important;
  text-align: center !important;
}

#btn-book-link:hover {
  background-color: #e6d600;
  color: #15242a;
  border: 1px solid #15242a !important;
}

/* light video gallery */
.ybo-video-gallery .flex {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.lightGallery a{
  width: 25% !important;
}

.lightGallery img:not(.ybo-play-icon){
  width: 100%;
  height: 15vw;
  object-fit: cover;
}
.carousel-inner, .carousel-inner .carousel-item, .carousel-inner .carousel-item .view, .carousel-inner .carousel-item .view video{
  height: 100% !important;
  width: 100% !important;
}

/* .carousel-indicators{
  bottom: 20px !important
} */


.ybo-next-video {
  right: -130px !important;
}

.ybo-prev-video {
  left: -130px !important;
}

.ybo-video-indicators {
  bottom: -50px !important;
}


@media (max-width:991.98px) {
  .lightGallery a{
      width: 50% !important;
  }
}

@media (max-width:767.98px) {
  .lightGallery a{
      width: 100% !important;
  }
}

.ybo-video-gallery  .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #d2d2dc;
  border-radius: 0
}

.ybo-video-gallery .card .card-body {
  padding: 1.25rem 1.75rem
}

.ybo-video-gallery .card-body {
  flex: 1 1 auto;
  padding: 1.25rem
}

.ybo-video-gallery .card .card-title {
  color: #000000;
  margin-bottom: 0.625rem;
  text-transform: capitalize;
  font-size: 0.875rem;
  font-weight: 500
}

.ybo-video-gallery .lightGallery {
  width: 100%;
  margin: 0
}

.ybo-video-gallery .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px
}

.ybo-video-gallery .lightGallery .image-tile {
  position: relative;
  margin-bottom: 30px;
  margin-right: 10px
}

.ybo-video-gallery .lightGallery .image-tile .demo-gallery-poster {
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 display: flex;
 justify-content: center;
 align-items: center;
}

.ybo-video-gallery .lightGallery .image-tile .demo-gallery-poster img {
 display: block;
 width: 40%;
 max-width: 60px;
 min-width: 20px;
}

.play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#000000a6 50%, rgba(40, 79, 40, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(40, 79, 40, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

/* .play-btn:hover {
  background: radial-gradient(#284f28a6 50%, rgba(148, 192, 69, 0.4) 52%);
} */

.play-btn:hover::after {
  border-left: 15px solid #000000a6;
  transform: scale(20);
}

.play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* end light video gallery */


/* catalog */
  
.catalog {
  position: relative;
  /* background-color: rgba(0, 21, 30, .7); */
  padding-top: 1rem;
  padding-bottom: 0;
  padding-right: 7px;
  padding-left: 7px;
  /* border: 1px solid #3C84AB; */
  /* border-radius: 5px; */
}
.catalog p {
  text-align: justify !important;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-header {
  margin-bottom: 4rem;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-header .catalog-header-heading {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-header .catalog-header-subheading {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: capitalize;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-header .catalog-header-paragraph {
  font-size: 1.2rem;
  font-weight: 400;
  color: #222222;
  text-align: left;
  margin-bottom: 1rem;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card:hover .catalog-card-image-content {
  background-color: rgba(255, 255, 255, 0.75);
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card:hover .catalog-card-image-content .catalog-card-image-content-link .catalog-card-image-content-icon-wrapper .catalog-card-image-content-icon {
  opacity: 1;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card .catalog-card-image {
  max-width: 100%;
  /* height: auto;
  width: 100%; */
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: -webkit-transform 300ms ease;
  width: 100%;
  height: 15vw;
  object-fit: cover;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card .catalog-card-image-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card .catalog-card-image-content .catalog-card-image-content-tag {
  position: absolute;
  padding: 0.5rem 1rem;
  background-color: #3C84AB;
  color: #defcf9;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card .catalog-card-image-content .catalog-card-image-content-link {
  text-decoration: none;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card .catalog-card-image-content .catalog-card-image-content-link .catalog-card-image-content-icon-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-card .catalog-card-image-content .catalog-card-image-content-link .catalog-card-image-content-icon-wrapper .catalog-card-image-content-icon {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 75px;
  height: 75px;
  border-radius: 100%;
  border: 2px solid #222;
  font-size: 24px;
  color: #222;
  -webkit-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-content {
  margin-bottom: 2rem;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-content .catalog-content-heading {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-content .catalog-content-paragraph {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-image-wrapper {
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.catalog .catalog-container .catalog-row .catalog-column .catalog-image-wrapper .catalog-image {
  max-width: 100%;
  height: auto;
  width: 100%;
}


/* end catalog */

/* footer */
.footer .copyright p {
  line-height: 2;
}

/* end footer */

/* hide timer */
.hide-me {
  -moz-animation: cssAnimation 0s ease-in 5s forwards;
  /* Firefox */
  -webkit-animation: cssAnimation 0s ease-in 5s forwards;
  /* Safari and Chrome */
  -o-animation: cssAnimation 0s ease-in 5s forwards;
  /* Opera */
  animation: cssAnimation 0s ease-in 5s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes cssAnimation {
  to {
      width:0;
      height:0;
      overflow:hidden;
  }
}
@-webkit-keyframes cssAnimation {
  to {
      width:0;
      height:0;
      visibility:hidden;
  }
}
/* end hide timer */

@media screen and (max-width: 1500px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 23%, rgba(255, 255, 255, 0.0) 25%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 26%, transparent 25%);
  }

}

@media screen and (max-width: 1400px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 33%, rgba(255, 255, 255, 0.0) 36%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 37%, transparent 37%);
  }

}



@media (max-width: 1199px) {
  .page-title {
    height: 50vh !important;
  }
  .carousel-caption h3, .page-title .heading h1 {
    font-size: 5em;
  }
  .btn-book-now {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 991px) {
  .page-title {
    height: 45vh !important;
  }
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 33%, rgba(255, 255, 255, 0.0) 36%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 37%, transparent 27%);
  }
  .carousel-caption h3, .page-title .heading h1 {
    font-size: 3em;
  }
  .btn-book-now {
    font-size: 13px !important;
    padding: 6px 12px !important;
  }
  .ybo-next-video {
    right: -80px !important;
  }
  
  .ybo-prev-video {
    left: -80px !important;
  }
  .gallery .gallery-item img {
    height: 30vw;
  }
}

@media screen and (max-width: 925px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 36%, rgba(255, 255, 255, 0.0) 38%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 39%, transparent 27%);
  }
}

@media screen and (max-width: 870px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 39%, rgba(255, 255, 255, 0.0) 41%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 42%, transparent 27%);
  }
}

@media screen and (max-width: 810px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 43%, rgba(255, 255, 255, 0.0) 46%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 47%, transparent 27%);
  }
  .ybo-next-video {
    right: -30px !important;
  }
  
  .ybo-prev-video {
    left: -30px !important;
  }
}


@media screen and (max-width: 768px) {
  /* .page-title {
    height: 35vh !important;
  } */
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 47%, rgba(255, 255, 255, 0.0) 49%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 50%, transparent 27%);
  }
  .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item img{
    height:65vh;
  }
  .carousel-caption h3, .page-title .heading h1 {
    font-size: 2.5em;
  }
  .ybo-next-video {
    right: 0px !important;
  }
  
  .ybo-prev-video {
    left: 0px !important;
  }
  .gallery .gallery-item img {
    transition: 0.3s;
    height: 65vw;
    object-fit: cover;
    width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(255, 255, 255, 0.0) 53%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 54%, transparent 27%);
  }
}

@media screen and (max-width: 630px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 54%, rgba(255, 255, 255, 0.0) 57%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 58%, transparent 27%);
  }
  .ybo-welcome-frame {
    max-height: 12.7vh;
  }
  .ybo-h1 {
    font-size: 3rem !important;
  }
  #ybo-home-brand {
    font-size: calc(1rem + 1.5vw);
  }
}

@media screen and (max-width: 570px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 57%, rgba(255, 255, 255, 0.0) 60%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 61%, transparent 27%);
  }
  .ybo-welcome-frame {
    max-height: 11.3vh;
  }
  .ybo-h1 {
    font-size: 2.4rem !important;
  }
  #ybo-home-brand {
    font-size: calc(.8rem + 1.5vw);
  }
}

@media screen and (max-width: 530px) {
  .ybo-bg-diag{
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(255, 255, 255, 0.0) 63%), linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, .0) 64%, transparent 27%);
  }
}

@media screen and (max-width: 530px) {
  .fixed-top {
    position: sticky;
  }
  .ybo-bg-diag{
    background: #000;
  }

  .header .logo i {
    display: none;
  }
  .scrolled #navmenu, .ybo-scrolled #navmenu {
    display: block !important;
  }

  .scrolled #text-logo, .ybo-scrolled #text-logo {
    font-size: .8rem;
  }

  .scrolled .header i.bi-camera, .ybo-scrolled .header i.bi-camera {
    font-size: 20px;
    margin-left: .5rem;
  }
}