/*********************************************************************************************
** Table of Contents:                                                                       **
**********************************************************************************************

Project:    TGP - HTML Template for Saudi Tour Guides Program Website
Version:    1.0.0
Created:    06/2022

1.  Color Codes
    ------------------------------
    1.  Primary Color
    2.  Secondary Color
    3.  Light Color
    4.  Dark Color
    5.  Success Color
    6.  Info Color
    7.  Warning Color
    8.  Danger Color
    ------------------------------

2.  Variables
    ------------------------------

3.  Animations
    ------------------------------
    1.  Fade Effects
    2.  Spinner Effects
    3.  Slide Effects
    ------------------------------

4.  Global & Reset Styles
    ------------------------------

5.  UI Styles
    ------------------------------
    1.  Inner Header
    2.  Accordion
    3.  Flip Cards
    4.  Lists
    5.  Forms
    ------------------------------

6.  Components Styles
    ------------------------------
    1.  Preloader
    2.  Custom Scrollbar
    3.  Footer
    4.  Header
    ------------------------------

7.  Pages Styles
    ------------------------------
    1.  Homepage
    2.  Global Page
    3.  Terms & Policies
    4.  Sign In
    5.  Contact Us
    ------------------------------

*********************************************************************************************/
/*-----------------------------------------------------------------------------------------*/
/* 1. Color Codes */
/*-----------------------------------------------------------------------------------------*/
:root {
    /* primary color */
    --primary-h: 182;
    --primary-s: 96%;
    --primary-l: 10%;
    --primary-color: #0088ff;
    /* secondary color */
    --secondary-h: 167;
    --secondary-s: 100%;
    --secondary-l: 43%;
    --secondary-color: #002ed1;
    /* light color */
    --light-h: 0;
    --light-s: 0%;
    --light-l: 100%;
    --light-color: var(--light-h), var(--light-s), var(--light-l);
    /* dark color */
    --dark-h: 0;
    --dark-s: 0%;
    --dark-l: 13%;
    --dark-color: var(--dark-h), var(--dark-s), var(--dark-l);
    /* success color */
    --success-h: 135;
    --success-s: 60%;
    --success-l: 40%;
    --success-color: var(--success-h), var(--success-s), var(--success-l);
    /* danger color */
    --danger-h: 355;
    --danger-s: 70%;
    --danger-l: 55%;
    --danger-color: var(--danger-h), var(--danger-s), var(--danger-l);
    /* warning color */
    --warning-h: 45;
    --warning-s: 100%;
    --warning-l: 50%;
    --warning-color: var(--warning-h), var(--warning-s), var(--warning-l);
    /* info color */
    --info-h: 180;
    --info-s: 80%;
    --info-l: 40%;
    --info-color: var(--info-h), var(--info-s), var(--info-l);
    /* final colors */
    /*--------------*/
    --main-color-one: var(--primary-color);
    --main-color-two: var(--secondary-color);
    --bg-color-one: var(--light-color);
    --bg-color-two: var(--light-h), var(--light-s), calc(var(--light-l) - 10%);
    --bg-color-reverse: var(--dark-color);
    --inputs-bg-color: var(--light-h), var(--light-s), calc(var(--light-l) - 6%);
    --inputs-disabled-bg-color: var(--light-h), var(--light-s), calc(var(--light-l) - 10%);
    --t-color-one: var(--dark-color);
    --t-color-two: var(--dark-h), var(--dark-s), calc(var(--dark-l) + 25%);
    --border-color: var(--light-h), var(--light-s), calc(var(--light-l) - 5%);
    --card-shadow: 0px 8px 32px hsla(0, 0%, 0%, 10%);
    --inset-shadow: inset 0 2px 4px hsla(0, 0%, 0%, 0.08);
    --drop-shadow: drop-shadow(0 0 7px hsla(0, 0%, 0%, 12%));
}

/*-----------------------------------------------------------------------------------------*/
/* 2. Variables */
/*-----------------------------------------------------------------------------------------*/
:root {
  --headings-font-family: "Tajawal", sans-serif;
  --body-font-family: "Tajawal", sans-serif;
  --big-nav-height: 6.25rem;
  --small-nav-height: 3.75rem;
  --header-minimize-transition: 0.4s ease-in-out;
  --side-menu-width: 18.75rem;
  --control-height: 2.75rem;
  --radius-size: 0.25rem;
}

/*-----------------------------------------------------------------------------------------*/
/* 3. Animations */
/*-----------------------------------------------------------------------------------------*/
/* Fade Effects */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    margin-top: 1.25rem;
  }

  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    margin-top: 1.25rem;
  }

  100% {
    opacity: 1;
    margin-top: 0;
  }
}

/* Spinner Effects */
@-webkit-keyframes spinner-left {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-left {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner-right {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes spinner-right {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* Slide Effects */
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(2rem);
    transform: translateX(2rem);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(2rem);
    transform: translateX(2rem);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-2rem);
    transform: translateX(-2rem);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-2rem);
    transform: translateX(-2rem);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*-----------------------------------------------------------------------------------------*/
/* 4. Global & Reset Styles */
/*-----------------------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  background-color: var(--main-color-two);
  color: var(--light-color);
}

::selection {
  background-color: var(--main-color-two);
  color: var(--light-color);
}

html {
  scroll-behavior: smooth;
}

html body {
  text-align: initial;
  overflow-x: hidden;
}

.hidden {
  display: none;
}

.ltr-dir {
  direction: ltr;
  display: inline-block;
}

.rtl-mirror {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

input[type=email],
input[type=tel] {
  direction: ltr;
}

input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder {
  text-align: end;
}

input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder {
  text-align: end;
}

input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder {
  text-align: end;
}

input[type=email]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder {
  text-align: end;
}

input[type=email]::placeholder,
input[type=tel]::placeholder {
  text-align: end;
}

hr {
  width: 100%;
  margin: 0;
}

ol,
ul {
  list-style: none;
  line-height: 2rem;
  padding: 0;
  margin: 0;
}

a,
button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 0 !important;
  cursor: pointer;
}

button {
  background: none;
  padding: 0;
  border: none;
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font-size: inherit;
  font-family: inherit !important;
}

input:invalid,
input:required,
textarea:invalid,
textarea:required {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#app-inner {
  min-height: 100vh;
  width: 100%;
  background-color: hsl(var(--bg-color-two));
  color: hsl(var(--t-color-two));
  font-family: var(--body-font-family);
  line-height: 1.5rem;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
label {
  color: hsl(var(--t-color-one));
  font-family: var(--headings-font-family);
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.8rem;
}

@media (max-width: 767px) {
  .btns-container>* {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .btns-container>*:not(:last-of-type) {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .btns-container>*:not(:last-of-type) {
    margin-bottom: 12px;
  }
}

.DOM-slider-hidden * {
  visibility: hidden;
}

.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section__title {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section__title__heading {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .section__title__heading {
    font-size: 1.5rem;
  }
}

/* back to top button */
webrouk-back-top-scroll-indicator {
  --w-primary-color: var(--main-color-two);
  z-index: 3000;
}

/* splide slider customization */
.splide__pagination__page.is-active {
  background-color: var(--main-color-two);
}

/*------------------------------------------------------------------------------------------*/
/* 5. UI Styles */
/*------------------------------------------------------------------------------------------*/
/* Inner Header Styles */
/*---------------------*/
.innerHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
  background: url("../assets/images/shapes-bg.jpg") no-repeat center/cover;
  -webkit-box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
}

.innerHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(107.15deg, rgba(0, 136, 255, 0.8) 23.44%, rgba(163, 173, 194, 0.608) 63.02%, rgba(175, 250, 255, 0.8) 93.75%);
  mix-blend-mode: multiply;
}

.innerHeader.dashboard {
  height: 12.5rem;
}

.innerHeader:not(.dashboard) {
  height: 20rem;
}

.innerHeader:not(.dashboard) .innerHeader__title {
  padding-top: 3rem;
}

.innerHeader__title {
  position: relative;
  color: var(--light-color) !important;
  margin: 0;
}

@media (min-width: 992px) {
  .innerHeader__title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .innerHeader__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .innerHeader__title {
    font-size: 2rem;
  }
}

/* Lists Styles */
/*--------------*/
.list-styled .list-styled {
  padding: 1rem 2rem 1rem 0;
}

.list-styled.text-indent {
  padding-right: 1rem;
}

.list-styled li {
  line-height: 2rem;
  font-size: 1.125rem;
}

.list-styled li:not(:last-of-type) {
  margin-bottom: 0.75rem;
}

.list-styled li:before {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.875rem;
}

ol.list-styled,
.ordered {
  counter-reset: li;
}

ol.list-styled>li,
.ordered>li {
  padding-right: 2.25rem;
  margin-right: -2.25rem;
}

ol.list-styled>li:before,
.ordered>li:before {
  content: counter(li);
  counter-increment: li;
  line-height: 1.5rem;
  background-color: var(--main-color-two);
  color: var(--light-color);
  text-align: center;
  font-size: 1em;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

ul.list-styled:not(.circle-style):not(.ticks-style):not(.ordered)>li {
  padding-right: 1.5rem;
  margin-right: -1.5rem;
}

ul.list-styled:not(.circle-style):not(.ticks-style):not(.ordered)>li:before {
  content: "";
  width: 0.75rem;
  height: 0.2rem;
  background-color: var(--main-color-two);
  border-radius: var(--radius-size);
}

ul.list-styled.circle-style:not(.ticks-style):not(.ordered)>li {
  padding-right: 1.75rem;
  margin-right: -1.75rem;
}

ul.list-styled.circle-style:not(.ticks-style):not(.ordered)>li:before {
  content: "";
  background-color: var(--main-color-two);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

ul.list-styled.ticks-style:not(.circle-style):not(.ordered)>li {
  padding-right: 1.75rem;
  margin-right: -1.75rem;
}

ul.list-styled.ticks-style:not(.circle-style):not(.ordered)>li:before {
  content: "\f00c";
  font-family: FontAwesome;
  color: var(--main-color-two);
}

/* Accordion Styles */
/*------------------*/
.accordion {
  line-height: 2.5rem;
}

.accordion__tab {
  background-color: hsl(var(--bg-color-one));
  border-radius: var(--radius-size);
  -webkit-box-shadow: var(--calc-shadow);
  box-shadow: var(--calc-shadow);
}

.accordion__tab:not(:last-of-type) {
  margin-bottom: 1.25rem;
}

.accordion__tab__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.125rem;
  min-height: 5.5rem;
  width: 100%;
  padding: 1rem 1.25rem;
}

.accordion__tab__btn:focus {
  outline: none;
}

.accordion__tab__btn:focus {
  -webkit-box-shadow: 0 0 0 3px hsla(var(--main-color-two), 70%);
  box-shadow: 0 0 0 3px hsla(var(--main-color-two), 70%);
}

.accordion__tab__label {
  color: var(--t-color-one);
  text-align: start;
  font-size: 1.375rem;
}

.accordion__tab__plus {
  position: relative;
  display: block;
  height: 2rem;
  width: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: hsl(var(--dark-color));
  border-radius: var(--radius-size);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.accordion__tab__plus::before,
.accordion__tab__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0.125rem;
  width: 1rem;
  background-color: hsl(var(--light-color));
  border-radius: var(--radius-size);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.accordion__tab__plus::before {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.accordion__tab__plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__tab__content {
  line-height: 2rem;
  font-size: 1.125rem;
  padding: 1rem 1.25rem;
  display: none;
}

.accordion__tab--active .accordion__tab__plus {
  background-color: var(--main-color-two);
}

.accordion__tab--active .accordion__tab__plus::after {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Flip Card Styles */
/*------------------*/
.flipCard {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.flipCard__boxes {
  display: grid;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flipCard__front,
.flipCard__back {
  grid-row: 1/2;
  grid-column: 1/2;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flipCard__front {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.flipCard--down .flipCard__back {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

.flipCard--down:hover .flipCard__boxes {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

/*------------------------------------------------------------------------------------------*/
/* 6. Components Styles */
/*------------------------------------------------------------------------------------------*/
/* Preloader Styles */
/*------------------*/
.preloader {
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 5000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: var(--main-color-one);
}

.preloader .preloader-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.preloader .preloader-content .logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.preloader .preloader-content .loading-bar {
  height: 0.25rem;
  width: 11.25rem;
  background-color: var(--bg-color-two);
  border-radius: 0.25rem;
  overflow: hidden;
}

.preloader .preloader-content .loading-bar .loading-bar-progress {
  display: block;
  height: 100%;
  width: var(--loading-percentage, 0%);
  background-color: var(--main-color-two);
}

.preloader.is-done {
  -webkit-animation: hidePreloader1 1s cubic-bezier(0.87, 0, 0.13, 1) 1s forwards, hidePreloader2 0.5s linear 2s forwards;
  animation: hidePreloader1 1s cubic-bezier(0.87, 0, 0.13, 1) 1s forwards, hidePreloader2 0.5s linear 2s forwards;
}

@-webkit-keyframes hidePreloader1 {
  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes hidePreloader1 {
  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-webkit-keyframes hidePreloader2 {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes hidePreloader2 {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.preloader.is-done .preloader-content {
  -webkit-animation: hidePreloaderContent 0.5s ease 0.5s forwards;
  animation: hidePreloaderContent 0.5s ease 0.5s forwards;
}

@-webkit-keyframes hidePreloaderContent {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes hidePreloaderContent {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.preloader:not(.is-done)+#app-inner {
  visibility: hidden;
}

/* Custom Scrollbar Styles */
/*-------------------------*/
::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  background-color: var(--border-color);
}

::-webkit-scrollbar-thumb {
  background-color: hsla(var(--t-color-one), 70%);
  border-radius: 0.625rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--t-color-one);
}

::-webkit-scrollbar-track-piece:vertical:end {
  background-color: hsla(var(--t-color-one), 20%);
}

/* Footer Styles */
/*---------------*/
.footer {
  background-color: var(--main-color-one);
}

.footer__top {
  padding-top: 3rem;
  padding-bottom: 4rem;
  margin-bottom: -3.125rem;
}

.footer__widget {
  margin-bottom: 3.125rem;
}

.footer__widget__title {
  margin-bottom: 1.75rem;
}

.footer__widget__title__heading {
  position: relative;
  color: hsl(var(--light-color));
  font-size: 1.125rem;
  padding-bottom: 0.5rem;
  margin: 0;
}

.footer__widget__title__heading::after {
  content: "";
  position: absolute;
  /*right: 0;*/
  left: 0;
  bottom: 0;
  height: 0.125rem;
  width: 2.5rem;
  background-color: var(--main-color-two);
}

.footer__widget__content {
  color: hsl(var(--bg-color-two));
  /*padding-right: 0.75rem;*/
  padding-left: 0.75rem;
  /*border-right: 0.0625rem solid var(--main-color-two);*/
  border-left: 0.0625rem solid var(--main-color-two);
}

.footer__widget__text:not(:only-child):not(:last-child) {
  margin-bottom: 1.5rem;
}

.footer__widget__links__link {
  display: inline-block;
}

.footer__widget__links__link:hover {
  color: var(--main-color-two);
}

.footer__widget__links__link:focus {
  outline: none;
}

.footer__widget__links__link:focus {
  -webkit-box-shadow: 0 0 0 3px hsla(var(--main-color-two), 70%);
  box-shadow: 0 0 0 3px hsla(var(--main-color-two), 70%);
}

.footer__bottom {
  background-color: var(--bg-color-two);
  line-height: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 767px) {
  .footer__bottom {
    text-align: center;
  }

  .footer__bottom__social,
  .footer__bottom__copyright {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer__bottom__social a {
  color: white;
  font-size: 1.25rem;
}

.footer__bottom__social a:hover {
  color: var(--main-color-two);
}

.footer__bottom__copyright {
  color: white;
}

/* Header Styles */
/*---------------*/
.header {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-transition: top var(--header-minimize-transition), background-color var(--header-minimize-transition), -webkit-box-shadow var(--header-minimize-transition);
  transition: top var(--header-minimize-transition), background-color var(--header-minimize-transition), -webkit-box-shadow var(--header-minimize-transition);
  transition: top var(--header-minimize-transition), background-color var(--header-minimize-transition), box-shadow var(--header-minimize-transition);
  transition: top var(--header-minimize-transition), background-color var(--header-minimize-transition), box-shadow var(--header-minimize-transition), -webkit-box-shadow var(--header-minimize-transition);
  /* for minimizing the header on scrolling down */
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: var(--big-nav-height);
  -webkit-transition: height var(--header-minimize-transition);
  transition: height var(--header-minimize-transition);
}

.header__logo {
  margin: 0;
}

.header__logo__link {
  display: block;
}

.header__logo__img {
  display: block;
  max-height: var(--big-nav-height);
  -webkit-transition: max-height var(--header-minimize-transition);
  transition: max-height var(--header-minimize-transition);
}

.header:not(.header--expanded) {
  background-color: var(--main-color-two);
  -webkit-box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
}

.header:not(.header--minimized) {
  top: 0;
}

.header--expanded {
  background: -webkit-gradient(linear, left top, left bottom, from(hsl(0deg, 0%, 0%)), to(hsla(0deg, 0%, 100%, 0)));
  background: linear-gradient(180deg, hsl(0deg, 0%, 0%) 0%, hsla(0deg, 0%, 100%, 0) 100%);
}

.header--minimized {
  top: calc(var(--small-nav-height) * -1);
}

@media (min-width: 992px) {
  .header:not(.header--expanded) .header__container {
    height: var(--small-nav-height);
  }

  .header:not(.header--expanded) .header__logo__img {
    max-height: calc(var(--small-nav-height) - 8px);
  }

  .header .hamburgerBtn {
    display: none;
  }
}

@media (max-width: 991px) {
  .header .header__container {
    height: var(--small-nav-height);
  }

  .header .header__logo__img {
    max-height: calc(var(--small-nav-height) - 8px);
  }
}

/* Hamburger Button Styles */
/*-------------------------*/
.hamburgerBtn {
  position: relative;
  display: block;
  height: 1.0625rem;
  width: 1.25rem;
}

.hamburgerBtn__item {
  display: block;
  position: absolute;
  left: 0;
  height: 0.1875rem;
  background-color: hsl(var(--light-color));
  border-radius: 0.3125rem;
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.hamburgerBtn__item:nth-of-type(1) {
  top: 0;
  width: 66%;
}

.hamburgerBtn__item:nth-of-type(2) {
  top: 0.4375rem;
  width: 100%;
}

.hamburgerBtn__item:nth-of-type(3) {
  top: 0.875rem;
  width: 40%;
}

.hamburgerBtn.sideMenu__open .hamburgerBtn__item:nth-of-type(1),
.hamburgerBtn.sideMenu__open .hamburgerBtn__item:nth-of-type(3) {
  width: 1.1875rem;
}

.hamburgerBtn.sideMenu__open .hamburgerBtn__item:nth-of-type(1) {
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: rotate(44deg);
  transform: rotate(44deg);
}

.hamburgerBtn.sideMenu__open .hamburgerBtn__item:nth-of-type(2) {
  width: 0;
}

.hamburgerBtn.sideMenu__open .hamburgerBtn__item:nth-of-type(3) {
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotate(-44deg);
  transform: rotate(-44deg);
}

/* Navigation Menu Styles */
/*------------------------*/
@media (min-width: 992px) {
  .sideMenuWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .sideMenuWrapper {
    position: fixed;
    z-index: 2000;
    top: 0;
    height: 100%;
    width: var(--side-menu-width);
    background-color: var(--main-color-one);
    padding: 0.5rem 1rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    overflow-y: auto;
  }

  .sideMenuWrapper:not(.sideMenu__open) {
    right: calc(var(--side-menu-width) * -1);
  }

  .sideMenuWrapper:not(.sideMenu__open) .sideMenuWrapper__overlay {
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }

  .sideMenuWrapper.sideMenu__open {
    right: 0;
  }

  .sideMenuWrapper.sideMenu__open .sideMenuWrapper__overlay {
    width: calc(100% - var(--side-menu-width));
    right: var(--side-menu-width);
  }
}

.sideMenuWrapper__overlay {
  position: fixed;
  z-index: 1800;
  top: 0;
  left: 0;
  height: 100%;
  background-color: hsla(0deg, 0%, 0%, 0.8);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (min-width: 992px) {
  .sideMenuWrapper__overlay {
    display: none;
  }
}

@media (max-width: 991px) {
  .sideMenuWrapper__overlay {
    display: block;
  }
}

@media (min-width: 992px) {
  .header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .header__links__item:not(:last-of-type) {
    border-bottom: 0.0625rem solid hsla(var(--dark-color), 70%);
  }
}

.header__links__link {
  display: block;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .header__links__link {
    color: white;
    line-height: 2.5rem;
    padding: 0 0.75rem;
  }
}

@media (max-width: 991px) {
  .header__links__link {
    color: var(--bg-color-two);
    padding: 0.75rem 0;
  }
}

.header__links__link:hover,
.header__links__link.active {
  color: var(--main-color-two);
}

/*------------------------------------------------------------------------------------------*/
/* 7. Pages Styles */
/*------------------------------------------------------------------------------------------*/
/* 1. Homepage Styles */
/*--------------------*/
/* 1.1 Hero Section Styles */
/*-------------------------*/
.heroSection .splide__pagination {
  bottom: 1.5em;
}

.heroSection__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
}

.heroSection__slide::after,
.heroSection__slide__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.heroSection__slide::after {
  content: "";
  background: linear-gradient(107.15deg, rgba(0, 136, 255, 0.5) 23.44%, rgba(163, 173, 194, 0.38) 63.02%, rgba(175, 250, 255, 0.5) 93.75%);
  mix-blend-mode: overlay;
}

.heroSection__slide__img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -o-object-fit: cover;
  object-fit: cover;
}

.heroSection__slide__content {
  position: relative;
  z-index: 1700;
  color: var(--light-color);
}

.heroSection__slide__title {
  color: white !important;
  margin-bottom: 2.5rem;
  text-shadow: 0px 0px 10px hsla(0deg, 0%, 0%, 0.4);
}

@media (min-width: 768px) {
  .heroSection__slide__title {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .heroSection__slide__title {
    font-size: 2.5rem;
  }
}

/* 1.2 About Section Styles */
/*--------------------------*/
.section--about {
  background-color: var(--main-color-one);
}

.aboutSC {
  margin-bottom: -3.125rem;
}

.aboutSC__imgBox,
.aboutSC__textBox {
  margin-bottom: 3.125rem;
}

.aboutSC__imgBox__img {
  display: block;
  max-width: 100%;
}

.aboutSC__textBox__title {
  color: hsl(var(--light-color));
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.aboutSC__textBox__paragraph {
  color: hsl(var(--bg-color-two));
  font-size: 1.25rem;
  margin: 0;
}

/* 1.3 Steps Section Styles */
/*--------------------------*/
.section--steps {
  background-color: var(--bg-color-one);
}

.stepsSC__list {
  gap: 3.125rem 0;
}

.stepsSC__item {
  height: 100%;
}

.stepsSC__item__content {
  height: 100%;
  border-radius: var(--radius-size);
  -webkit-box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
}

.stepsSC__item__front {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 3rem;
}

.stepsSC__item__front::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(48.44%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.44%, rgba(0, 0, 0, 0.75) 100%);
}

.stepsSC__item__front__bg {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius-size);
}

.stepsSC__item__front__textBox {
  position: relative;
  z-index: 3;
}

.stepsSC__item__front__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 10.75rem;
  width: 10.75rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(48.44%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.44%, rgba(0, 0, 0, 0.75) 100%);
}

.stepsSC__item__front__icon img {
  display: block;
  max-width: 90%;
}

.stepsSC__item__front__title {
  color: white;
  margin: 0;
}

@media (min-width: 768px) {
  .stepsSC__item__front__title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .stepsSC__item__front__title {
    font-size: 2rem;
  }
}

.stepsSC__item__back {
  background-color: var(--bg-color-two);
  color: var(--t-color-one);
  font-size: 1.125rem;
  padding: 2rem;
}

.stepsSC__item:focus {
  outline: none;
}

.stepsSC__item:focus {
  -webkit-box-shadow: 0 0 0 3px hsla(var(--main-color-two), 70%);
  box-shadow: 0 0 0 3px hsla(var(--main-color-two), 70%);
}

/* 1.4 FAQ Section Styles */
/*------------------------*/
.section--faq {
  background: fixed center/cover no-repeat;
}

/* 1.5 Programs Section Styles */
/*-----------------------------*/
.section--programs {
  background-color: var(--bg-color-one);
}

@media (max-width: 767px) {
  .programsSC .splide__track {
    padding-bottom: 2.25rem;
  }
}

@media (min-width: 768px) {
  .programsSC .splide__pagination {
    bottom: 2em;
  }
}

.programsSC__programsList__link {
  display: block;
}

.programsSC__programsList__img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 2. Global Page Styles */
/*-----------------------*/
.section__content--page .pageSC {
  padding: 4rem 2rem;
  background-color: var(--bg-color-one);
  border-radius: var(--radius-size);
  -webkit-box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
}

/* 3. Terms & Policies page Styles */
/*---------------------------------*/
.termsAndPoliciesSC__list {
  width: 100%;
  max-width: 37rem;
  margin-left: auto;
  margin-right: auto;
}

.termsAndPoliciesSC__list li:not(:last-of-type) {
  margin-bottom: 2.5rem;
}

/* 4. Sign In & Reset Password pages Styles */
/*------------------------------------------*/
.signInSC__form,
.resetPasswordSC__form {
  max-width: 24rem;
  margin: auto;
  padding: 4rem 2rem;
  background-color: var(--bg-color-one);
  border-radius: var(--radius-size);
  -webkit-box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
}

/* 5. Contact Us page Styles */
/*---------------------------*/
.contactSC__form {
  max-width: 37.5rem;
  margin: auto;
  padding: 2rem;
  background-color: var(--bg-color-one);
  border-radius: var(--radius-size);
  -webkit-box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
}