/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #60777f;
  --secondary-color: #bcb09d;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #60777f;
  --custom-btn-bg-hover-color: #4b5e64;
  --light-color: #d7d7d7ea;
  --dark-color: #000000;
  --headerColor: #1a1a1a;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #bcb09d;
  --bodyTextColor: #4e4b66;

  --body-font-family: "Outfit", sans-serif;

  --h1-font-size: 74px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --btn-font-size: 14px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  --total-brand: 8;
  --logo-width: 12rem;
  --total-logo-width: calc(var(--total-brand) * var(--logo-width));
  --animation-duration: var(--total-brand) * 1.5s;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

.info h4 {
  color: #4e4f52;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}

.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-padding {
  padding-top: 10px;
  padding-bottom: 100px;
}

.about-padding-bottom {
  padding-top: 0px;
  padding-bottom: 50px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
  /* margin-block: 10px; */
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  color: var(--primary-color);
}
.nav-link:hover {
  transform: translateX(-9px);
  transition: 0.6s ease-out;
}

.nav-tabs h5 {
  color: var(--p-color);
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h6,
.nav-tabs .nav-link:focus h6,
.nav-tabs .nav-link:hover h6 {
  color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  align-content: center;
  transition: all 0.3s;
  padding: 15px 20px;
  position: relative;
}

.custom-btn.main {
  padding: 20px 70px;
  font-size: 18px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
  transform: scale(1.05);
}
/* lets begin button, on hover arrow animation */

.custom-btn .text {
  transition: transform 0.3s ease;
}

.custom-btn .arrow {
  position: absolute;
  right: 3px;
  opacity: 0;
  font-size: 30px;
  font-weight: bolder;
  transition: opacity 0.3s ease, right 0.3s ease;
  bottom: 12px;
}

.custom-btn:hover .text {
  transform: translateX(-10px);
}

.custom-btn:hover .arrow {
  left: 73%;
  opacity: 1;
  animation: bounceArrow 0.5s infinite alternate;
}

@keyframes bounceArrow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5px);
  }
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--secondary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand img {
  width: auto;
  height: 10vh;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.services-info {
  border-radius: var(--border-radius-medium);
  padding: 50px;
  position: relative;
  z-index: 2;
}

.about-section {
  background-image: url("../images/Dorm to Door/2.png");
  background-color: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  height: 100%;
  pointer-events: none;
  width: 40%;
  z-index: 2;
  bottom: 0;
}

.about-section::before {
  background: linear-gradient(to right, #8b6f5c 0%, transparent 100%);
  left: 0;
}

.about-section::after {
  background: linear-gradient(to left, #8b6f5c 0%, transparent 100%);
  right: 0;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}
.artist-img-effect {
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.artist-img-effect:hover {
  box-shadow: 0 70px 40px -20px rgba(0, 0, 0, 0.2);
  transform: perspective(650px) translate3d(0px, 0px, 50px) scale(0.85)
    rotateY(6deg);
  box-shadow: 0 90px 50px -20px rgba(0, 0, 0, 0.3);
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}

/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url("../images/Dorm to Door/3c.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
  backdrop-filter: blur(5px);
  z-index: 1;
}

.ticket-section form {
  position: relative;
  z-index: 4;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 70px;
  z-index: 4;
}

.ticket-form .form-check {
  position: relative;
  min-height: 60px;
  padding-left: 35px;
  overflow: hidden;
}

.ticket-form .form-check:hover {
  color: #000;
}

input[type="radio"] {
  display: none;
}

.ticket-form-select {
  padding: 50px;
}

@media only screen and (max-width: 1300px) {
  #flexRadioDefault2 + label,
  #flexRadioDefault3 + label {
    margin-top: 4.1%;
  }
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 15px;
  margin-left: 10px;
  width: 100%;
  height: 100%;
  align-self: center;
}

.price {
  padding-top: 1vh;
  padding-bottom: 1vh;
}

/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: fit-content;
}

/* .artists-thumb:hover .artists-hover {
  transform: translateY(0);
  transition: 0.7s ease-in;
  opacity: 1;
} */

.artists-hover {
  background-color: var(--primary-color);
  background-color: #bcb09d;
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--bodyTextColor);
  display: inline-block;
  min-width: 10px;
  margin-right: 20px;
}

.artists-hover p {
  color: var(--section-bg-color);
}

.artists-hover p a {
  color: var(--bodyTextColor);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
.cs-wrapper .section-title {
  margin-top: 4rem;
  text-align: center;
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .ticket-form .form-check .form-check-label {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 10px;
    width: 100%;
    height: 100%;
  }

  #faq-1720 {
    padding: var(--sectionPadding);
    position: relative;
  }
  #faq-1720 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    position: relative;
    z-index: 1;
  }
  #faq-1720 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #faq-1720 .cs-title {
    margin: 0;
  }
  #faq-1720 .cs-flex-group {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
    position: relative;
  }
  #faq-1720 .cs-wrapper {
    width: 100%;
    position: relative;
  }
  #faq-1720 .cs-button-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.25rem);
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #faq-1720 .cs-flex {
    width: 100%;
    /* 24px - 32px */
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    order: 3;
    gap: 1.25rem;
  }
  #faq-1720 .cs-option {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    font-weight: 600;
    padding: 0;
    color: var(--bodyTextColor);
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #faq-1720 .cs-option:hover {
    color: var(--custom-btn-bg-color);
    cursor: pointer;
  }
  #faq-1720 .cs-option.cs-active {
    color: var(--custom-btn-bg-color);
  }
  #faq-1720 .cs-picture {
    width: 100%;
    /* 328px - 450px */
    height: clamp(20.5rem, 30vw, 28.125rem);
    /* 16px - 20px */
    margin: 0 0 clamp(1rem, 2.4vw, 1.25rem);
    order: 2;
    position: relative;
    z-index: 1;
  }
  #faq-1720 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #faq-1720 .cs-faq-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    order: 3;
    gap: 0.5rem;
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s,
      left 0.3s;
    /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: top;
    transform-style: preserve-3d;
    perspective: 900px;
  }
  #faq-1720 .cs-faq-group.cs-hidden {
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the FAQ won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-flex-group (left: 0). Same for the bottom:0 value, the FAQ won't go past that position when it animates */
    top: 0;
    left: 0;
    position: absolute;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0);
  }
  #faq-1720 .cs-faq-group.cs-hidden .cs-faq-item {
    transform: rotateX(270deg);
    opacity: 0;
  }
  #faq-1720 .cs-faq-item {
    list-style: none;
    width: 100%;
    /* clips all corners of the button that overlap the rounded border */
    overflow: hidden;
    opacity: 1;
    top: 0;
    transform: rotateX(0deg);
    transition: transform 0.6s, opacity 0.3s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(5) {
    transition-delay: 0.4s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(6) {
    transition-delay: 0.5s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(7) {
    transition-delay: 0.6s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(8) {
    transition-delay: 0.7s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(9) {
    transition-delay: 0.8s;
  }
  #faq-1720 .cs-faq-item:nth-of-type(10) {
    transition-delay: 0.9s;
  }
  #faq-1720 .cs-faq-item.active .cs-button {
    color: var(--custom-btn-bg-color);
  }
  #faq-1720 .cs-faq-item.active .cs-button:before {
    background-color: var(--custom-btn-bg-color);
    transform: rotate(315deg);
  }
  #faq-1720 .cs-faq-item.active .cs-button:after {
    background-color: var(--custom-btn-bg-color);
    transform: rotate(-315deg);
  }
  #faq-1720 .cs-faq-item.active .cs-item-p {
    height: auto;
    /* 20px - 24px bottom */
    /* 16px - 24px left & right */
    padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 1.3vw, 1.5rem);
    opacity: 1;
  }

  #faq-1720 .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: 500;
    /* 16px - 24px top & bottom */
    /* 16px - 20px left & right */
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.25rem);
    background-color: #f7f7f7;
    border: none;
    color: var(--headerColor);
    display: block;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-1720 .cs-button:hover {
    cursor: pointer;
  }
  #faq-1720 .cs-button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 50%;
    right: 1.5rem;
    transform: rotate(45deg);
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
    transition: transform 0.5s;
  }
  #faq-1720 .cs-button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 50%;
    right: 1.3125rem;
    transform: rotate(-45deg);
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
    transition: transform 0.5s;
  }
  #faq-1720 .cs-button-text {
    width: 80%;
    display: block;
  }
  #faq-1720 .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 100%;
    height: 0;
    margin: 0;
    /* 16px - 24px */
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    opacity: 0;
    background-color: #f7f7f7;
    color: #333333;
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
  #faq-1720 .cs-item-p span {
    /* 14px - 16px */
    font-weight: 400;
    color: #262626;
  }
}
/* Inbetween - 600px */
@media only screen and (min-width: 37.5rem) {
  #faq-1720 .cs-button-group {
    width: 80%;
    max-width: 22.0625rem;
    flex-direction: row;
    align-items: stretch;
    flex: none;
  }
  #faq-1720 .cs-content {
    width: 100%;
  }
  #faq-1720 .cs-picture {
    /* 300px - 493px */
    min-height: clamp(18.75rem, 30vw, 30.8125rem);
    margin: 0;
    height: 100%;
    flex: none;
    order: 3;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 48rem) {
  #faq-1720 .cs-flex-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* 20px - 80px */
    column-gap: clamp(1.25rem, 3vw, 5rem);
    padding: 2.5rem;
  }
  #faq-1720 .cs-button-group {
    flex-direction: column;
    flex: auto;
  }
  #faq-1720 .cs-picture {
    max-height: 31.25rem;
  }
}

.howcontent {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 50px;
}

.how-image {
  max-width: 150px;
  margin-bottom: 25px;
}

.how-text {
  padding-left: 25px;
  padding-right: 15px;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .how-text {
    padding-left: 15px;
    padding-right: 10px;
    padding-bottom: 30px;
  }
  
}

.flex-column-why {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}



/*
---------------------------------------------
Contest
---------------------------------------------
*/

.contest-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  backdrop-filter: blur(5px);
  z-index: 1;
}

.containers {
  padding: 200px;
}

/*
---------------------------------------------
about us
---------------------------------------------
*/
/* About Us Section */
section.about-us {
  margin-bottom: 100px;
}

.about-section-title {
  margin-top: 4rem;
  text-align: center;
}

.about-section-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-section-title h2 {
  color: #53b3cb;
}

.about-section-title span {
  color: var(--primary-color);
}

/* Content Styling */
.about-body {
  text-align: start;
  justify-content: center;
  align-items: center;
}

.about-body p {
  color: #2b2b2b;
  font-weight: 500;
}

.about-body li {
  color: #2b2b2b;
  font-weight: 500;
}

/* Tabs Navigation */
section.about-us .naccs {
  position: relative;
}

section.about-us ul.nacc {
  margin-top: 50px;
  position: relative;
  min-height: 100%;
  list-style: none;
  padding: 0;
}

/* List Items */
section.about-us ul.nacc li {
  background-color: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateX(50px);
  position: absolute;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

section.about-us ul.nacc li.active {
  position: relative;
  transition-delay: 0.3s;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
}

/* Content Layout */
section.about-us ul.nacc li span.title {
  font-size: 18px;
  color: #212741;
  font-weight: 600;
  display: inline-block;
  width: 24%;
}

section.about-us ul.nacc li span.title-button {
  display: inline-block;
  width: 14%;
}

section.about-us ul.nacc li span.item {
  font-size: 18px;
  color: #212741;
  font-weight: 400;
  display: inline-block;
  padding-right: 20px;
  width: 24%;
}

section.about-us ul.nacc li span.item-button {
  display: inline-block;
  width: 14%;
  align-items: center;
}

section.about-us ul.nacc li span.item-title {
  color: #bcb09d;
  font-weight: 600;
}

/* Right Content */
section.about-us .right-content {
  margin-left: 60px;
}

section.about-us .right-content h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 40px;
}

section.about-us .right-content p {
  margin-bottom: 50px;
}

/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url("../images/Dorm to Door/10.png");
  background-color: #dcdcdc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
  filter: drop-shadow(2px 2px 4px #404040);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #c9c9c9 !important;
}

.schedule-table thead th {
  background-color: var(--primary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-color: #363a3e;
  padding: 30px;
}

.schedule-table td {
  width: 50%;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-color: transparent;
}

/*.schedule-table th + td {
   
} */

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

/*
.schedule-table .pop-background-image {
  background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');
}
*/

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--dark-color);
  position: relative;
  z-index: 2;
}

/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  /* submit btn hover animation */
  transform: scale(1.05);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-image: url("../images/nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg");
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}
.footer-navlink:hover {
  transform: rotate(5deg);
}
.footer-contact-link:hover {
  transform: translateX(-8px);
  transition: 0.6s ease-out;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}
/* on hover, text will bounce infinite times */
.copyright-text > a:hover {
  font-weight: bold;
  animation: bounce 0.5s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before {
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
  PROFESSIONAL UI/UX ENHANCEMENTS
-----------------------------------------*/

/*---------------------------------------
  SECTION IMPROVEMENTS
-----------------------------------------*/
.university-section {
  background-color: #f8f8f8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  text-align: center;
}

.university-section .container {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--border-radius-medium);
  padding: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.university-header {
  text-align: center;
  margin-bottom: 30px;
}

.university-header h2 {
  color: var(--dark-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}

.university-header p {
  font-size: var(--h5-font-size);
  color: var(--p-color);
  margin-bottom: 30px;
}

#university-map-container {
  padding: 40px 20px;
  background-color: var(--light-color);
  border-radius: var(--border-radius-medium);
  margin: 60px auto 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 90%;
}

#university-map-container h3 {
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
}

.university-map {
  border-radius: var(--border-radius-medium);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 100%;
  height: clamp(300px, 50vw, 450px);
  display: block;
}

@media (max-width: 768px) {
  #university-map-container {
    padding: 20px 10px;
    margin-top: 40px;
    margin-bottom: 30px;
  } 
}

@media (max-width: 480px) {
  #university-map-container {
    padding: 15px 5px;
    margin-top: 30px;
  }
}

/*---------------------------------------
  PRICING SERVICES DESIGN (Refined)
-----------------------------------------*/
/* General Section Styling */
.services-section {
  background-color: #fff;
  padding: 60px 20px;
  color: #000;
  text-align: center;
}

.section-header h2 {
  color: #000;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

/* Summer Storage Styling */
.summer-storage-item {
  background: #fff7f0;
  border: 3px solid var(--secondary-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto 40px;
}

.summer-storage-item h4 {
  color: var(--primary-color);
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.price-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  background: #fff;
  padding: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  width: 200px;
  text-align: center;
}

.price-tag {
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.price-card p {
  font-size: 1rem;
  color: var(--bodyTextColor);
}
/* Summer Storage Styling */
.summer-storage-item {
  background: #fff7f0;
  border: 3px solid var(--secondary-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto 40px;
}

.summer-storage-item h4 {
  color: var(--primary-color);
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.price-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.people {
  color: black;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: bold;
}

.price-circle p {
  font-size: 1rem;
  margin: 5px 0 0;
}

/* Moving Services and Greek Life Section */
.service-group {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-item {
  background: #ffffff;
  border: 2px solid var(--secondary-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  flex: 1;
  text-align: center;
}

.service-item h4 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.service-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .price-grid,
  .service-group {
    flex-direction: column;
    gap: 20px;
  }
}

/*---------------------------------------
  Custom Navbar Styling (Fixed)
-----------------------------------------*/
.dark-nav {
  background-color: var(--dark-color);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-section-title h2 {
  color: var(--primary-color); /* This makes the search title yellow */
}

.dark-nav .navbar-nav .nav-link {
  color: var(--white-color);
  padding: 15px 20px;
}

.dark-nav .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.dark-nav .navbar-toggler {
  border-color: var(--white-color);
}

.dark-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.about-section-title h2 {
  color: var(--dark-color); /* Changes search title to black */
}

/*---------------------------------------
  BACK BUTTON STYLING (Fixed)
-----------------------------------------*/
.back-btn {
  display: inline-block;
  background: var(--custom-btn-bg-color);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius-large);
  padding: 12px 30px;
  margin-top: 100px;
  margin-bottom: -50px;
  text-align: center;
  border: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.back-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/*---------------------------------------
  RESPONSIVE DESIGN
-----------------------------------------*/

/*---------------------------------------
LOCATIONS PAGE STYLES              
-----------------------------------------*/

/* Locations Section Styling */
/* Locations Section Styling */
.locations-section {
  display: flex;
  align-items: center;

  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("../images/university-bg.jpg") center/cover;
  padding: 80px 0;
  margin: 40px 0;
  border-top: 5px solid var(--secondary-color);
  border-bottom: 5px solid var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.locations-section h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.locations-section .search-instruction {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.finder-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.finder-container:hover {
  transform: translateY(-5px);
}

.finder-container .custom-btn.main {
  min-width: 250px;
  font-size: 1.3rem;
  padding: 20px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.finder-container .custom-btn.main:hover {
  transform: scale(1.05);
}

.finder-container p {
  color: var(--p-color);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

.search-instruction {
  margin-bottom: 30px;
}

.search-container {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
}

#search-bar {
  margin-bottom: 20px;
}

.search-btn {
  margin-top: 30px;
}

.dropdown-menu {
  width: 100%;
  background: white;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1000;
}

.dropdown-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: var(--section-bg-color);
}

.search-btn {
  padding: 15px 60px;
  font-size: 20px;
  margin: 0 auto;
  display: block;
}

#search-bar {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border-radius: var(--border-radius-medium);
  border: 2px solid var(--secondary-color);
  text-align: center;
}

.search-instruction {
  margin-bottom: 40px;
  color: var(--p-color);
  font-size: var(--p-font-size);
}

/* Add this for the separator */
.section-divider {
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  margin: 80px 0;
  opacity: 0.3;
}

/* University List */
.university-list {
  margin-top: 60px; /* Added top margin */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0; /* Maintains center alignment with top spacing */
  padding: 20px;
}

.university-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.university-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.university-card h3 {
  color: var(--primary-color);
  font-size: var(--h4-font-size);
  margin-bottom: 15px;
}

.university-card p {
  color: var(--p-color);
  font-size: var(--p-font-size);
}

/* Google Map */
#google-map {
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius-medium);
  margin-top: 30px;
}

/*--------------------------------

CLIENTS SLIDER

---------------------------------*/

/* General Styling */
.clients-slider {
  overflow: hidden;
  background: #f8f9fa;
  white-space: nowrap;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Slider Styling */
.slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.brands {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite;
}

.slider ul.brands {
  display: flex;
  list-style: none;
  width: var(--total-logo-width);
  padding: 0 2rem;

  animation: var(--animation-duration) scroll infinite linear;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.brand-logo img {
  max-width: 130px;
  height: auto;
  object-fit: contain;
}

.slider::before,
.slider::after {
  content: "";
  position: absolute;
  height: 100%;
  pointer-events: none;
  width: var(--logo-width);
  z-index: 2;
}

.slider::before {
  background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
  left: 0;
}

.slider::after {
  background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
  right: 0;
}

ul.brands li.brand-logo {
  width: var(--logo-width);
  font-size: 2rem;
  text-align: center;
  margin-left: 3rem;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-slide {
  display: inline-block;
  animation: 25s slide infinite linear;
}

.logos-slide img {
  max-width: 120px;
  margin: 0 40px;
}

.logo-slide {
  display: inline-block;
  animation: 27s slide infinite linear;
}

.logo-slide img {
  max-width: 140px;
  margin: 0 35px;
}

.logo {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logo:before,
.logo:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logo:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logo:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
/*---------------------------------------
ANIMATIONS               
-----------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-padding {
    padding-top: 25px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 50px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .search-instruction {
    margin-bottom: 30px;
  }

  .search-container {
    margin-bottom: 40px;
  }

  .university-list {
    margin-top: 40px;
  }
}

/*---------------------------------------
  LOGIN PAGE           
-----------------------------------------*/

/* 
scroll animation start here
---------------------------

hero-section
*/
.hero-section-fade {
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/*
find university and about-section scroll view,
 fade-in, fade-out animation
*/

.location-sec-fadeIn,
.about-info-fade-in {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.location-sec-fadeIn.visible,
.about-info-fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-wrap-fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  align-self: center;
  z-index: 3;
}

.about-wrap-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/*
 section3 - Unfold from top or bottom
 */
.schedule-section .table-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.schedule-section .table-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* artists-section */
.artists-hover {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.artists-hover.visible {
  opacity: 1;
  transform: scale(1);
}

.artists-hover.hidden {
  opacity: 0;
  transform: scale(0.8);
}

/* Pricing Table Styling */
section.about-us ul.nacc li .main-list {
  display: flex;
  background: #fff;
  padding: 25px 20px;
  border-bottom: 2px solid var(--secondary-color);
  margin-bottom: 0;
}

section.about-us ul.nacc li .list-item {
  display: flex;
  background: #fff;
  padding: 25px 20px;
  margin: 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

section.about-us ul.nacc li .list-item:hover {
  background: #fafafa;
}

section.about-us ul.nacc li span.title {
  font-size: 18px;
  color: #212741;
  font-weight: 600;
  width: 24%;
}

section.about-us ul.nacc li span.item-title {
  color: #ee5007;
  font-weight: 700;
}

section.about-us ul.nacc li span.item {
  font-size: 18px;
  color: #212741;
  width: 24%;
}

/* Main Pricing Container */
section.about-us .pricing-section-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Menu Container */
section.about-us .naccs .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
}

/* Individual Tab Styling */
section.about-us .naccs .menu div {
  padding: 15px 25px;
  min-width: 160px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #212741;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  white-space: nowrap;
}

section.about-us .naccs .menu div:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

section.about-us .naccs .menu div.active {
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  transform: translateY(-3px);
}

/* Title Styling */
.section-title h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  section.about-us ul.nacc li span.title,
  section.about-us ul.nacc li span.item {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }

  section.about-us ul.nacc li .main-list,
  section.about-us ul.nacc li .list-item {
    display: block;
  }
}
