@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Roboto:wght@100..900&display=swap');
* {
  padding: 0;
  margin: 0;
}


body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  /* font-family: "Philosopher", sans-serif; */
  font-optical-sizing: auto;
  font-style: normal;
}


/* ---------------------- Common CSS Section Start ---------------------- */
:root {
  --themeOrange: #e96606;
  --themeColor: #8dc63f;
  --themebgColor: #f5f5f5;
  --darkBlack: #000000;
  --whiteColor: #ffffff;
  --textcolor: #333333;
  --paraTextcolor: #6d6c6c;  
  --lightGreen: #ecfffd;
  --themeLightbg: #f4fdfd;
  --starColor: #fbb040;
  --lowOpacitywhite: #ffffffa8;
  --borderRadius: 10px;
  --themeBorder: 1px solid var(--themeColor);
}

h2 {
  font-family: "Philosopher", sans-serif;
  font-size: 60px;
}

h3 {
  font-family: "Philosopher", sans-serif;
  font-size: 48px;
}

h4 {
  font-family: "Philosopher", sans-serif;
  font-size: 36px;
}

h5 {
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
}

h6 {
  font-family: "Philosopher", sans-serif;
  font-size: 18px;
}

a {
  text-decoration: none;
}

.section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.section-herder h3 {
  font-weight: 600;
  color: var(--textcolor);
}

.common-btn {
  width: 160px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border-radius: 10px;
}

/* ---------------------- Common CSS Section End ---------------------- */

/* ------------Scrollbar customization Start------------ */
/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--themeColor);
    border-radius: var(--borderRadius);
    /* border-radius: 10px; */
}

/* ------------Scrollbar customization End------------ */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Loading CSS Section Start ---------------------- */
.loading {
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.801); */
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

@keyframes loading-item {
  0% {
    transform: rotate(0deg)
  }

  50% {
    transform: rotate(180deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.loading-item div {
  position: absolute;
  animation: loading-item 1s linear infinite;
  width: 128px;
  height: 128px;
  top: 36px;
  left: 36px;
  border-radius: 50%;
  box-shadow: 0 6.4px 0 0 var(--themeColor);
  transform-origin: 64px 67.2px;
}

.loading-inner {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
}

.loading-item {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}

.loading-item div {
  box-sizing: content-box;
}

/* ---------------------- Loading CSS Section End ---------------------- */

/* ---------------------- Navbar CSS Section Start ---------------------- */
.custom-navbar {
  width: 100%;
  padding: 10px 0;
  background: var(--lightGreen);
  box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.18);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: top 0.8s ease-in-out;}

.custom-navbar .nav-menu {
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;  
}

.custom-navbar .nav-menu .brand {
  width: 220px;
  height: auto;
}

.custom-navbar .nav-menu .brand img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-navbar .nav-menu .nav-inner-menu {
        Display: flex;
        justify-content: space-between;
        align-items: center;
    }


.custom-navbar .nav-menu nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.custom-navbar .nav-menu nav ul li {
  display: inline-block;
  padding-inline: 8px;
}

.custom-navbar .nav-menu nav ul li a {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  color: var(--darkBlack);
}

.custom-navbar .nav-menu nav ul li a:hover,
.custom-navbar .nav-menu nav ul li a.active {
    color: var(--themeOrange);
    transition: all 0.5s;
}

.custom-navbar .nav-menu .common-btn {
  background: var(--themeColor);
  color: var(--whiteColor);
  margin-left: 20px;
}

.custom-navbar .nav-menu .nav-btn {
    display: none;
}

.hamburger,
.hamburger-two {
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.hamburger .line,
.hamburger-two .line {
    width: 28px;
    height: 2px;
    border-radius: 50px;
    background-color: var(--themeOrange);
    display: block;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover,
.hamburger-two:hover {
    cursor: pointer;
}

#hamburger-1 .line:nth-child(2),
#hamburger-2 .line:nth-child(2) {
    width: 20px;
}

#hamburger-1.is-active .line:nth-child(2),
#hamburger-2.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1),
#hamburger-2.is-active .line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3),
#hamburger-2.is-active .line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
} 

#mobile-menu {
  display: none;
}

/* ---------------------- Navbar CSS Section End ---------------------- */

/* ---------------------- Pop-up CSS Section Start ---------------------- */
.overlay {
    display: none;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; 
    left: 0;
    z-index: 1000;
  }

  .overlay .popup-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .overlay .popup-area .popup {
    background: url(../img/popup_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
    position: relative;
  }

  .overlay .popup-area .popup .pop-up-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .overlay .popup-area .popup .img-box {
    width: 100px;
    height: 60px;
    margin: 0 auto;
  }

  .overlay .popup-area .popup .img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .overlay .popup-area .popup .pop-up-header .h2 {
    font-size: 36px;
    font-family: "Philosopher", sans-serif;
  }

  .overlay .popup-area .popup p {
    font-size: 20px;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #777;
  }

  /* Book Now button */
  .book-btn {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }

  /* Animation */
  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
  }


/* ---------------------- Pop-up CSS Section End ---------------------- */

/* ---------------------- Banner CSS Section Start ---------------------- */
#banner {
  width: 100%;
  height: 100vh;
}

.hero-slider .item {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.hero-slider .item.one {
  background-image: url(../img/slider1.jpg);
}

.hero-slider .item.two {
  background-image: url(../img/slider2.jpg);
}

.hero-slider .item.three {
  background-image: url(../img/slider3.jpg);
}

.hero-slider .item.four {
  background-image: url(../img/slider4.jpg);
}

.hero-slider .overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 50px;
  margin-bottom: 10px;
  color: var(--lightGreen);
}

.hero-title span {
  color: var(--themeColor);
}

.hero-subtitle {
  width: 80%;
  margin: 0 auto;
  font-size: 16px;
}

#banner .common-btn {
  background: #00000089;
  border: 2px solid var(--themeColor);
  color: var(--themeColor);
  margin: 40px auto 0;
  transition: all 0.5s;
}

#banner .common-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
  transition: all 0.5s;
}
/* ---------------------- Banner CSS Section End ---------------------- */

/* ---------------------- About Us CSS Section Start ---------------------- */
#about {
  padding: 100px 0;
  background: var(--lightGreen);
}

.section-header h3 span {
  font-weight: 400;
  color: var(--themeOrange);
}

#about .about-img-box {
  width: 100%;
  height: 400px;  
}

#about .about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#about .about-text-info {
  text-align: justify;
}


/* ---------------------- About Us CSS Section End ---------------------- */

/* ---------------------- 360 Degree View of our property CSS Section Start ---------------------- */
#view360degree {
  padding: 100px 0 0;
}

.panorama {
  margin: 0 auto;
  cursor: all-scroll;
  width: auto;
  height: 760px;
  padding-bottom: 30%;
  background-image: url(../img/view360degree.jpeg);
  background-size: cover;
  background-position: 50% 0;

  transition: background-position 1s linear;
}

/* ---------------------- 360 Degree View of our property CSS Section End ---------------------- */

/* ---------------------- Photo Gallery CSS Section Start ---------------------- */
#gallery {
  padding: 100px 0;
  background: var(--lightGreen);
}

#gallery .img-box {
  width: 100%;
  height: 280px;
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}

#gallery .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightboxpreview {
  transition: all .3s linear;
  padding-top: 60%;
  cursor: pointer;
  background-size: cover;
}

.lightbox-content {
  max-height: 75svh;
  height: 75svh;
}

.lightbox-close {
  cursor: pointer;
  margin-left: auto;
  position: absolute;
  right: -30px;
  top: -30px;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.modalscale {
  transform: scale(0);
  opacity: 0;
}

.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
  transition: all .4s ease-in-out;
}

.lightbox_img_wrap {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.lightbox-enabled:hover {
  transform: scale(1.1)
}

.lightbox-enabled {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
  cursor: pointer;
}

.lightbox-container {
  width: 100svw;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.lightbox-container.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image-wrapper {
  display: flex;
  transform: scale(0);
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
  transform: scale(1);
}

.lightbox-btn,
#close {
  color: white;
  z-index: 9999999;
  cursor: pointer;
  position: absolute;
  font-size: 50px;
}

.left {
  left: 50px;
}

.right {
  right: 50px;
}

#close {
  top: 50px;
  right: 50px;
}

.lightbox-image {
  width: 100%;
  max-height: 95vh;
  object-fit: cover;
}

@keyframes slideleft {
  33% {
    transform: translateX(-300px);
    opacity: 0;
  }

  66% {
    transform: translateX(300px);
    opacity: 0;
  }
}

.slideleft {
  animation-name: slideleft;
  animation-duration: .5s;
  animation-timing-function: ease;
}

@keyframes slideright {
  33% {
    transform: translateX(300px);
    opacity: 0;
  }

  66% {
    transform: translateX(-300px);
    opacity: 0;
  }
}

.slideright {
  animation-name: slideright;
  animation-duration: .5s;
  animation-timing-function: ease;
}
/* ---------------------- Photo Gallery CSS Section End ---------------------- */

/* ---------------------- Our Packages CSS Section Start ---------------------- */
#packages {
  padding: 100px 0;
}
/* ---------------------- Our Packages CSS Section End ---------------------- */

/* ---------------------- Facilities CSS Section Start ---------------------- */
#facilities {
  padding: 100px 0;
  background: var(--lightGreen);
}

#facilities .facilities-img {
  width: 100%;
  height: 380px;
  position: relative;
  margin: 0 auto;
}

#facilities .swiper {
  width: 360px;
  height: 360px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

#facilities .swiper-slide {
  background-position: center;
  background-size: cover;
}

#facilities .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#facilities .facilities-info .title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

#facilities .facilities-info .facility-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#facilities .facilities-info .facility-list ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

#facilities .facilities-info .facility-list ul li img {
  width: auto;
  height: 15px;
  margin-right: 10px;  
}
/* ---------------------- Facilities CSS Section End ---------------------- */

/* ---------------------- Visited Place CSS Section Start ---------------------- */
#visited-place {
  padding: 100px 0;
}

#visited-place .visited-card {
  width: 100%;
  height: auto;
  background: var(--lightGreen);
  box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.10);
}

#visited-place .visited-card .card-img {
  width: 100%;
  height: 250px;  
}

#visited-place .visited-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#visited-place .visited-card .card-info {
  padding: 20px 20px;
}

#visited-place .visited-card .card-info .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--themeOrange);
  margin-bottom: 10px;
  position: relative;
}

#visited-place .visited-card .card-info .title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--themeOrange);
  border-radius: 50px;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* #visited-place .visited-card .card-info .card-details {
  font-size: 16px;
  color: var(--paraTextcolor);
  margin-bottom: 10px;
  text-align: justify;
  max-height: 92px;
  overflow: hidden;
  transition: max-height 0.4s ease;
} */

#visited-place .visited-card .card-info .card-details {
  font-size: 16px;
  color: var(--paraTextcolor);
  margin-bottom: 10px;
  text-align: justify;
  max-height: 92px;   /* collapsed height */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

#visited-place .visited-card .card-info .card-details.show {
  max-height: 500px;
}

#visited-place .visited-card .card-info .see-more-btn {
  width: 120px;
  height: 40px;
  font-size: 14px;
  margin-top: 20px;
  color: var(--themeOrange);
}

#visited-place .visited-card .card-info .see-more-btn:hover {
  width: 120px;
  height: 40px;
  font-size: 14px;
  margin-top: 20px;
  color: var(--darkBlack);
}
/* ---------------------- Visited Place CSS Section End ---------------------- */

/* ---------------------- Contact Us CSS Section Start ---------------------- */
#contact  {
  padding: 100px 0;
  background: var(--lightGreen);
}

#contact .footer-info .brand {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

#contact .footer-info .brand img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#contact .footer-info .contact-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#contact .footer-info .contact-info ul li {
  padding-block: 10px;
}

#contact .footer-info .contact-info ul li a{
  font-size: 18px;
  color: var(--darkBlack);
  font-weight: 600;
}

#contact .footer-info .contact-info ul li ion-icon {
  width: 40px;
  color: var(--themeOrange);
  margin-right: 10px;
  font-size: 20px;
}

#contact .footer-info .social-media {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

#contact .social-media a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--whiteColor);
    transition: all 0.5s;
    position: relative;
    z-index: 96;
}

#contact .social-media a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--themeOrange);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s;
}

#contact .social-media a:hover {
    color: var(--themeOrange);
    transition: all 0.5s;
}

#contact .social-media a:hover::before {
    color: var(--themeWhite);
    transform: scale(0);
    transition: all 0.5s;
}

#contact .heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

#contact .Useful-link ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#contact .Useful-link ul li {
  padding-block: 6px;
}

#contact .Useful-link ul li a{
  font-size: 16px;
  font-weight: 500;
  color: var(--textcolor);
}

#contact .Useful-link ul li a:hover{
  color: var(--themeColor);
}

#contact .common-btn {
  width: 140px;
  height: 45px;
  background: var(--themeColor);
  color: var(--darkBlack);
  margin-top: 30px;
}

#contact .location {
  width: 100%;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
}

#contact .location iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ---------------------- Contact Us CSS Section End ---------------------- */

/* ---------------------- Legal CSS Section Start ---------------------- */
#legal {
    width: 100%;
    height: 40px;
    background: var(--themeColor);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

#legal .legal-msg {
    text-align: center;
    line-height: 0;
    color: var(--themebgColor);
}

/* ---------------------- Legal CSS Section End ---------------------- */

/* ---------------------- Scroll-Top CSS Section Start ---------------------- */
#scroll-top {
    width: 40px;
    height: 40px;
    background: var(--themeColor);
    border: 1px solid var(--textColor);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 30px;
    bottom: 30px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s;
    z-index: 9999;
}

#scroll-top:hover {
    background: var(--themeOrange);
    transition: all 0.5s;
}

#scroll-top:hover .arrow-w {
    opacity: 0;
    transition: all 0.5s;
}

#scroll-top:hover .arrow-b {
    opacity: 1;
    transition: all 0.5s;
}

#scroll-top.active {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.5s ease;
}

#scroll-top img {
    position: absolute;
}

#scroll-top img.arrow-b {
    opacity: 0;
    transition: all 0.5s;
}

/* ---------------------- Scroll-Top CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */

/* ---------------------- Unnamed CSS Section Start ---------------------- */
/* ---------------------- Unnamed CSS Section End ---------------------- */
/* =========================== Untitle Page End =========================== */

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */