@import 'tailwind/tailwind.css';
@import 'vendors/fontAwesome.css';
@import "vendors/swiper.css";
@import url("https://fonts.googleapis.com/css2?family=Koulen&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
:root {
  --section-space:3rem;
  --section-space-lg:3rem;
  --section-space-2x: calc(var(--section-space) * 2);
  --section-space-lg-2x: calc(var(--section-space-lg) * 2);
  --container-px:1rem;
  --clr-yellow:#ECC213;
  --clr-yellow-hvr:#b59410;
  --clr-black:#000;
  --clr-black-40:rgba(0,0,0,40%);
  --clr-black-60:rgba(0,0,0,60%);
  --clr-black-70:rgba(0,0,0,70%);
  --clr-black-80:rgba(0,0,0,80%);
  --clr-white:#fff;
  --clr-white-40:rgba(255,255,255 , 40%);
  --clr-white-60:rgba(255,255,255 , 60%);
  --clr-white-70:rgba(255,255,255 , 70%);
  --clr-white-80:rgba(255,255,255 , 80%);
  --clr-white-90:rgba(255,255,255 , 90%);
  --clr-gray-section:rgba(249, 249, 251, 1);
}

@media (min-width: 640px) {
  :root {
    --section-space:3rem;
    --section-space-lg:4rem;
    --container-px:1.5rem;
  }
}
@media (min-width: 768px) {
  :root {
    --container-px:3rem;
  }
}
@media (min-width: 1400px) {
  :root {
    --container-px:5rem;
  }
}
/*------------- #cdn google fonts --------------*/
/*------------- #general --------------*/
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Urbanist", "Almarai", sans-serif;
  direction: inherit;
  text-align: start;
  scroll-behavior: smooth;
  overflow-x: hidden;
  color: var(--clr-black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

body[data-panel=noScroll] {
  overflow-y: hidden;
}

a:hover {
  text-decoration: none;
}

i {
  vertical-align: middle;
}

/*------------- #page-wrapper --------------*/
.page-wrapper {
  overflow: hidden;
}

.section-style {
  position: relative;
}

/*------------- #theme-container  --------------*/
.theme-container {
  max-width: calc(1512px + var(--container-px) * 2);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/*------------- #scroll-grid --------------*/
@media not (min-width: 640px) {
  .scroll-grid-sm {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 calc((var(--container-px)) * -1) !important;
    max-width: none !important;
  }
  .scroll-grid-sm.no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .scroll-grid-sm .grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    transform: none !important;
  }
  .scroll-grid-sm .grid > * {
    padding: 0 !important;
    margin: 0 !important;
    width: var(--box-width) !important;
    flex-shrink: 0 !important;
    margin-inline-start: var(--container-px) !important;
  }
  .scroll-grid-sm .grid > *:last-child {
    padding-inline-end: var(--container-px) !important;
    width: calc(var(--box-width) + var(--container-px)) !important;
  }
}
/*------------- #font-heading --------------*/
.font-heading {
  font-family: "Koulen", "Urbanist", "Almarai", sans-serif;
  line-height: 1;
  font-weight: bold;
}

[dir=rtl] .font-heading {
  line-height: 1.3;
}

/*------------- #main-title --------------*/
.main-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-yellow);
  font-size: 2rem;
}
.main-title svg {
  flex-shrink: 0;
  fill: var(--clr-yellow);
  width: 2rem;
}
@media (min-width: 640px) {
  .main-title {
    font-size: 3rem;
  }
  .main-title svg {
    width: 2.5rem;
  }
}
@media (min-width: 1400px) {
  .main-title {
    gap: 1rem;
  }
  .main-title svg {
    width: 4rem;
  }
}

[dir=rtl] .main-title svg {
  transform: scale(-1);
}

/*------------- #tab-content & accordion_body style --------------*/
.tabs-content-area .tab-content {
  display: none;
}

.tabs-content-area .tab-content.active {
  display: block;
}

.accordion-panels .panel-item .accordion_body {
  display: none;
}

.accordion-panels .panel-item.opened .accordion_body {
  display: block;
}

/*------------- #loading-overlay--------------*/
.loading-overlay {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.loading-overlay:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--loading-bg, inherit);
  opacity: 1;
  z-index: 100;
}

.loading-overlay:after {
  --border-w: 3px;
  content: "";
  position: absolute;
  border: var(--border-w) solid transparent;
  border-radius: 100%;
  border-top: var(--border-w) solid !important;
  border-right: var(--border-w) solid !important;
  border-bottom: var(--border-w) solid !important;
  border-left: var(--border-w) solid transparent !important;
  display: block;
  width: var(--dim, 24px);
  height: var(--dim, 24px);
  top: 50%;
  margin-top: calc(var(--dim, 24px) / 2 * -1);
  left: 50%;
  margin-left: calc(var(--dim, 24px) / 2 * -1);
  animation: spin 1s linear infinite;
  z-index: 100;
  color: var(--loading-clr, inherit);
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
/*------------- #top-nav--------------*/
:root {
  --nav-h: 8.75rem;
}

@media not (min-width: 1024px) {
  :root {
    --nav-h: 4.6875rem;
  }
}
.top-nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--nav-h);
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 999;
}
.top-nav::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 61.95%, rgba(0, 0, 0, 0) 100%);
  content: "";
}
.top-nav .theme-container {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.top-nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}
.top-nav .nav-logo img {
  height: 2.8125rem;
}
.top-nav .nav-list {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: var(--clr-white);
}
.top-nav .nav-list .nav-item {
  display: flex;
  align-items: center;
  position: relative;
}
.top-nav .nav-list .item-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.top-nav .nav-list .item-link:hover {
  color: var(--clr-yellow);
}
.top-nav .nav-toggler {
  display: flex;
  align-items: center;
}
.top-nav .nav-toggler svg {
  color: var(--clr-white);
  width: 1.75rem;
  height: 1.75rem;
}
.top-nav .nav-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  min-width: 9.375rem;
  max-height: 3.375rem;
  transition: all 0.3s ease;
}
.top-nav .nav-lang:hover {
  background-color: var(--clr-yellow);
  color: var(--clr-black);
}
@media not (min-width: 1024px) {
  .top-nav .theme-container {
    align-items: end;
  }
  .top-nav .nav-logo img {
    height: 2.1875rem;
  }
  .top-nav .nav-list {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.92);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    gap: 2rem;
    z-index: 9999;
    padding: 2rem;
    overflow: auto;
    transition: all 0.3s ease;
  }
  .top-nav.active .nav-list {
    top: 0;
  }
}

/*------------- #footer-section--------------*/
.footer-section {
  background-color: var(--clr-black);
  color: var(--clr-white);
}
.footer-section .footer-logo {
  display: flex;
  align-items: center;
}
.footer-section .footer-logo img {
  max-height: 2.8125rem;
}
.footer-section .footer-menu .footer-col .col-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer-section .footer-menu .footer-col .col-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-section .footer-menu .footer-col .col-menu .menu-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.footer-section .footer-menu .footer-col .col-menu .menu-item i {
  font-size: 1rem;
}
.footer-section .footer-menu .footer-col .col-menu a.menu-item:hover {
  color: var(--clr-yellow);
}

/*------------- #aos--------------*/
[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 1.5s;
}

/*------------- #hero-section --------------*/
.hero-section {
  padding-top: var(--nav-h);
  background-color: var(--clr-black);
  position: relative;
  min-height: 100vh;
}
.hero-section .hero-slider-container {
  position: absolute;
  inset: 0;
}
.hero-section .hero-slider-container .swiper {
  height: 100%;
}
.hero-section .hero-slider-container .swiper-slide .slide-item {
  height: 100%;
}
.hero-section .hero-slider-container .swiper-slide .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .hero-content {
  height: 100%;
  min-height: inherit;
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  padding: var(--section-space-lg-2x) 0;
}
.hero-section .hero-content::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 88%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 37.83%);
}
.hero-section .hero-content::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.hero-section .hero-content .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
}
.hero-section .hero-content .content-texts {
  gap: 1.25rem;
  max-width: 52rem;
  margin-bottom: 3.25rem;
}
.hero-section .hero-content .content-texts .hero-text {
  color: var(--clr-white-70);
  font-weight: 500;
}
.hero-section .hero-content .content-texts .hero-btn {
  background-color: var(--clr-white);
  color: var(--clr-black);
  font-size: 1.125rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  max-width: 17.5rem;
  width: 100%;
  padding: 0.75rem 2.5rem;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.hero-section .hero-content .content-texts .hero-btn:hover {
  background-color: var(--clr-yellow);
}
.hero-section .hero-content .content-brands {
  gap: 2.5rem;
  max-width: 58.25rem;
}
.hero-section .hero-content .content-brands .hero-divider {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--clr-white-70);
}
.hero-section .hero-content .content-brands .hero-divider::before, .hero-section .hero-content .content-brands .hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.hero-section .hero-content .content-brands .hero-divider span {
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: capitalize;
}
.hero-section .hero-content .content-brands .hero-logos .logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  filter: blur(0);
  font-size: 0.875rem;
  color: var(--clr-white);
}
.hero-section .hero-content .content-brands .hero-logos .logo-item img {
  height: 7.5rem;
}
.hero-section .hero-content .content-brands .hero-logos .logo-item:hover {
  transform: translateY(-4px);
  color: var(--clr-yellow);
}
.hero-section .hero-content .theme-container {
  position: relative;
  z-index: 1;
}

/*------------- #about-section (tailwind)--------------*/
/*------------- #investment-section--------------*/
.investment-section .investment-wrapper {
  margin-top: calc(var(--section-space) - 2.5rem);
}
.investment-section .grid {
  margin: -0.125rem -0.0625rem;
}
.investment-section .investment-item {
  padding: 2.5rem 2rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.08);
}
.investment-section .investment-item .item-no {
  background-color: var(--clr-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100%;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.investment-section .investment-item .item-text {
  font-size: 1.75rem;
}
@media not (min-width: 1024px) {
  .investment-section .investment-item {
    padding-inline: 0px;
  }
}
@media not (min-width: 640px) {
  .investment-section .investment-item:last-child {
    padding-bottom: 0;
  }
  .investment-section .investment-item .item-no,
  .investment-section .investment-item .item-text {
    font-size: 1.25rem;
  }
}
@media (min-width: 640px) {
  .investment-section .investment-wrapper {
    margin-top: calc(var(--section-space-lg) - 2.5rem);
  }
}

/*------------- #numbers-section--------------*/
.numbers-section .numbers-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 500px;
  display: block;
}
.numbers-section .numbers-wrapper {
  position: relative;
  background-color: var(--clr-black);
  padding-bottom: var(--section-space-2x);
  margin-top: -10%;
}
.numbers-section .numbers-wrapper::before {
  position: absolute;
  left: 0;
  bottom: 100%;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  width: 100%;
  height: 80%;
}
.numbers-section .numbers-wrapper .number-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--clr-white);
  position: relative;
  padding: 0 1.5rem;
}
.numbers-section .numbers-wrapper .number-item .item-no {
  font-size: 2.5rem;
}
.numbers-section .numbers-wrapper .number-item .item-text {
  font-size: 1.25rem;
  color: var(--clr-white-60);
  text-transform: capitalize;
}
@media not (min-width: 1024px) {
  .numbers-section .numbers-wrapper::before {
    height: 40%;
  }
}
@media not (min-width: 640px) {
  .numbers-section .numbers-wrapper .number-item {
    padding: 0 0.75rem;
  }
  .numbers-section .numbers-wrapper .number-item .item-no {
    font-size: 2rem;
  }
  .numbers-section .numbers-wrapper .number-item .item-text {
    font-size: 1.125rem;
  }
}

/*------------- #values-section--------------*/
.values-section {
  background-color: var(--clr-black);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.values-section::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70%;
  content: "";
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.values-section .value-box {
  display: flex;
  flex-direction: column;
  background-color: rgb(69, 69, 69);
  border-radius: 1rem;
  color: var(--clr-white);
  padding: 1.5rem 1rem;
  height: 100%;
}
.values-section .value-box, .values-section .value-box > * {
  transition: inherit;
}
.values-section .value-box .box-no {
  background-color: var(--clr-white);
  color: var(--clr-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  font-size: 1.125rem;
  font-weight: 500;
}
.values-section .value-box .box-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
  font-weight: 600;
}
.values-section .value-box .box-text {
  font-size: 1.25rem;
  color: var(--clr-white-70);
}
.values-section .values-slider-container .swiper-slide {
  height: auto;
  transition: all 0.3s ease;
}
.values-section .values-slider-container .swiper-slide.swiper-slide-active .value-box {
  background-color: var(--clr-white);
  color: var(--clr-black);
}
.values-section .values-slider-container .swiper-slide.swiper-slide-active .value-box .box-no {
  background-color: var(--clr-yellow);
}
.values-section .values-slider-container .swiper-slide.swiper-slide-active .value-box .box-text {
  color: inherit;
}
.values-section .values-slider-container .swiper-slide.swiper-slide-prev {
  opacity: 0;
}
.values-section .values-slider-container .slider-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 32.5rem;
  width: 100%;
  margin-inline-start: auto;
  gap: 1rem;
  height: 2.625rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.values-section .values-slider-container .slider-actions .swiper-pagination {
  position: relative;
  height: 0.375rem;
  max-width: 20.625rem;
  background: rgb(69, 69, 69);
}
.values-section .values-slider-container .slider-actions .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--clr-white);
}
.values-section .values-slider-container .slider-actions .swiper-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.values-section .values-slider-container .slider-actions .swiper-arrows .swiper-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border: 1px solid rgb(128, 128, 128);
  color: var(--clr-white);
  font-size: 1rem;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.values-section .values-slider-container .slider-actions .swiper-arrows .swiper-arrow:hover {
  background-color: var(--clr-white);
  border-color: var(--clr-white);
  color: var(--clr-black);
}
@media (min-width: 1024px) {
  .values-section .values-slider-container .swiper {
    overflow: visible;
  }
}
@media (min-width: 1280px) {
  .values-section .values-slider-container .swiper .swiper-slide {
    padding-top: calc(2.625rem + 2rem);
  }
  .values-section .values-slider-container .slider-actions {
    margin-bottom: -2.625rem;
    margin-top: -2.625rem;
  }
}
@media not (min-width: 640px) {
  .values-section .value-box .box-title,
  .values-section .value-box .box-text {
    font-size: 1.125rem;
  }
  .values-section .values-slider-container .slider-actions {
    margin-top: 0;
  }
  .values-section .values-slider-container .slider-actions .swiper-arrows .swiper-arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/*------------- #message-section (tailwind)--------------*/
/*------------- #team-section--------------*/
.team-section .grid-col {
  --box-width: 17.5rem;
}
.team-section .team-item {
  --card-h: 31.25rem;
  display: flex;
  align-items: center;
  justify-content: end;
  text-align: center;
  flex-direction: column;
  height: var(--card-h);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 2rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.team-section .team-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 9.375rem;
  content: "";
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 36.93%, rgba(0, 0, 0, 0) 100%);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  z-index: 1;
  transition: inherit;
}
.team-section .team-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-section .team-item .item-text {
  position: relative;
  z-index: 2;
  font-size: 1.75rem;
  color: var(--clr-white);
  transition: inherit;
  text-transform: uppercase;
}
.team-section .team-item .item-sub-text {
  position: relative;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--clr-white-70);
  z-index: 2;
  display: inline-block;
}
.team-section .team-item:hover::before {
  height: 10.625rem;
}
.team-section .team-item:hover .item-text {
  color: var(--clr-yellow);
}
@media not (min-width: 640px) {
  .team-section .team-item {
    --card-h: 25rem;
  }
  .team-section .team-item .item-text {
    font-size: 1.5rem;
  }
}

/*------------- #offering-section (tailwind)--------------*/
/*------------- #sub-steps-section (tailwind)--------------*/
/*------------- #schedule-section--------------*/
.schedule-section .timeline-item {
  display: flex;
  min-height: 12.5rem;
  gap: 0.75rem;
}
.schedule-section .timeline-item > * {
  flex: 1;
}
.schedule-section .timeline-item .item-date {
  max-width: 8.125rem;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 1.5rem;
  background-color: var(--clr-yellow);
}
.schedule-section .timeline-item .item-date p {
  position: relative;
  font-size: 1.5rem;
  color: var(--clr-white);
}
.schedule-section .timeline-item .item-date .date-icon {
  width: 0.9375rem;
  position: absolute;
  margin: -1px;
}
.schedule-section .timeline-item .item-content {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}
.schedule-section .timeline-item .item-content .content-title {
  color: var(--clr-yellow);
  font-size: 1.5rem;
}
.schedule-section .timeline-item .item-content .content-sub-title {
  margin-top: 0.25rem;
  font-size: 1.125rem;
}
.schedule-section .timeline-item .item-content .content-text {
  color: var(--clr-black-70);
  margin-top: 1rem;
  font-size: 1rem;
}
.schedule-section .timeline-item .item-space {
  display: none;
}
.schedule-section .timeline-item:nth-child(even) .item-date::before {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 640px) {
  .schedule-section .timeline-item {
    min-height: 15.625rem;
  }
  .schedule-section .timeline-item .item-date {
    max-width: 12.5rem;
  }
  .schedule-section .timeline-item .item-date p {
    font-size: 2.5rem;
  }
  .schedule-section .timeline-item .item-content .content-title {
    font-size: 2.5rem;
  }
  .schedule-section .timeline-item .item-content .content-sub-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .schedule-section .timeline-item {
    gap: 0 2rem;
    height: 18.875rem;
  }
  .schedule-section .timeline-item .item-space {
    display: block;
  }
  .schedule-section .timeline-item .item-date {
    max-width: 16.25rem;
    padding: 2.5rem 1.5rem;
  }
  .schedule-section .timeline-item .item-date p {
    font-size: 3rem;
  }
  .schedule-section .timeline-item .item-date .date-icon {
    width: 1.875rem;
  }
  .schedule-section .timeline-item .item-content {
    padding-top: 2.5rem;
  }
  .schedule-section .timeline-item .item-content .content-title {
    font-size: 3rem;
  }
  .schedule-section .timeline-item .item-content .content-sub-title {
    font-size: 2rem;
  }
  .schedule-section .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1280px) {
  .schedule-section .timeline-item {
    gap: 0 4rem;
  }
}

/*------------- #files-section--------------*/
.files-section .file-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 2rem;
  background-color: var(--clr-white);
  -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  height: 100%;
}
.files-section .file-item .file-name {
  font-size: 1rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  position: relative;
}
.files-section .file-item .file-link {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-yellow);
  transition: all 0.3s ease;
}
.files-section .file-item .file-link svg {
  stroke: var(--clr-yellow);
  width: 1.125rem;
  height: 1.125rem;
  transition: inherit;
}
.files-section .file-item .file-link:hover {
  background-color: var(--clr-yellow);
  border-color: var(--clr-yellow);
  color: var(--clr-black);
}
.files-section .file-item .file-link:hover svg {
  stroke: var(--clr-black);
}
@media (min-width: 1024px) {
  .files-section .file-item {
    padding: 0.5rem 2.5rem;
  }
  .files-section .file-item .file-link {
    width: 2.375rem;
    height: 2.375rem;
  }
  .files-section .file-item .file-link svg {
    width: 1.375rem;
    height: 1.375rem;
  }
}

/*------------- #advisor-section--------------*/
.advisor-wrapper {
  padding: 2rem 0;
  border-radius: 0.75rem;
  background-color: var(--clr-gray-section);
}
.advisor-wrapper .advisor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  position: relative;
  padding: 0 1rem;
}
.advisor-wrapper .advisor-item:not(:nth-child(even)) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.advisor-wrapper .advisor-item .item-img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 4.375rem;
  max-width: 80%;
}
.advisor-wrapper .advisor-item .item-text {
  font-size: 1.5rem;
  color: var(--clr-black-70);
  max-width: 33.75rem;
}
@media (min-width: 768px) {
  .advisor-wrapper .advisor-item {
    padding: 0 1.5rem;
  }
  .advisor-wrapper .advisor-item:not(:nth-child(even)) {
    border-bottom: none;
    padding-bottom: 0;
    border-inline-end: 1px solid rgba(0, 0, 0, 0.2);
  }
  .advisor-wrapper .advisor-item .item-img {
    max-width: none;
  }
  .advisor-wrapper .advisor-item .item-text {
    font-size: 2rem;
  }
}

/*------------- #entities-section--------------*/
.entities-section .entity-item {
  --box-width: calc(100% / 1.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 12.5rem;
  max-height: 3.75rem;
  padding: 0 0.5rem;
}
.entities-section .entity-item img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------- #faqs-section--------------*/
.faqs-section .faqs-panels .panel-item {
  padding-inline: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--clr-white);
}
.faqs-section .faqs-panels .panel-item .accordion_header {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.5rem;
  cursor: pointer;
}
.faqs-section .faqs-panels .panel-item .accordion_header .panel-title {
  font-weight: 600;
  font-size: 1.25rem;
}
.faqs-section .faqs-panels .panel-item .accordion_header .panel-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  transition: inherit;
  background-color: rgb(236, 236, 238);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(0);
}
.faqs-section .faqs-panels .panel-item .accordion_body {
  padding-bottom: 1.5rem;
}
.faqs-section .faqs-panels .panel-item .body-content {
  font-size: 1.125rem;
  color: var(--clr-black-80);
}
.faqs-section .faqs-panels .panel-item.active .panel-icon {
  transform: rotate(-180deg);
}
@media not (min-width: 640px) {
  .faqs-section .faqs-panels .panel-item {
    padding-inline: 0.75rem;
  }
  .faqs-section .faqs-panels .panel-item .accordion_header .panel-title {
    font-size: 1.125rem;
  }
  .faqs-section .faqs-panels .panel-item .accordion_header .panel-icon {
    font-size: 14px;
    width: 1.75rem;
    height: 1.75rem;
  }
  .faqs-section .faqs-panels .panel-item .body-content {
    font-size: 1rem;
  }
}
.faqs-section .faqs-img {
  height: 100%;
  position: relative;
  height: 18.75rem;
}
.faqs-section .faqs-img img {
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 640px) {
  .faqs-section .faqs-img {
    height: 25rem;
  }
}
@media (min-width: 1024px) {
  .faqs-section .faqs-img {
    min-height: 31.25rem;
    height: 100%;
  }
}

/*------------- #contact-section--------------*/
.contact-section .contact-box {
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: var(--clr-gray-section);
  border-radius: 0.75rem;
  text-align: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}
.contact-section .contact-box img {
  max-height: 3.75rem;
  display: block;
  margin: 0 auto;
}
.contact-section .contact-box p {
  font-size: 1.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 1.5rem;
}
.contact-section .contact-box:hover {
  color: var(--clr-yellow);
}
@media (min-width: 1024px) {
  .contact-section .contact-box {
    max-width: 35rem;
    margin: 0 auto;
  }
}
@media (min-width: 640px) {
  .contact-section .contact-box p {
    font-size: 2rem;
    flex: 1;
  }
}

/*------------- #philosophy-section--------------*/
.philosophy-section {
  background-color: var(--clr-black);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.philosophy-section::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.philosophy-section .philosophy-box {
  position: relative;
  max-width: 75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  color: var(--clr-white);
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  border: 7px solid var(--clr-yellow);
}
.philosophy-section .philosophy-box p {
  position: relative;
  max-width: 59.375rem;
  margin: 0 auto;
  font-size: 2.25rem;
}
.philosophy-section .philosophy-box p span {
  color: var(--clr-yellow);
}
@media (min-width: 640px) {
  .philosophy-section .philosophy-box {
    padding: 5rem 2rem;
  }
  .philosophy-section .philosophy-box p {
    font-size: 3rem;
  }
}

/*------------- #home popup--------------*/
.tabs-area .tab-content {
  display: none;
}

.tabs-area .tab-content.active {
  display: block;
}

.accordion-panels .panel-item .accordion_body {
  display: none;
}

.accordion-panels .panel-item.opened .accordion_body {
  display: block;
}

#information-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  margin: auto;
  width: calc(100% - 30px);
  max-width: 72.5rem;
  height: 80%;
  max-height: 44rem;
  overflow: auto;
  border-radius: 0.5rem;
}
#information-popup\!.hidden + .disclaimer-overlay {
  display: none !important;
}
#information-popup.\!flex + .disclaimer-overlay {
  display: block !important;
}
#information-popup::-webkit-scrollbar {
  display: none;
}
#information-popup .ii__wrapper {
  background-color: #fff;
  margin: auto;
  border-radius: 0.5rem;
}
#information-popup .ii__wrapper .scroll-content {
  height: 19.375rem;
  overflow-y: scroll;
  padding-inline-end: 2.813rem;
}
#information-popup .ii__wrapper .scroll-content::-webkit-scrollbar {
  width: 10px;
}
#information-popup .ii__wrapper .scroll-content::-webkit-scrollbar-track {
  background: #bdbdbd;
}
#information-popup .ii__wrapper .scroll-content::-webkit-scrollbar-thumb {
  background: var(--clr-yellow);
  border-radius: 0.5rem;
}
#information-popup .ii__wrapper .scroll-content::-webkit-scrollbar-thumb:hover {
  background: var(--clr-yellow);
}
#information-popup .ii__wrapper .ii__title {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  font-size: 2rem;
  color: var(--clr-yellow);
}
#information-popup .ii__wrapper .ii__select {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#information-popup .ii__wrapper .ii__select .ii__select-text {
  margin-bottom: 0.9375rem;
  color: var(--clr-yellow);
  font-size: 1.375rem;
  font-weight: 400;
}
#information-popup .ii__wrapper .ii__select #country-selection {
  width: 100%;
  background-color: #f5f5f5;
  height: 2.875rem;
  padding: 0 0.9375rem;
  outline: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
#information-popup .ii__wrapper .ii__btn-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
#information-popup .ii__wrapper .ii__btn-wrap .ii__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  text-align: center;
  border: 1px solid var(--clr-yellow);
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-size: 18px;
}
#information-popup .ii__wrapper .ii__btn-wrap .ii__btn[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
#information-popup .ii__wrapper .ii__btn-wrap .ii__btn.ii__continue {
  background-color: var(--clr-yellow);
  color: #fff;
}
#information-popup .ii__wrapper .ii__btn-wrap .ii__btn.ii__continue:hover {
  background-color: var(--clr-yellow-hvr);
  border-color: var(--clr-yellow-hvr);
}
#information-popup .ii__wrapper .ii__btn-wrap .ii__btn.ii__cancel {
  color: var(--clr-yellow);
  background-color: #fff;
}
#information-popup .ii__wrapper .ii__btn-wrap .ii__btn.ii__cancel:hover {
  background-color: var(--clr-yellow-hvr);
  border-color: var(--clr-yellow-hvr);
  color: #fff;
}
#information-popup .radio-group {
  display: flex;
  gap: 1rem;
}
#information-popup .radio-group .radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
#information-popup .radio-group .radio-option input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  border: 2px solid var(--clr-yellow);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
#information-popup .radio-group .radio-option input[type=radio]:checked {
  background-color: var(--clr-yellow);
}
#information-popup .radio-group .radio-option input[type=radio]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 50%;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
}
#information-popup .radio-group .radio-option label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 20px;
  font-weight: bold;
}

.disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}/*# sourceMappingURL=main.css.map */