@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "Rajdhani", sans-serif;
}
:root {
  --nav-color: #1D1D1D; 
  --orange-color: #FF4D2B;
  --nav-hover-color: #FF4D2B;
  --fff-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --dark-blue-color: #222222;
  --site-gray-color: #e5e5e5;
  --hover-color:#07aecc;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
body, ul, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
input:focus, select:focus, .form-check-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;

}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 1);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #e2e2e2;
}

.header .header-container {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  transition: all 0.5s;
  position: relative;
}
.navmenu i.mobile-nav-toggle {
    display: none;
}
.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 500;
  color: var(--contrast-color);
}

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .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: var(--nav-hover-color);
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
.navmenu i.mobile-nav-toggle {
    display: block;
}
  .mobile-nav-toggle {
    color: var(--nav-color);
    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;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    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;
    text-decoration: none;
  }
  .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, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--orange-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    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 i.mobile-nav-toggle.bi-x {
    transform: rotate(45deg);
  }
  .navmenu i.bi-x:before {
    content: "+";
    font-weight: 500;
    font-size: 30px;
    color: #fff;
    transform: rotate(90deg);
  }

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

/*--------------------------------------------------------------
# Global Breadcrum
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 45px 0;
  position: relative;
  background-image: url(/uploads/cruise-ass/urban-skyline.jpg);
    background-size: cover;
    background-position: center center;
}
.page-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #212529ba;
}
.light-background {
  --background-color: #fafafa;
  --surface-color: #ffffff;
}
.page-title h1 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1;
}
.page-title nav.breadcrumbs {
  position: relative;
  z-index: 1;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
  color: #c3c1c1;
}
.page-title .breadcrumbs ol li a {
  color: #ee4a34;
  text-decoration: none;
  font-weight: 500;
}
.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: 
color-mix(in srgb, var(--default-color), transparent 70%);
}
.page-pagination {
  margin-top: 50px;
}
.page-pagination ul.pagination {
  justify-content: flex-end;
  margin-bottom: 0;
  gap: 10px;
}
.page-pagination ul.pagination .page-link {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #b1a7a6;
}
.pagination li.page-item:last-child a.page-link {
  width: auto;
  height: auto;
  border-radius: 4px;
  border-color: var(--orange-color);
  color: var(--orange-color);
}
.page-pagination ul.pagination li.page-item:first-child span.page-link {
  width: auto;
  height: auto;
  border-radius: 4px;
}
.page-pagination ul.pagination li.page-item.active span.page-link {
  background: var(--orange-color);
  border-color: var(--orange-color);
  color: #fff;
}
.page-pagination ul.pagination .page-link:hover {
  background: #ee4a340f;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #071a1c;
  background-image: none;
  color: #ffffff;
  padding: 60px 0 0;
}

.footer-coll {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Logo + Description */
.footer-logo {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.8;
  color: #b8c3c2;
}

/* Links Section */
.footer-links h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 25px;
  height: 3px;
  background-color: #ff4926;
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  margin-top: 20px;
    padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #d7dddd;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links ul li i {
    color: #ffffff73;
    font-size: 13px;
    margin-right: 8px;
}

.footer-links ul li a:hover {
  color: #ff4926;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 40px;
  background-color: #061415;
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b8c3c2;
  font-size: 14px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

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

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
.bg-FBFBFB {
    background: #FBFBFB;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    overflow: hidden;
    padding: 0px;
}
.hero .hero-wrapper {
    padding: 50px 80px 260px;
    background-image: url(/uploads/default/desi-cruise-banner.jpg);
    background-size: cover;
    position: relative;
}
.hero .hero-wrapper:after {
    content: "";
    position: absolute;
    background-image: linear-gradient(to right, #092b3b, #09090900);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.8;
}
.hero-wrapper .hero-content {
    position: relative;
    z-index: 1;
}
.hero .hero-wrapper .hero-content h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}
.orange {
    color: var(--orange-color);
}

.hero .hero-wrapper .hero-content p {
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1.6;
    color: #fff;
    font-family: 'Roboto';
}

.hero .feature-cards-wrapper {
  margin-top: -40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

/*--------------------------------------------------------------
# Filter Section
--------------------------------------------------------------*/

.search-bar {
  display: flex;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.filter-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 0;
  width: 100%;
    position: relative;
}
.filter-box i {
    font-size: 24px;
    color: #08262C;
    opacity: .5;
    position: absolute;
    left: 15px;
}
.search-bar .search-loc {
    width: 30%;
}
.search-bar .search-date {
    width: 25%;
}
.search-bar .search-cat {
    width: 30%;
}
.filter-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 10px 10px 50px;
    position: relative;
}
.filter-content label {
  font-size: 13px;
  color: #888;
    letter-spacing: 1px;
}
.filter-content select, .filter-content input {
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--nav-color);
    outline: none;
    background: transparent;
    padding: 5px 0 5px;
}
.search-btn {
    background: var(--orange-color);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    padding: 14px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 1s ease;
    height: 72px;
    letter-spacing: 1px;
}
.search-btn:hover {
    background: var(--hover-color);
}
.search-btn i {
  font-size: 18px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
section.about-sec {
    padding-top: 30px;
}
.about-title {
    text-align: center;
    padding: 20px 0 0px;
}
.about-title h3 {
    font-size: 26px;
    color: var(--nav-color);
    margin-bottom: 20px;
}
.about-title h2, .sec-title h4 {
    font-size: 53px;
    font-weight: 700;
    margin-bottom: 0;
}
.about-title h4 {
    font-size: 53px;
    font-weight: 600;
    margin-bottom: 20px;
}
.about-title p {
    line-height: 28px;
    max-width: 1050px;
    margin: 0 auto;
}
.events-coll {
    display: flex;
    gap: 30px;
}
.business-list-sec .business-coll {
  justify-content: space-between;
  flex-wrap: wrap;
}
.events-coll .event-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.events-coll .event-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: .5s 
    linear;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
}
.event-img img.back-img {
  opacity: 0;
}
.event-card .event-img img.back-img {
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
}
.event-card:hover .event-img img.back-img {
  opacity: 1;
  visibility: visible;
  transform: scale(1.1);
}
.events-coll .event-img span.wish-list {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(255, 255, 255, 0.5);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.events-coll .event-img span.wish-list img {
    width: 20px;
    height: 20px;
}
.events-coll .event-img span.cat {
  position: absolute;
  bottom: 10px;
  left: 10px;
  border-radius: 10px;
  z-index: 2;
}
.events-coll .event-img span.event-cat a {
  padding: 6px 10px;
  color: var(--nav-color);
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}
.event-card:hover .event-img img {
  transform: scale(1.1);
}
span.event-cat {
    background: #FFF7C3;
}
.business-list-sec .event-img span.business-cat {
    background: #E9FFF1;
    color: #0B7285;
}
.business-list-sec .event-img span.business-cat a {
  display: inline-block;
  padding: 6px 10px;
  font-size: 14px;
  text-decoration: none;
  color: #0B7285;
}
.event-card {
    padding: 10px 10px 15px;
    box-shadow: 0 0 5px 3px #e8e8e8;
    border-radius: 12px;
    width: 25%;
    background: #fff;
}
.event-card .event-details {
    padding: 10px 0px 0;
}
.event-card .event-details h3 {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
.event-card .event-details h3 a {
  color: var(--nav-color);
  text-decoration: none;
}
.event-details .date-time {
    display: flex;
    gap: 20px;
}
.event-details .date-time .event-time {
    display: flex;
    gap: 6px;
}
.event-details .date-time .event-time h4 {
    font-size: 14px;
    font-family: 'Roboto';
    font-weight: 400;
    margin: 0;
}
.event-card .event-details p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
    opacity: 0.7;
}
.sec-title {
    text-align: center;
    margin-bottom: 40px;
}
.sec-title p {
    font-size: 24px;
    opacity: 0.7;
}
section.upcome-event-sec {
    padding: 50px 0 60px;
}
.event-filter {
    padding: 30px 0;
    background: #fff;
}
.upcome-event-sec .filter-card {
    background: #f6f6f6;
    padding: 50px 0;
    margin-top: -50px;
}
section.event-page-layout .filter-card {
    background: #fff;
    padding-bottom: 0;
}
.upcome-event-sec .events-coll {
    flex-wrap: wrap;
    justify-content: flex-start;
}
.upcome-event-sec .events-coll .event-card, .business-list-sec .business-coll .event-card {
    width: 31.7%;
}
.business-coll .event-details .bus-loc {
    display: flex;
    align-items: center;
    gap: 10px;
}
.business-coll .event-details .bus-loc h3 {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}
.business-coll .event-details .bus-loc i {
    color: #0B7285;
}
.business-list-sec .business-list-btn, .journey-sec .business-list-btn {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.business-list-sec .business-list-btn a, .journey-sec .business-list-btn a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    padding: 15px 26px;
    text-align: center;
    background: #FF4D2B;
    background: linear-gradient(to right, var(--orange-color) 50%, var(--hover-color) 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    transition: all 0.5s ease;
}
.business-list-sec .business-list-btn a:hover, .journey-sec .business-list-btn a:hover {
    background-position: right bottom;
}
section.journey-sec {
    padding: 50px 0 60px;
}
.journey-colls {
    display: flex;
    gap: 30px;
}
.journey-colls .journey-card .event-img img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}
.journey-colls .journey-card a {
    position: relative;
    display: block;
}
.journey-colls .journey-card .event-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    z-index: 99;
    gap: 20px;
}
.journey-colls .journey-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.journey-colls .journey-card a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-image: linear-gradient(to bottom, #00000000, #1F2937);
}
.journey-colls .journey-card .event-details .details-coll h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Roboto';
}
.journey-colls .journey-card .event-details .details-coll p {
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto';
    margin: 0;
}
.journey-colls .journey-card .event-details .btn-coll {
    background: #FF4D2B;
    width: 35px;
    height: 35px;
    display: flex;
    border-radius: 50%;
    transform: rotate(-45deg);
    transition: all 0.5s ease;
}
.journey-card:hover .event-details .btn-coll {
    background: var(--hover-color);
    transform: rotate(0deg);
}
.colls-2 .journey-card {
    width: 50%;
}
.colls-3 .journey-card {
    width: 33.33%;
}
.journey-sec .colls-2 {
    margin-bottom: 30px;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
  background-color: #f9f9f9;
}
.contact-coll {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 48px;
  font-weight: 500;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.info-item i {
    background: #ff6a4a;
    color: white;
    font-size: 20px;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-item:hover i {
    background: #fff;
    color: #ff6a4a;
    border: 1px solid;
}

.info-item h4 {
  font-size: 14px;
  color: #666;
}

.info-item p {
  font-size: 16px;
  color: var(--nav-color);
  font-weight: 500;
  margin-bottom: 0;
}
.info-item p a{
  color: var(--nav-color);
  text-decoration: none;
}
.social h4 {
    margin-top: 30px;
    font-size: 30px;
    color: var(--nav-color);
    font-weight: 700;
    font-family: 'Roboto';
    margin-bottom: 20px;
}
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.social-icons i {
  font-size: 22px;
  color: #ff4926;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icons i:hover {
  color: var(--nav-color);
}

/* RIGHT SIDE */
.contact-form {
  flex: 1;
  display: flex;
  justify-content: center;
}
.form-box {
    background: white;
    border: 28px solid #ff4926;
    border-radius: 40px;
    padding: 30px;
    width: 100%;
}
.form-box h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--nav-color);
  margin-bottom: 25px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-box .form-row {
  display: flex;
  gap: 15px;
}

.form-box input, .form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  background-color: #f2f2f2;
  border-radius: 8px;
  font-size: 15px;
  color: var(--nav-color);
  font-family: 'Poppins', sans-serif;
}
.form-box input:focus-visible, .form-box textarea:focus-visible {
  border: 1px solid var(--nav-color);
  outline: var(--nav-color);
}
.form-box textarea {
  height: 100px;
  resize: none;
}

.form-box button {
    background-color: var(--nav-color);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin: 0 auto;
    min-width: 390px;
}
.form-box button:hover {
    background-color: var(--hover-color);
    color: #fff;
}
/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
section#hero.section {
  padding: 0;
  background-color: #fbfbfb;
}
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}
.history .about-content h2 {
  margin-bottom: 20px;
  font-size: 53px;
  font-weight: 600;
}

.history .about-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.history .about-image {
  position: relative;
}

.history .about-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.history .about-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .history .about-image .mission-vision {
    grid-template-columns: 1fr;
  }
}
.history .about-image .mission-vision .mission,
.history .about-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.history .about-image .mission-vision .mission h3,
.history .about-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}
.history .about-image .mission-vision .mission h3:before,
.history .about-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 5px;
  height: 20px;
  background-color: #ee4a34;
  border-radius: 3px;
}
.history .about-image .mission-vision .mission p,
.history .about-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}
.history .core-values {
  margin-top: 30px;
}
.history .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}


.wht-hapn-sec .core-values .value-card {
  background-color: var(--fff-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.wht-hapn-sec .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.wht-hapn-sec .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ee4a340f;
  margin-bottom: 20px;
  padding: 15px;
}
.value-icon img.img-fluid {
  opacity: 0.8;
}
.wht-hapn-sec .core-values .value-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Roboto';
}
.wht-hapn-sec .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}
.wht-hapn-sec {
  background: #f1f5f7;
}
.core-values h2 {
  font-size: 50px;
  margin-bottom: 40px;
}
.about-p-img {
  margin-top: 30px;
}
.about-p-img img.img-fluid {
  border-radius: 30px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
section#contact {
  background-color: #f9f9f9;
}
.contact .contact-main-wrapper {
  position: relative;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.contact .map-wrapper {
  margin-top: 70px;
}
.contact .map-wrapper iframe {
  min-height: 370px;
  border-radius: 16px;
  width: 100%;
}
.contact .contact-content {
  display: flex;
  gap: 30px;
}
.contact .contact-cards-container {
  display: flex;
  gap: 15px;
  width: 45%;
  flex-direction: column;
}
.contact .contact-card a {
    color: var(--default-color);
    text-decoration: none;
}

.contact .contact-card {
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: min-content;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: #ef68471f;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--orange-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 55%;
  height: min-content;
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}
.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 25px;
  width: 5px;
  background-color: var(--orange-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: #f5f5f5;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}
#loader {
	position: fixed;
	top: 0;
	text-align: center;
	left: 0;
	background: rgba(234,234,234,.7);
	width: 100%;
	height: 100%;
	z-index: 999999999;
	display: none;
}
#loader img {
	top: 50%;
	text-align: center;
	left: 45%;
	position: fixed;
}
.contact .contact-form-container .php-email-form .form-control:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}
.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.contact .contact-form-container .php-email-form button {
  background-color: var(--orange-color);
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.coll-title h2 {
  font-size: 50px;
}
.coll-title h2 {
  font-size: 45px;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Blogs Page
--------------------------------------------------------------*/
.blog-listing {
  flex-wrap: wrap;
}
.blog-listing .event-card {
  width: calc(33.33% - 23px);
}
.blog-listing .event-img img {
  height: 260px;
}

/*--------------------------------------------------------------
# Single blog details Page
--------------------------------------------------------------*/
section.single-blog-details {
  padding-top: 0;
}
.single-blog-details .blog-title {
  text-align: center;
  margin-bottom: 40px;
}
.single-blog-details .blog-image {
  text-align: center;
}
.single-blog-details .blog-image img.b-img {
  width: 100%;
  border-radius: 0px;
  height: 500px;
  object-fit: cover;
}
.single-blog-details .blog-title h2.title {
  font-family: 'Roboto';
  font-size: 48px;
  font-weight: 600;
}
.single-blog-details .blog-title p {
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto;
  padding: 0 70px;
}
.single-blog-content .blog-content {
  background: #fff;
  margin-top: -100px;
  position: relative;
  padding: 40px 20px 30px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.single-blog-content .blog-table-content {
  display: flex;
  gap: 20px;
}
.single-blog-content .blog-table-content .table-content {
  min-width: 330px;
  position: sticky;
  top: 110px;
  height: min-content;
}
.table-content-details .blog-sec-details h3.sec-title {
  font-size: 26px;
  font-family: 'Roboto';
  text-align: left;
  margin-bottom: 15px;
}
.table-content-details .blog-sec-details img.sec-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}
.table-content-details .blog-sec-details p {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}
.table-content .table-title h3 {
  font-size: 20px;
  font-family: 'Roboto';
  margin-bottom: 15px;
}
.table-content .table-content-list ul.ul-list {
  padding: 0;
  margin-bottom: 0;
}
.table-content .table-content-list ul.ul-list li {
  list-style: none;
  margin-bottom: 8px;
}
.table-content .table-content-list ul.ul-list a {
  font-size: 16px;
  color: var(--heading-color);
  text-decoration: none;
}
.table-content .table-content-list ul.ul-list li.active a {
  color: var(--nav-hover-color);
}
.table-content .table-content-list {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  border-radius: 15px;
}
.blog-sec-details .table-ul h4 {
  font-family: 'Roboto';
  font-size: 18px;
}
.table-content-details .blog-sec-details {
  margin-bottom: 40px;
}
.table-content-details .blog-sec-details:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Record-not-found Section
--------------------------------------------------------------*/
.record-not-found {
  text-align: center;
}
.record-not-found .not-found-text h3 {
  font-size: 30px;
  font-family: 'Roboto';
  opacity: 0.5;
}
.record-not-found .not-found-text p {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.6;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
#main-faq {
  max-width: 1030px;
  margin: 50px auto;
}
#main-faq #faq .card {
  margin-bottom: 30px;
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
}
#main-faq #faq .card .card-header {
  border: 0;
  padding: 0;
}
#main-faq #faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  background: #ffffff;
  color: var(--nav-color);
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
}
#main-faq #faq .card .card-header .btn-header-link:focus {
  box-shadow: none;
}
#main-faq #faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: 'FontAwesome';
  font-weight: 900;
  float: right;
  font-size: 18px;
}
#main-faq #faq .card .card-header .btn-header-link.collapsed {
  background: #ffffff;
  color: var(--nav-color);
}
#main-faq #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
}
#main-faq #faq .card .collapsing {
  background: #ffffff;
  line-height: 30px;
}
#main-faq #faq .card .collapse {
  border: 0;
}
#main-faq #faq .card .collapse.show {
  background: #ffffff;
  line-height: 30px;
  color: var(--nav-color);
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Privacy Policy and Term and Condition Start
--------------------------------------------------------------*/
.pri-main-title {
  text-align: center;
  margin-bottom: 50px;
}
.pri-main-title h2 {
  font-size: 40px;
  font-weight: 600;
  font-family: 'Roboto';
  margin-bottom: 10px;
}
.pri-main-title p {
  font-size: 25px;
  font-weight: 600;
  color: var(--nav-hover-color);
}
.privacy-container {
  box-shadow: 0px 0px 9px 2px #f4f4f4;
  padding: 30px 30px;
  border-radius: 20px;
}
.privacy-section h3 {
  font-weight: 700;
  font-size: 25px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.privacy-section h3:after {
  content: "";
  position: absolute;
  background: var(--nav-hover-color);
  width: 30px;
  height: 4px;
  left: 0;
  bottom: 0;
}
.privacy-section ul.list-ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.privacy-section ul.list-ul li {
  margin-bottom: 5px;
}
.privacy-section ul.list-ul li:last-child {
  margin-bottom: 0;
}
.privacy-section p:last-child {
  margin-bottom: 0;
}
.privacy-container .privacy-section {
  margin-bottom: 40px;
}
.privacy-container .privacy-section:last-child {
  margin-bottom: 0;
}
.privacy-section ul.list-ul li a, .privacy-section p a {
  color: var(--nav-hover-color);
}


/*========================
	BLOGS DETAILS START
=========================*/

.event-details-single .tab-content .wsus__blog_category {
    box-shadow: none;
}
.event-details-single .wsus__main_blog_header {
    text-transform: capitalize;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 23px;
    background: var(--nav-color);
    color: #fff;
    text-align: center;
    font-weight: 600;
}
.event-details-single .wsus__main_blog_header span {
  margin-right: 20px;
  font-size: 15px;
  color: var(--site-white-color);
}
.event-details-single .wsus__main_blog_header span i {
    color: #fff;
    margin-right: 5px;
    font-size: 21px;
}
.event-details-single .tab-content .wsus__blog_category .ticket-wrap {
    margin: 0 !important;
    padding: 10px;
}
.event-details-single .tab-content .wsus__blog_category .ticket-wrap small.tkt-price-wrp {
    font-weight: 600;
    font-size: 18px;
}
.event-details-single .tab-content .wsus__blog_category .ticket-wrap:nth-child(odd) {
    background: #f9f9f9;
}
.event-details-single .tab-content .wsus__blog_category .ticket-wrap:hover {
    background: #e8f8fb;
}
.event-details-single b.tkt-title {
    font-weight: 600;
}
.event-details-single .tktendstatus {
    text-align: right;
    font-size: 13px;
    margin-top: 10px;
    color: #365f6d;
}
.event-details-single .tkt-quantity-select {
    text-align: right;
}
.event-details-single .tab-content .wsus__blog_category .ticket-wrap span.select-wrapper select.custom-select {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #bbb8b8;
    min-width: 70px;
}
.event-details-single .wsus__blog_sidebar #cartSections .tktdetlswrp,
.events-ticket-update .wsus__blog_search .newtktwrp .tktdetlswrp,
.wsus__blog_search .tktdetlswrp {
    display: flex;
    justify-content: space-between;
    gap:10px;
}
.wsus__blog_sidebar #cartSections form .newtktcta input#btn_paynow,
.event-details-single .wsus__blog_sidebar .wsus__blog_category input.see_btn,
.events-ticket-update .wsus__blog_search .newtktcta input.common_btn {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nav-hover-color);
    margin-top: 10px;
    color: #fff;
    border-radius: 40px;
    width: 100%;
    text-transform: capitalize;
    border: 1px solid;
}
.wsus__blog_sidebar #cartSections .tktdetlswrp .tktsprices,
.events-ticket-update .wsus__blog_search .newtktwrp .tktdetlswrp .tktsprices,
.wsus__blog_search .tktdetlswrp .tktsprices {
    font-weight: 600;
}

.wsus__main_forum_header {
  text-transform: capitalize;
  border-radius: 5px;
  padding: 5px 20px;
  background: #bf404030 !important;
  margin-bottom: 23px;
}
.card .description {
  margin: 5px 0px;
  color: #999;
}
.wsus__main_forum_header span {
  margin-right: 20px;
  font-size: 15px;
  color: #bf4040;
}

.wsus__main_forum_header span i {
  color: #bf4040;
  margin-right: 5px;
}

.wsus__main_blog h2 {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 15px 0px 30px 0px;
}

.wsus__main_blog h5,
.wsus__comment_area h4,
.wsus__post_comment h4,
.wsus__blog_search h4,
.wsus__blog_category h4,
.wsus__blog_post h4,
.wsus__popular_tag h4,
.wsus_blog_calender h4,
#wsus__faq h4,
.wsus__forget_area h4,
.wsus__change_password h4,
.wsus__pro_det_vendor_text h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.wsus__blog_list_text ul {
  padding-left: 35px;
  margin: 20px 0px;
}

.wsus__blog_list_text ul li {
  font-size: 16px;
  font-weight: 400;
  color: #797979;
  margin: 10px 0px;
  position: relative;
}

.wsus__blog_list_text ul li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: normal;
  position: absolute;
  content: "\f14a";
  top: 1px;
  left: -24px;
  color: #2a9cf5;
  font-size: 14px;
  border: none;
}

body .wsus__share_blog {
    display: flex;
    align-items: center;
    background: var(--nav-color);
    padding: 20px 10px;
    border-radius: 5px;
    margin: 30px 0px;
    justify-content: center;
    color: #fff;
    text-transform: capitalize;
    border: 1px solid #dddddd;
}

.wsus__share_blog p {
  text-transform: capitalize;
  color: #353535;
  font-size: 20px;
  font-weight: 400;
  margin-right: 20px;
}

.wsus__share_blog ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 0 10px;
}
.wsus__share_blog ul li {
    margin: 0 5px;
}
.wsus__share_blog ul li a {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 32px;
    color: #353535;
    margin-left: 5px;
    font-size: 17px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    background: var(--site-white-color);
    display: inline-block;
    margin: 0;
    background: var(--nav-color);
    color: #fff;
    border: 1px solid #fff;
}
.wsus__share_blog ul li a:hover {
    color: var(--hover-color);
    border: 1px solid var(--hover-color);
}
.wsus__related_post {
  margin-bottom: 25px;
}

.wsus__related_post .wsus__single_blog {
  margin: 0px 12px;
  width: auto;
}

.wsus__blog_img {
  display: block;
  width: 100%;
  height: 100%;
}

.wsus__related_post .slick-dots {
  display: flex;
  justify-content: center;
}

.wsus__related_post .slick-dots li button {
  font-size: 0;
  width: 30px;
  height: 8px;
  background: #76c3ff;
  border-radius: 50px;
  margin: 0 5px;
  outline: 0;
  border: none;
}
.wsus__comment_area .wsus__main_comment .wsus__comment_img {
    width: auto;
}
.wsus__comment_area .wsus__main_comment .wsus__comment_img img.img-fluid {
    min-width: 30px;
    width: 30px;
    height: 30px;
}
.wsus__comment_area .wsus__main_comment {
    border-bottom-color: #ddd;
}
.wsus__related_post .slick-dots li.slick-active button {
  background: #0086ee;
}

.wsus__comment_area h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wsus__main_comment {
  overflow: hidden;
  margin-top: 20px;
  border-bottom: 1px solid #afdcff;
  padding-bottom: 20px;
}

.wsus__comment_img {
  width: 10%;
  float: left;
}

.wsus__comment_img img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  min-width: 60px;
}

.wsus__comment_text {
  width: 90%;
  float: left;
  padding-left: 10px;
}

.wsus__comment_text h6 {
  text-transform: capitalize;
  font-size: 17px;
  color: #0b2c3d;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wsus__comment_text h6 span {
  color: #0b2c3d;
  font-size: 14px;
}

.wsus__comment_text p {
  font-size: 15px;
}

.wsus__comment_text a {
  text-transform: capitalize;
  background: #2a9cf5;
  padding: 2px 10px 4px 10px;
  border-radius: 3px;
  color: var(--site-white-color);
  font-size: 13px;
  margin-top: 10px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.wsus__comment_text a:hover {
  background: #0363ae;
}

.replay .accordion-body {
  padding: 0;
  padding-top: 15px;
}

.replay .wsus__riv_edit_single {
  margin-bottom: 15px;
}

.replay .common_btn {
  text-transform: capitalize;
  padding: 5px 10px;
  font-weight: 400;
}

.wsus__com_replay {
  margin-left: 60px;
}

.wsus__post_comment input,
.wsus__post_comment textarea {
  font-size: 16px;
  font-weight: 400;
  color: #0b2c3d;
}

.wsus__post_comment button {
  border: none;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__blog_search {
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  background: var(--site-white-color);
  border-radius: 10px;
}

.wsus__blog_search form {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.hc-listing-inn ul img.width-auto, .home_2 header .wsus__call_area, .home_2 header .wsus__icon_area, .wsus__blog_search label input, .wsus_menu_cat_droapdown li a i {
    width: auto;
}
.wsus__blog_search .see_btn {
    border-radius: 50px;
    border: 1px solid var(--light-orange-color);
}
.forum-search-heading .see_btn, .wsus__blog_search button {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
}
.wsus__con_form_single input, .wsus__con_form_single textarea,
.wsus__blog_search form .forum-search-heading .form-control {
    width: 100%;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    margin-bottom: 10px;
    resize: none;
    border: 1px solid #ced4da;
}
.wsus__blog_search form .forum-search-heading .form-control {
    margin-bottom: 4px;
    appearance: auto;
}
.wsus__blog_search form .forum-search-heading .form-control:focus,
.wsus__con_form_single input:focus, .wsus__con_form_single textarea:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #1d1d1d;
}
.wsus__blog_search input {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  cursor: pointer;
}
.serach-blog input[type="text"] {
  border: 1px solid var(--site-gray-color);
  padding: 10px 72px 10px 10px;
  border-radius: 6px;
}
.event-details-single .wsus__post_comment {
    margin: 30px 0;
    padding: 20px 20px 30px;
    border-radius: 5px;
    background: #efefef;
}
.event-details-single .wsus__main_blog .wsus__post_comment form .wsus__single_com textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd;
}
.event-details-single .wsus__main_blog .wsus__post_comment form .wsus__single_com textarea:focus-visible {
    outline: none;
}
.event-details-single .wsus__main_blog .wsus__post_comment form .wsus__single_com {
    margin-bottom: 10px;
}
.event-details-single .wsus__main_blog .wsus__post_comment h4 {
    margin: 10px 0 20px;
}
.event-details-single .wsus__main_blog .wsus__post_comment form button.common_btn {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nav-hover-color);
    margin-top: 10px;
    color: #fff;
    border-radius: 40px;
    text-transform: capitalize;
    padding: 0 30px;
}
.wsus__blog_category {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.wsus__main_blog .nav-link.active {
  border-bottom-left-radius: 0;
}
.wsus__main_blog .wsus__blog_category h4 {
  margin: 20px 0;
  background: linear-gradient(135deg, var(--dark-red-color), var(--light-orange-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wsus__blog_category ul li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #353535;
    width: 100%;
    text-decoration: none;
}

.wsus__blog_category ul li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}
.wsus__comment_area .see_btn {
  padding-right: 34px;
}
.wsus__comment_area .see_btn i {
  font-size: 10px;
}
.add-comment-new a.btn.see_btn {
    font-size: 16px !important;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--nav-hover-color);
    font-weight: 500;
}
.wsus__blog_post {
  margin-bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  padding: 20px 20px 1px 20px;
}

.wsus__blog_post_single {
  display: flex;
  margin: 20px 0px 20px 0px;
}

.wsus__blog_post_img {
  width: 25%;
  border-radius: 5px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.wsus__blog_post_img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  object-fit: cover;
}

.wsus__blog_post_text {
  width: 75%;
  padding-left: 10px;
  margin-top: -5px;
}

.wsus__blog_post_text a {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__blog_post_text p {
  font-size: 14px;
}

.wsus__blog_post_text p span {
  font-size: 14px;
  margin-right: 15px;
  display: block;
}

.wsus__blog_post_single a:hover {
  color: #2a9cf5;
}

.wsus__popular_tag {
  overflow: hidden;
  margin-bottom: 30px;
}

.wsus__popular_tag ul li {
  float: left;
}

.wsus__popular_tag ul li a {
  border: 1px solid #ddd;
  padding: 5px 10px;
  margin: 5px 10px 5px 0px;
  border-radius: 3px;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 400;
  color: #353535;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__popular_tag ul li a:hover {
  color: #2a9cf5;
  border-color: #2a9cf5;
}
.label-main-title {
  color: var(--site-white-color);
  padding: 20px 0 5px;
  font-size: 20px;
}
.paynowDisabled,#cartSections{
  display: none;
}
/*========================
BLOGS DETAILS END
=========================*/

/*======================
	BANNER PART START
========================*/
root {
    --site-main-color: #000000;
    --site-white-color: #ffffff;
    --dark-blue-color: #1e038e;
    --site-gray-color: #dddddd;
    --orange-reddish-color: #f37520;
    --light-orange-color: #ffd330;
    --light-yellow-color: #fecb10;
    --dark-red-color: #ee4423;
    --medium-yellow-color: #ffc900;
    --hightlighted-color: #ff4d2b;
}
.no-record-form svg {
	width: 90px;
	height: 90px;
}
.no-record-form {
	background: #fff;
	padding: 50px 20px;
	border-radius: 20px;
	box-shadow: rgba(0,0,0,.1) 0 4px 12px;
}
#wsus__breadcrumb, .wsus__large_banner_content {
    background-size: cover!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    padding: 0;
}
.wsus_breadcrumb_overlay {
    background: #0000004f;
    padding: 40px 0;
}
.wsus_breadcrumb_overlay .col-12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#wsus__breadcrumb h1, #wsus__breadcrumb h4 {
    text-transform: capitalize;
    color: var(--fff-color);
    font-size: 30px;
    font-weight: 700;
}
#wsus__breadcrumb ul, .wsus__login_input {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 0;
    list-style: none;
}
#wsus__breadcrumb ul li a {
    position: relative;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--fff-color);
    margin-right: 40px;
    text-decoration: none;
}
#wsus__breadcrumb ul li:last-child a:after {
    content: none;
}
#wsus__breadcrumb ul li:last-child a {
    margin-right: 0;
}
#wsus__breadcrumb ul li a::after {
    position: absolute;
    content: "\f138";
    top: 1px;
    right: -25px;
    color: var(--fff-color);
    font-size: 14px;
    border: none;
    font-family: 'Font Awesome 5 Free';
}
.bg-info, .panel-heading span i.fa-lock, .wsus__product_item .wsus__new:hover, .wsus__subd_text p, .wsus_breadcrumb_overlay ul li span {
    color: var(--fff-color);
}
#wsus__faq h4, .wsus__blog_category h4, .wsus__blog_post h4, .wsus__blog_search h4, .wsus__change_password h4, .wsus__comment_area h4, .wsus__forget_area h4, .wsus__main_blog h5, .wsus__popular_tag h4, .wsus__post_comment h4, .wsus__pro_det_vendor_text h4, .wsus__related_post h5, .wsus_blog_calender h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.event-detail-cat .atistdetailswrp {
    border: 1px dashed #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #f7f7f7;
}
.event-detail-cat .atistdetailswrp ul .organizer h4 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto';
}
.event-detail-cat .atistdetailswrp ul {
    padding: 0;
    list-style: none;
    margin: 0;
}
.event-detail-cat .atistdetailswrp ul .organizer {
    display: flex;
}
.event-detail-cat .atistdetailswrp ul .organizer figure {
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.organizer .organizer-wrap {
    margin-left: 20px;
}
.event-detail-cat .organizer-wrap ul li {
    border-bottom: 1px dashed var(--dark-blue-color);
    width: 100%;
    padding: 0 0 8px;
    margin-bottom: 8px;
}
.event-detail-cat .organizer-wrap ul li:last-child {
    border-bottom: unset;
    margin: 0;
    padding: 0;
}
.wsus__blog_category ul li:last-child a {
    border-bottom: 0;
    padding-bottom: 0;
}
.organizer .organizer_pic {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    min-width: 40px;
    outline: 2px solid var(--site-gray-color);
    outline-offset: 4px;
}


.wsus__banner_content {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.wsus__banner_menu_cat_item {
  position: static;
  line-height: 24.6px;
}

.wsus__banner_menu_cat_item li a {
  padding: 13px 30px;
}

.wsus__single_slider {
  position: relative;
  padding: 148px 50px;
  width: 100%;
  height: 510px;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat!important;
}

.wsus__single_slider .slider-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.notification-icon .notification-autologin {
color: #fff;
cursor: pointer;
  font-weight: bold;
}
.wsus__single_slider_text {
  position: relative;
  z-index: 2;
}

.wsus__single_slider_text h3 {
  color: #2a9cf5;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 25px;
}

.wsus__single_slider_text h1 {
  text-transform: capitalize;
  font-weight: 800;
  color: #333;
  margin: 10px 0px;
}

.wsus__single_slider_text h6 {
  color: #2a9cf5;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 40px;
}

#wsus__banner .slick-dots {
    position: absolute;
    left: 0;
    bottom: -35px;
    display: flex;
    right: 0;
    justify-content: center;
    gap: 10px;
}
.banner_slider {
  margin: 0 0 70px;
}
section#wsus__banner .slick-dots li button {
    font-size: 0;
    width: 30px;
    height: 10px;
    background: #dadada;
    border-radius: 50px;
    margin: 0 5px;
    outline: 0;
    border: 1px solid var(--light-orange-color);
}
section#wsus__banner .slick-dots li.slick-active button {
    background: var(--nav-hover-color);
    border: 1px solid var(--nav-hover-color);
}
.cruise-checkout .panel-body .payment-paypal a.paypalSubmit {
    background: var(--nav-hover-color);
    margin-top: 10px;
    color: #fff;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 30px;
    margin-bottom: 10px;
}
/*======================
BANNER PART END
========================*/
.wsus__blog_search .forum-search-heading {
    margin-bottom: 0 !important;
}
.wsus__main_blog h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.wsus__blog_category h4, .wsus__blog_search h4 {
    font-size: 22px;
    font-weight: 600;
}
.wsus__blog_search .forum-search-heading button.see_btn, .wsus__blog_search .see_btn.submit {
    background: var(--nav-hover-color);
    margin-top: 10px;
    color: #fff;
    transition: 0.3s;
}
.wsus__blog_search .forum-search-heading a.see_btn {
    background-color: var(--nav-color);
    color: #fff;
    margin-top: 10px;
}
.wsus__blog_search a.see_btn {
    background: var(--nav-hover-color);
    margin-top: 10px;
    color: #fff;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.5s ease;
}
.wsus__blog_search a.see_btn:hover, .wsus__blog_search .forum-search-heading button.see_btn:hover, .wsus__blog_search .see_btn.submit:hover {
    background: var(--hover-color);
}
.wsus__blog_sidebar #cartSections form .newtktcta input#btn_paynow:hover, 
.event-details-single .wsus__blog_sidebar .wsus__blog_category input.see_btn:hover, 
.events-ticket-update .wsus__blog_search .newtktcta input.common_btn:hover,
.wsus__main_blog .tab-content .tab-pane .wsus__blog_category a.common_btn:hover {
  background: var(--hover-color);
}
.wsus__main_blog ul.nav-tabs li.nav-item a {
    font-size: 16px;
    color: var(--nav-color);
    border: 2px solid transparent;
    padding: 13px 15px;
}
.wsus__main_blog ul.nav-tabs li.nav-item a.nav-link.active {
    color: var(--nav-hover-color);
    border-bottom: 2px solid var(--nav-hover-color);
    position: relative;
    top: 2px;
    border: 2px solid var(--nav-hover-color);
    border-left: 2px solid transparent;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
}
.wsus__main_blog ul.nav-tabs li.nav-item a:focus-visible {
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
}
.wsus__main_blog .tab-content {
    margin-top: 20px;
}
.wsus__main_blog ul.nav-tabs li.nav-item a:hover {
    border: 2px solid transparent;
}
.tab-content .wsus__blog_category h4, .event-details-single .wsus__blog_category h4 {
    background: none;
    -webkit-text-fill-color: unset;
    margin: 0 0 20px;
    color: var(--nav-color);
    font-size: 22px;
}
.tab-content .wsus__blog_category p a {
    color: var(--nav-color);
    color: var(--nav-hover-color);
}
.wsus__main_blog .tab-content .tab-pane .wsus__blog_category a.common_btn {
    background: var(--nav-hover-color);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    padding: 15px 50px;
    margin: 0;
    min-width: 250px;
    border-radius: 35px;
}

/*--------------------------------------------------------------
# Events-Ticket-Update Start
--------------------------------------------------------------*/
.hdeventdetailswrp {
    backdrop-filter: blur(14px);
    background: #f8fafb;
    border-radius: 8px;
    padding: 10px;
    border: 2px solid #dce3e7;
}
.hdeventdetailswrp .detail-wrp {
    display: flex;
    gap: 20px;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp .dates-wrp {
    background-color: var(--nav-hover-color);
    text-align: center;
    padding: 15px 8px;
    width: 130px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 4px;
    border-radius: 8px;
    color: var(--site-white-color);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp .dates-wrp:after {
    content: "";
    position: absolute;
    background: #ffffff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 7px;
    left: 7px;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp .dates-wrp .month {
    display: block;
    font-size: 20px;
    color: var(--fff-color);
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp .dates-wrp .day {
    display: block;
    font-size: 33px;
    color: var(--fff-color);
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp .dates-wrp .time {
    display: block;
    font-size: 18px;
    color: var(--fff-color);
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp ul.event-info {
    padding: 0;
    margin: 0;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp ul.event-info li {
    padding: 4px 0;
    font-size: 20px;
    line-height: 22px;
    font-weight: 300;
    color: var(--dark-blue-color);
    list-style: none;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp ul.event-info li.loc .event-location {
    display: flex;
    align-items: center;
    gap: 5px;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp ul.event-info li.loc .event-location i {
    font-size: 16px;
    opacity: 0.6;
    color: var(--nav-hover-color);
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp ul.event-info li.loc .event-location span {
    font-size: 16px;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp ul.event-info li.event-name span {
    font-size: 24px;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp ul.event-info li.organizers {
    font-size: 16px;
}
.hdeventdetailswrp .detail-wrp .event-info li span {
    color: var(--dark-blue-color);
    font-weight: 600;
    font-size: 16px;
}
.events-ticket-people .panel-default {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}
.events-ticket-people .panel-heading {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 15px;
}
.events-ticket-people .panel-default .panel-body .form-control,
.cruise-checkout .panel-body .form-control {
    min-height: 45px;
    border-radius: 8px;
    background: #f9f9f9;
    appearance: auto;
}
.cruise-checkout .panel-body .form-control:focus {
    box-shadow: none;
    border-color: inherit;
}
.cruise-checkout .panel-body .form-control {
    appearance: auto;
}
/*--------------------------------------------------------------
# Event Checkout Page
--------------------------------------------------------------*/
.cruise-checkout button.payment-tab {
    display: block;
    width: 100%;
    padding: 12px 25px;
    transition: .3s linear;
    background: #fff;
    border: 1px solid var(--nav-hover-color);
    color: var(--nav-hover-color);
    border-radius: 40px;
    text-transform: capitalize;
}
.cruise-checkout button.payment-tab.active {
    background: var(--nav-hover-color) !important;
    color: #fff;
}
.cruise-checkout button.payment-tab:focus {
    outline: none;
}
.cruise-checkout .panel-group .panel-heading span i {
    font-size: 18px;
    color: var(--dark-blue-color);
    margin-right: 5px;
}
.cruise-checkout .panel-body {
    padding: 15px 20px;
    border: 1px solid #dce3e7;
    margin-top: 10px;
    border-radius: 10px;
}
.cruise-checkout .panel-heading {
    font-size: 22px;
    font-weight: 600;
}
.cruise-checkout .panel-heading span.helptext {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.6;
    font-style: italic;
}
.cruise-checkout ul.payment-cards {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cruise-checkout ul.payment-cards li {
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    background-image: url('../../uploads/default/ccpay.jpg');
    background-position: 0 0;
    float: left;
    height: 48px;
    margin-right: 8px;
    text-indent: -9999px;
    width: 80px;
    filter: grayscale(9);
}
.cruise-checkout ul.payment-cards li:hover {
    filter: grayscale(0);
}
.cruise-checkout ul.payment-cards .visa {
    background-position: 395px -14px;
}
.cruise-checkout ul.payment-cards .mastercard {
    background-position: -447px -14px;
}
.cruise-checkout ul.payment-cards .amex {
    background-position: 0 -14px;
}
.cruise-checkout ul.payment-cards .maestro {
    background-position: 183px -14px;
}
.cruise-checkout .payment-stripe form#payment-form button.common_btn {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nav-hover-color);
    margin-top: 10px;
    color: var(--fff-color);
    border-radius: 40px;
    width: 100%;
    text-transform: capitalize;
    border: 1px solid;
    gap: 16px;
}
/*--------------------------------------------------------------
# Login Signup Page
--------------------------------------------------------------*/
.login-wrap {
    background: #fbfbfb;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 80px;
    padding: 0;
}
.login-tabs {
    padding: 30px;
}
.login-tabs ul.nav-pills {
    gap: 10px;
}
.login-tabs .tab-content .wsus__login_input,
.wsus__forget_area .wsus__login_input {
    position: relative;
}
#wsus__login_register .login-tabs li button {
    background: transparent;
    padding: 10px 40px;
    border: 2px solid #d7d7d7;
    color: var(--dark-blue-color);
    border-radius: 40px;
    text-transform: capitalize;
}
#wsus__login_register .login-tabs li button.active {
    background: #fff;
    color: var(--nav-hover-color);
    border-color: var(--nav-hover-color);
}
#wsus__login_register .login-tabs li button:focus-visible,
#wsus__login_register .login-tabs li button.active {
    outline: none;
}
.login-img {
    background: var(--fff-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.wsus__login_reg_text {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column-reverse;
}
.login-img .wsus__login_reg_text img {
    margin: 60px auto 0;
    max-width: 520px;
}
.wsus__login_text_position {
    text-align: center;
}
.login-tabs .tab-content .wsus__login_input i,
.wsus__forget_area .wsus__login_input i.fal {
    position: absolute;
    left: 15px;
    font-size: 18px;
    top: 13px;
    opacity: 0.4;
}
.login-tabs .tab-content .wsus__login_input i.fa-eye {
    right: 20px;
    left: unset;
}
.login-tabs .tab-content .wsus__login_input input,
.login-tabs .tab-content .wsus__login_input select.form,
.wsus__forget_area .wsus__login_input input[type="email"] {
    width: 100%;
    min-height: 45px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ddd;
    padding-left: 47px;
    font-size: 16px;
}
.wsus__forget_area .wsus__login_input {
    margin-bottom: 20px;
}
.login-tabs .tab-content .wsus__login_input input:focus-visible {
    outline: none;
}
.login-tabs .tab-content .wsus__login_save {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.login-tabs .tab-content .wsus__login_save a.forget_p {
    color: var(--nav-hover-color);
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
}
.login-tabs .tab-content .wsus__login_save label.form-check-label {
    font-size: 14px;
}
.login-tabs .tab-content button.see_btn {
    border-radius: 30px;
    padding: 12px 15px;
    border: none;
    transition: .3s linear;
    background: var(--nav-hover-color) !important;
    color: #fff;
    min-width: 120px;
    text-transform: capitalize;
    font-size: 16px;
}
.login-tabs .tab-content button.see_btn:hover,
.contact .contact-form-container .php-email-form button:hover {
    background: var(--hover-color) !important;
}
.wsus__login_reg_text .wsus__login_reg_text_center {
    position: absolute;
    top: 90px;
    left: 0%;
    transform: translate(0%, -50%);
    padding: 0 60px;
}
.wsus__login_reg_text .wsus__login_reg_text_center h6 {
    font-size: 30px;
    font-weight: 700;
    color: var(--nav-hover-color);
}
#wsus__login_register .login-tabs li button:focus {
    outline: none;
}
.login-tabs .tab-content .wsus__login_save .form-switch .form-check-input:checked {
    background-color: var(--nav-hover-color);
    border-color: var(--nav-hover-color);
}

.wsus__forget_area {
    border: 1px solid var(--site-gray-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    background: #fbfbfb;
}
.wsus__forget_area .qiestion_icon {
    display: block;
    text-align: center;
    font-size: 40px;
    color: var(--nav-hover-color);
}
.wsus__forget_area h4 {
    color: var(--nav-hover-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 31px;
}
.wsus__forget_area .wsus__login button.common_btn {
    background: var(--nav-hover-color);
    margin-top: 10px;
    color: #fff;
    transition: 0.3s;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    border: 1px solid;
    border-radius: 40px;
}
.wsus__forget_area a.see_btn {
    display: inline-block;
    color: var(--nav-hover-color);
    text-decoration: none;
    text-transform: capitalize;
}
/*--------------------------------------------------------------
# Success Page
--------------------------------------------------------------*/
.sucess-col {
    padding: 60px 0;
}
.sucess-col .card {
    padding: 30px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 0 auto;
    background: #f8f8f8;
}
.assignment-msg-outer {
    text-align: center;
    padding: 30px 0;
}
.assignment-msg-img {
    border-radius: 50%;
    background: #ff4d2bba;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 10px solid #ffdcd5;
}
.sucess-col .assignment-inner-txt ul li span i {
    opacity: 0.4;
}
.sucess-col .assignment-msg-img img {
    max-width: 70px;
}
.sucess-col .assignment-inner-txt {
    max-width: 850px;
    margin: 0 auto;
}
.sucess-col h3 {
    margin: 30px 0 20px;
    text-align: center;
    color: var(--dark-red-color);
    font-weight: 700;
}
.sucess-col .assignment-inner-txt ul {
    padding: 0;
    margin: 0;
    text-align: left;
    list-style: none;
}
.sucess-col .assignment-inner-txt ul li {
    margin-bottom: 8px;
}
.sucess-col .assignment-inner-txt ul li a {
    color: var(--nav-hover-color);
    text-decoration: none;
}
.sucess-col .assignment-inner-txt ul li b {
    font-weight: 400;
}

/*---- Social Login ----*/
.social-login-coll {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.social-login-coll p.social_text {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.social-login-coll ul.wsus__login_link {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 15px;
}
.social-login-coll ul.wsus__login_link a {
    background: #ffffff;
    padding: 10px 30px;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid transparent;
}
.social-login-coll ul.wsus__login_link li.google a {
    border-color: #e14032;
    color: #e14032;
}
.social-login-coll ul.wsus__login_link li.twitter a {
    border-color: #000000;
    color: #000000;
}
.social-login-coll ul.wsus__login_link li.google a:hover {
    background: #e14032;
    color: #fff;
}
.social-login-coll ul.wsus__login_link li.twitter a:hover {
    background: #000000;
    color: #fff;
}

/*--------------------------------------------------------------
# Responsive Start
--------------------------------------------------------------*/

@media screen and (max-width: 1399.9px) {
.upcome-event-sec .events-coll .event-card, .business-list-sec .business-coll .event-card {
    width: 31.5%;
}
}
@media screen and (max-width: 1199.9px) {
.login-img .wsus__login_reg_text img {
    max-width: 440px;
}
.hero-wrapper .hero-content {
    width: 100%;
}
.navmenu i.fa-bars {
  color: var(--nav-color);
  font-size: 22px;
}
section, .section {
  padding: 30px 0;
}
.about-title h2, .sec-title h4, .about-title h4, .history .about-content h2, .core-values h2 {
  font-size: 40px;
}
.about-title h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.sec-title p {
  font-size: 18px;
}
.events-coll, .journey-colls {
  gap: 10px;
}
.event-details .date-time .event-time img {
  width: 16px;
}
.event-details .date-time {
  gap: 8px;
}
.event-details .date-time .event-time {
  gap: 3px;
}
.upcome-event-sec .events-coll .event-card {
    width: 32%;
}
}
@media screen and (max-width: 991.9px) {
.events-ticket-people .panel-default .panel-body .form-control, .cruise-checkout .panel-body .form-control {
    margin-bottom: 10px;
}
.events-ticket-people .panel-body .mt-2 {
    margin-top: 0 !important;
}
.events-ticket-people .panel.panel-default {
    margin-bottom: 30px !important;
}
.login-img .wsus__login_reg_text img {
    max-width: 100%;
    margin: 90px auto 0;
}
.wsus__login_reg_text .wsus__login_reg_text_center {
    padding: 0 10px;
}
.wsus__login_reg_text .wsus__login_reg_text_center h6 {
    font-size: 26px;
}
.wsus__custom_pages {
  padding-top: 30px !important;
}
.hero .hero-wrapper {
  padding: 70px 40px 150px;
}
.search-bar {
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}
.search-bar .search-loc {
  width: 49%;
}
.search-bar .search-date {
  width: 49%;
}
.search-bar .search-cat {
  width: 49%;
}
.search-btn {
  height: 68px;
  letter-spacing: 1px;
  justify-content: center;
  gap: 20px;
  width: 49%;
}
.about-title h2, .sec-title h4, .about-title h4, .history .about-content h2, .core-values h2 {
  font-size: 35px;
}
.events-coll {
  flex-wrap: wrap;
}
.event-card, .business-list-sec .business-coll .event-card {
  width: 48%;
}
.events-coll, .journey-colls {
  gap: 20px;
}
.contact-coll {
  flex-direction: column;
}
.contact-coll .contact-info {
  width: 100%;
  flex: none;
}
.contact-coll .contact-info h3 {
  text-align: left;
  font-size: 35px;
}
.contact-section {
  padding: 40px 0;
}
.contact-coll .contact-form {
  width: 100%;
}
.our-blogs .blog-listing {
    justify-content: space-between;
}
.blog-listing .event-card {
    width: 48.5%;
}
.upcome-event-sec .events-coll .event-card {
    width: 48%;
}
.contact .contact-content {
    flex-direction: column;
}
.contact .contact-cards-container, .contact .contact-form-container {
    width: 100%;
}
.coll-title h2 {
    font-size: 35px;
}
}
@media screen and (max-width: 767.9px) {
.login-tabs {
    padding: 20px;
}
  .search-bar .filter-box, .search-btn {
      width: 100%;
  }
  .hero .hero-wrapper {
      padding: 40px 10px 120px;
  }
  .hero .hero-wrapper .hero-content h1 {
    font-size: 50px;
  }
  .about-title {
    padding: 10px 0 10px;
  }
  body .container {
      max-width: 100%;
  }
  .hero .feature-cards-wrapper {
    padding: 0 10px;
  }
  section.about-sec {
    padding-inline: 10px;
  }
  section.upcome-event-sec, section.journey-sec {
    padding: 30px 10px 30px;
  }
  .upcome-event-sec .events-coll {
    justify-content: space-between;
    gap: 20px;
  }
  .business-list-sec .business-list-btn, .journey-sec .business-list-btn {
    margin-top: 30px;
  }
  .journey-colls .journey-card .event-details {
    gap: 10px;
  }
  .events-coll, .journey-colls {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .colls-3 .journey-card {
    width: 48%;
  }
  .journey-sec .colls-2 {
    margin-bottom: 20px;
    gap: 20px;
  }
  .colls-2 .journey-card {
    width: 48%;
  }
  .events-coll, .journey-colls {
    gap: 20px;
  }
  .sec-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .event-card, .business-list-sec .business-coll .event-card {
    width: 48%;
  }
  .info-item {
    align-items: flex-start;
  }
  .footer-coll {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-coll .footer-links {
    width: 30%;
  }
  .contact-section {
      padding: 30px 0;
  }
  .blog-listing .event-card {
      width: 48%;
  }
}
@media screen and (max-width: 575.9px) {
 .assignment-msg-img {
    width: 110px;
    height: 110px;
    border: 7px solid #ffdcd5;
} 
.sucess-col .assignment-msg-img img {
    max-width: 50px;
}
.hdeventdetailswrp .detail-wrp {
    flex-direction: column;
    justify-content: space-between;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp .dates-wrp {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 25px;
}
.seating-hdwrp .hdeventdetailswrp .detail-wrp .dates-wrp .day {
    font-size: 24px;
}
 .login-tabs .tab-content button.see_btn {
    width: 100%;
} 
.event-details-single .wsus__main_blog .wsus__post_comment form button.common_btn {
    width: 100%;
}
.wsus__main_blog h3 {
    font-size: 24px;
}
.wsus_breadcrumb_overlay .col-12 {
    flex-direction: column;
    align-items: flex-start;
}
#wsus__breadcrumb ul {
    margin-top: 0px;
}
.event-details-single .tkt-quantity-select {
    text-align: left;
    margin-top: 5px;
}
.event-details-single .tktendstatus {
    text-align: left;
}
.wsus__main_blog .tab-content .tab-pane .wsus__blog_category a.common_btn {
    min-width: 100%;
}
.wsus__single_slider {
    height: 380px;
}
.hero .hero-wrapper {
    padding: 40px 0px 80px;
}
.hero .feature-cards-wrapper {
    margin-top: 0;
    padding: 15px 0px 25px;
}
.business-list-sec .business-list-btn a, .journey-sec .business-list-btn a {
    width: 100%;
    justify-content: center;
}
section.about-sec {
    padding-inline: 0px;
}
.hero .hero-wrapper .hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.hero .hero-wrapper .hero-content p {
  font-size: 18px;
  line-height: 1.3;
}
.search-bar .search-loc, .search-bar .search-date, .search-bar .search-cat, .search-btn {
  width: 100%;
}
.filter-box i {
  font-size: 20px;
}
.about-title {
  padding: 0px 0 0px;
}
.about-title h2, .sec-title h4, .about-title h4, .history .about-content h2, .core-values h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.about-title h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
section.upcome-event-sec, section.journey-sec {
  padding: 30px 0 30px;
}
.event-card, .business-list-sec .business-coll .event-card, .colls-2 .journey-card {
  width: 100%;
}
.business-list-sec .business-list-btn {
  margin-top: 20px;
}
.journey-colls {
  flex-wrap: wrap;
}
.colls-3 .journey-card {
  width: 100%;
}
.journey-sec .colls-2 {
  margin-bottom: 20px;
}
.contact-coll .contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-coll .contact-info h3 br {
    display: none;
}
.contact .contact-cards-container {
    gap: 0;
}
.coll-title h2 {
    font-size: 28px;
}
.contact .contact-card {
    padding-inline: 0;
}
.contact .contact-form-container {
    padding: 20px;
}
.contact .contact-form-container .php-email-form button {
    width: 100%;
}
.contact .map-wrapper {
    margin-top: 30px;
}
section.journey-sec {
  padding: 30px 0 30px;
}
.journey-colls .journey-card .event-details .details-coll h3 {
    font-size: 18px;
}
.journey-colls .journey-card .event-details .details-coll p {
    font-size: 14px;
}
.info-item i {
    font-size: 16px;
    padding: 10px;
    width: 40px;
    height: 40px;
    min-width: 40px;
}
.upcome-event-sec .events-coll, .journey-sec .colls-2, .events-coll, .journey-colls {
    gap: 20px;
}
.contact-form .form-box {
  border: 15px solid #ff4926;
  border-radius: 20px;
  padding: 20px;
}
.contact-form .form-box h2, .social h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-form .form-box .form-row {
  flex-wrap: wrap;
}
.contact-form .form-box button {
  width: 100%;
  min-width: 100%;
}
.contact-coll {
    gap: 40px;
}
.footer-coll {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer {
  padding: 40px 0 0;
}
.footer-coll .footer-links {
    width: 100%;
}
.footer-bottom {
    margin-top: 10px;
}
.footer-bottom p {
    margin-bottom: 0;
}
.blog-listing .event-card {
    width: 100%;
}
.blog-listing .event-img img {
    height: 320px;
}
.upcome-event-sec .events-coll .event-card {
    width: 100%;
}
.event-details-single .wsus__main_blog_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
}
@media screen and (max-width: 450.9px) {
.wsus__single_slider {
    height: 280px;
    padding: 30px 10px;
}
.wsus__main_blog h3 {
    font-size: 24px;
}
}