header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    left: 0;

}
header.white-header {
    background: #fff;
}

/* header > *{
    border-bottom: 1px solid rgba(255, 255, 255, 0.594);   
} */

/* Site Header Styles */
.site-header img.custom-logo {
    height: 80px;
    width: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

header.site-header>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Font Weights for Unbounded Font */
.unbounded-100 {
    font-family: 'unbounded', sans-serif;
    font-weight: 100;
}

.unbounded-200 {
    font-family: 'unbounded', sans-serif;
    font-weight: 200;
}

.unbounded-300 {
    font-family: 'unbounded', sans-serif;
    font-weight: 300;
}

.unbounded-400 {
    font-family: 'unbounded', sans-serif;
    font-weight: 400;
}

.unbounded-500 {
    font-family: 'unbounded', sans-serif;
    font-weight: 500;
}

.unbounded-600 {
    font-family: 'unbounded', sans-serif;
    font-weight: 600;
}

.unbounded-700 {
    font-family: 'unbounded', sans-serif;
    font-weight: 700;
}

.unbounded-800 {
    font-family: 'unbounded', sans-serif;
    font-weight: 700;
}




/* Font Weights for Archivo Font */
.archivo-100 {
    font-family: 'archivo', sans-serif;
    font-weight: 100;
}

.archivo-200 {
    font-family: 'archivo', sans-serif;
    font-weight: 200;
}

.archivo-300 {
    font-family: 'archivo', sans-serif;
    font-weight: 300;
}

.archivo-400 {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
}

.archivo-500 {
    font-family: 'archivo', sans-serif;
    font-weight: 500;
}

.archivo-600 {
    font-family: 'archivo', sans-serif;
    font-weight: 600;
}

.archivo-700 {
    font-family: 'archivo', sans-serif;
    font-weight: 700;
}

.archivo-800 {
    font-family: 'archivo', sans-serif;
    font-weight: 700;
}

/* Typo corrected from 800 to 700 */
.archivo-900 {
    font-family: 'archivo', sans-serif;
    font-weight: 700;
}

/* Typo corrected from 900 to 700 */

/* Italic Font Weights */
.archivo-100-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 100;
}

.archivo-200-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 200;
}

.archivo-300-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 300;
}

.archivo-400-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 400;
}

.archivo-500-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 500;
}

.archivo-600-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 600;
}

.archivo-700-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 700;
}

.archivo-800-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 700;
}

/* Typo corrected from 800 to 700 */
.archivo-900-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 700;
}

/* Italic Font Weights */
.unbounded-100-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 100;
}

.unbounded-200-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 200;
}

.unbounded-300-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 300;
}

.unbounded-400-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 400;
}

.unbounded-500-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 500;
}

.unbounded-600-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 600;
}

.unbounded-700-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 700;
}

.unbounded-800-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 700;
}

/* Typo corrected from 800 to 700 */
.unbounded-900-italic {
    font-family: 'archivo', sans-serif;
    font-style: italic;
    font-weight: 700;
}

/* Typo corrected from 900 to 700 */

/* Main Menu Styles */
.dark-text .menu {
    color: black !important;
}

.menu {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: white;
    text-transform: uppercase;
}

.menu>li {
    position: relative;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu>li>a {
    display: inline-block;
    position: relative;
    font-weight: 700;
    padding: 2px 10px;
    font-size: 12px;
    overflow: hidden;
    transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}

/* Submenu Display on Hover */
.menu>li:hover>.sub-menu {
    display: flex;
    opacity: 1;
}

/* Submenu Styles */
.menu>li>.sub-menu {
    position: absolute;
    display: none;
    opacity: 0;
    color: white;
    flex-direction: column;
    width: 350px;
    z-index: 99;
    border-top: 55px transparent solid;
    top: -33px;
    left: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu>li>.sub-menu>li {
    background-color: black;
    padding: 10px;
}

.menu>li>.sub-menu li {
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-size: 14px
}

.menu>li>.sub-menu li:hover {
    padding-left: 15px;
}


/* Hover Effect for Main Menu Links */
.menu>li:hover>a::after {
    left: 0;
    opacity: 1;
    padding: 2px 10px;
}

.menu>li>a::after {
    content: " ";
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu>li:hover>a {
    color: white;
}

/* Nested Submenu Styles */
.menu .sub-menu>li {
    position: relative;
    display: inline-block;
}

.menu .sub-menu>li>ul {
    display: none;
    position: absolute;
    flex-direction: column;
    opacity: 0;
    left: 100%;
    width: 100%;
    transition: 3s opacity cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-delay: 3ms;
    top: 0;
    background-color: black;
    border-left: 2px solid transparent;
}

.menu .sub-menu>li:hover>ul {
    display: flex;
    opacity: 1;
}

.menu .sub-menu>li>ul>li {
    width: 100%;
    padding: 10px 10px;
}

/* Social Media Icons */
.icons {
    display: flex;
}

.icons i {
    position: relative;
    font-size: 20px;
    border-radius: 100%;
    padding: 10px 15px;
    color: white;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dark-text .social_media i:hover {
    color: white !important;
}

.icons i:hover::after {
    top: 0;
}

/* Social Media Icons Hover Effect */
.icons i::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    z-index: -1;
    background-color: black;
    border-radius: 100%;
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.mySwiper .swiper-wrapper {
    height: 100vh;
}

.mySwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    height: 100%;
    background: #fff;
    background-position: center center;
    background-size: cover;
    background-clip: border-box;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.current_page_item a {
    background-color: black;
}

.dark-text .current_page_item:hover a {
    color: white;
}

.dark-text i {
    color: black;
}

.dark-text .current_page_item a {
    background-color: black;
    color: white;
}

.sub-header {
  display: flex;
  gap: 30px;
  padding: 5px;

}

.sub-header a {
  font-size: large;
  font-weight: 500;
  color: #333;
}


.icons {
  display: flex;
  gap: 10px;
}


.title p{
  font-size: x-large;
  font-weight: 500;
}

.title h1{
  font-size: 35px;
  font-weight: 500;
}

.title span{
  font-size: large;
  font-weight: 400;
}

.custom-close-btn {
  background-color: transparent;
  border: none;
  background-color: #f3eeee;
  position: absolute;
  top: 2vh;
  right: 3vh;
  z-index: 1000;
}