/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Rubik:wght@400;500;600&display=swap");

/* CSS Variables */
:root {
  --font-heading: "Poppins", sans-serif;
  --font-body: "Rubik", sans-serif;
  --font-size: 16px;
  --font-size-sm: 12px;
  --color-primary: #402e7a;
  --color-primary-shade: #55448c;
  --color-secondary: #42e2fe;
  --color-secondary-shade: #3ca6cc;
  --color-yellow: #ffba00;
  --color-white: #ffffff;
  --color-dark: #0C0528;
  --color-medium: #6c757d;
  --color-light: #F2F2F2;
  --color-primary-rgb: 64, 46, 122;
  --color-white-rgb: 255, 255, 255;
  --color-dark-rgb: 12, 5, 40;
  --color-medium-rgb: 141, 141, 141;
  --color-light-rgb: 242, 242, 242;
  --text-dark: var(--color-dark);
  --text-white: var(--color-white);
  --text-medium: var(--color-medium);
  --text-light: var(--color-light);
  --border-color: #cbcbcb;
  ;
  --bg-blue: #0D1034;
  --bg-light: #f8f6ff;
  --gradient-1: linear-gradient(to bottom, var(--color-secondary) 0, var(--color-secondary-shade) 100%);
  --gradient-2: linear-gradient(to top, var(--color-primary) 0, var(--color-primary-shade) 100%);
  --gradient-3: linear-gradient(to top, var(--color-secondary-shade) 0, var(--color-secondary) 100%);
  --breakpoint-xs: "only screen and (max-width: 767.98px)";
  --breakpoint-md: "only screen and (min-width: 768px) and (max-width: 991.98px)";
  --breakpoint-lg: "only screen and (min-width: 992px) and (max-width: 1199.98px)";
  --breakpoint-lg-down: "only screen and (max-width: 991.98px)";
}

/* Reset CSS */
body {
  font-family: var(--font-body);
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

a {
  color: var(--text-dark);
  text-decoration: none;
  outline: 0 !important;
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2,
.h3 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-weight: 700;
  font-size: 64px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

/* Color CSS*/
.color-primary {
  color: var(--color-primary);
}

.color-blue {
  color: var(--color-blue);
}

.color-green {
  color: var(--color-green);
}

.color-red {
  color: var(--color-red);
}

.color-yellow {
  color: var(--color-yellow);
}

.color-purple {
  color: var(--color-primary);
}

.color-orange {
  color: var(--color-orange);
}

.bg-light {
  background: var(--bg-light) !important;
}

/* Padding CSS */
.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-50 {
  padding-bottom: 50px;
}

/* Margin CSS */
.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

/* Button CSS */
.btn {
  font-size: 14px;
  padding: 10px 24px;
  outline: 0 !important;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-transform: capitalize;
  border-radius: 30px;
  border: none;
  box-shadow: none;
  transition: transform 0.4s ease-out;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-sm {
  font-size: 14px;
  padding: 8px 16px;
}

.primary-btn {
  position: relative;
  overflow: hidden;
  color: var(--text-white);
  /* background-color: #ffba00; */
  background-color: var(--color-secondary);
  background: var(--gradient-1);
  box-shadow: 0 4px 8px var(--color-secondary) 0.28 ;
  transition: all 0.4s;
}

.primary-btn:hover {
  color: white;
  background-color: var(--color-primary);
  background: linear-gradient(to top, var(--color-primary) 0, var(--color-primary-shade) 100%);
  box-shadow: 0 4px 8px var(--color-primary-rgb);
  border-top-color: var(--color-primary);
}

.secondary-btn {
  color: var(--color-primary);
  background-color: transparent;
  border: 1px solid var(--color-primary);
}

.secondary-btn:hover {
  color: var(--color-primary);
}

.section-title {
  max-width: 676px;
  margin-left: auto;
  margin-right: auto;
}

.section-title .title {
  margin-bottom: 0;
  color: var(--color-primary);
  -webkit-padding-start: 20px;
  padding-inline-start: 20px;
  -webkit-border-start: 3px solid var(--color-primary);
  border-inline-start: 3px solid var(--color-primary);

}

.section-title .text {
  margin-top: 20px;
  margin-bottom: 0;
}

/* Form CSS */
.form-control {
  box-shadow: unset !important;
  padding:12px 18px;
  font-size: 14px;
  color: var(--color-dark);
  border-color: var(--border-color);
  background-color: transparent;
}

.form-control:focus {
  color: var(--color-dark);
  background-color: transparent;
}

.form-group label{
  margin-bottom: 10px !important;
}

textarea {
  height: auto !important;
}

::-moz-placeholder {
  color: var(--color-medium);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--color-medium);
}

::placeholder {
  color: var(--color-medium);
}

/* Card CSS */
.card {
  height: 100%;
  border: none;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px -5px rgba(8, 0, 42, 0.08);
  transition: all 0.4s;
}

.card .card-title {
  margin-bottom: 10px;
}

.card .card-text {
  margin-bottom: 0;
}

.card .text-muted {
  font-size: 14px;
}

.card:hover {
  transform: translateY(-5px);
}

@media (min-width: 992px) {
  .no-wrap {
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 1200px) {
  .image-left {
    -webkit-margin-start: -100px;
    margin-inline-start: -100px;
  }

  .image-right {
    -webkit-margin-end: -100px;
    margin-inline-end: -100px;
  }

  .container {
    max-width: 1140px;
  }
}

@media only screen and (min-width: 992px) {
  .image-left {
    -webkit-margin-start: -60px;
    margin-inline-start: -60px;
  }

  .image-right {
    -webkit-margin-end: -60px;
    margin-inline-end: -60px;
  }
}

/* -----------------------------------------
    Nav Tabs CSS
----------------------------------------- */
.tabs-navigation .nav {
  display: inline-flex;
  border: none;
  padding: 10px;
  background-color: rgba(var(--color-primary-rgb), 0.13);
  width: 100%;
  border-radius: 10px;
  justify-content: center;
}

.tabs-navigation .nav .nav-link {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  margin: 0 8px;
  z-index: 999;
  border: 0;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transform: none;
}

.tabs-navigation .nav .nav-link:is(.active) {
  color: var(--color-white);
  background-color: var(--color-primary);
  background: var(--gradient-1);
}

.tab-pane.fade {
  transition: all 0.2s;
  transform: translateY(1rem);
}

.tab-pane.fade.show {
  transform: translateY(0rem);
}

@media screen and (max-width: 991px) {
  .table-overflow {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
  }
}

.table thead th {
  background-color: var(--color-primary);
  border: none;
  color: #fff;
}

.table> :not(caption)>*>* {
  padding: 0.8rem 0.8rem;
  vertical-align: middle;
}

.table> :not(:first-child) {
  border-top: 0;
}

.table-overflow {
  background-color: #fff;
  border-radius: 5px;
}

.table {
  margin-bottom: 0;
}

.table-block .icon {
  display: block;
}

.table-block .icon img {
  max-width: 20px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.navbar-brand {
  max-width: 150px;
}

.click-show {
  position: relative;
  overflow: hidden;
  max-height: 75px;
}

.click-show.show {
  max-height: 100% !important;
}

.click-show.show::after {
  opacity: 0;
}

.read-more-btn {
  display: block;
  color: #fff;
  cursor: pointer;
  margin-top: 15px;
  font-weight: var(--font-medium);
}

/* -----------------------------------------
	Header CSS
----------------------------------------- */
.header-area {
  z-index: 999;
  background: var(--bg-light);
}

.header-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: slideDown 0.5s ease-out 1;
  animation: slideDown 0.5s ease-out 1;
}

.header-area .more-option .more-option-toggle {
  z-index: 11;
  font-size: 25px;
  padding: 10px;
}

.header-area .more-option {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-area .more-option .item {
  position: relative;
}

.header-area .more-option .item:not(:last-child) {
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
}

.header-area .logo {
  max-width: 150px;
}

.header-area .header-top {
  padding: 10px 0;
}

.header-area .info-list li:not(:last-child) {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.header-area .info-list a,
.info-list a {
  color: var(--color-primary);
  font-size: 15px;
}

.header-area .info-list i,
.info-list i {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 100px;
  color: white;
  font-size: 14px;
  background: var(--gradient-2);
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

.operator_online a i {
  background: white;
  /* Add the animation property */
  animation: colorChange 0.3s infinite;
  /* Change duration and iteration as needed */
}

.operator_offline a i {
  background: rgb(239, 4, 4) !important;
  color: #ef0d0d;
  /* Add the animation property */
  animation: colorChange2 0.3s infinite;
  /* Change duration and iteration as needed */
}

@keyframes colorChange {
  0% {
    background: #fff;
  }

  50% {
    background: #fff;
  }

  100% {
    background: var(--color-primary);
  }
}



.header-area .info-list .whatsapp i,
.info-list .whatsapp i {
  background: var(--gradient-3);
}

.header-area .info-list .phone i,
.info-list .phone i {
  background: var(--gradient-1);
}

.header-area .navbar-nav {
  margin-inline: auto;
}

.header-area .nav-link {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--text-white);
  font-weight: 400;
  margin-inline: 10px;
}

.header-area .nav-link.toggle i {
  font-size: 14px;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  transition: transform 0.4s ease-out;
}

.header-area .nav-link.toggle:hover i {
  transform: rotate(-90deg);
}

.header-area .nav-link:hover .menu-dropdown {
  transform: none;
}

.header-area .nav-link:hover,
.header-area .nav-link.active,
.header-area .nav-link:focus {
  color: var(--color-secondary);
}

.header-area .main-navbar {
  background-color: var(--color-primary);
  background: var(--gradient-2);
}

.header-area .main-navbar .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.header-area .menu-toggler {
  width: 22px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 1000;
}

.header-area .menu-toggler:focus {
  box-shadow: none !important;
}

.header-area .menu-toggler span {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 10px;
  transition: transform 200ms 0ms, top 200ms 160ms;
}

.header-area .menu-toggler span:nth-child(1) {
  top: -4px;
}

.header-area .menu-toggler span:nth-child(3) {
  top: 4px;
}

.header-area .menu-toggler.active span:nth-child(1) {
  top: 0;
  transform: rotateZ(45deg);
  transition: top 200ms 0ms, transform 200ms 160ms;
}

.header-area .menu-toggler.active span:nth-child(2) {
  transform: scale(0);
}

.header-area .menu-toggler.active span:nth-child(3) {
  top: -4px;
  transform: rotateZ(-45deg);
  transition: top 200ms 0ms, transform 200ms 160ms;
}

.header-area .main-responsive-nav {
  display: none;
}

.header-area .mobile-menu {
  visibility: hidden;
}

@media (max-width: 1199px) {
  .header-area {
    position: relative;
    background: rgba(var(--color-white-rgb), 0.9);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
  }

  .header-area.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }

  .header-area .main-responsive-nav {
    display: block;
    height: 70px;
    line-height: 70px;
    background: var(--gradient-2);
  }

  .header-area .main-responsive-nav>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-area .main-responsive-nav .logo {
    max-width: 130px;
  }

  .header-area .main-navbar {
    display: none;
  }

  .mob-hide {
    display: none !important;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 0;
    overflow: hidden;
    overflow-y: scroll;
    background: var(--gradient-2);
    box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
    transition: all 0.4s ease;
    z-index: 999;
  }

  .mobile-menu .mobile-menu-wrapper {
    margin-top: 60px;
    padding: 0 10px 30px;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu .navbar-nav {
    width: 100%;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }

  .mobile-menu .navbar-nav li a {
    padding: 10px 0;
    border-bottom: 1px solid #55448c;
    transition: all 700ms ease;
  }

  .mobile-menu .navbar-nav li ul {
    -webkit-padding-start: 12px;
    padding-inline-start: 12px;
    list-style-type: none;
  }

  .mobile-menu .navbar-nav li li a {
    font-size: 14px;
  }

  .mobile-menu .more-option {
    padding-top: 20px;
    margin-top: 20px;
    justify-content: center;
  }

  .mobile-menu li.nav-item:not(.show) ul {
    display: none;
  }

  .mobile-menu li.nav-item.show .toggle {
    position: relative;
  }

  .mobile-menu li.nav-item.show .toggle i::before {
    content: "\f068";
  }

  .mobile-menu .nav-link.toggle {
    position: relative;
  }

  .mobile-menu .nav-link.toggle i {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .mobile-menu .nav-link.toggle:hover i {
    transform: translateY(-50%);
  }

  .mobile-menu-active .mobile-menu {
    visibility: visible;
    width: 300px;
  }

  .operator_offline a span,
  .operator_online a span {
    font-size: 11px !important;
  }

  .header-area .info-list i {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

/* -----------------------------------------
	Home CSS
----------------------------------------- */
.home-banner {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 0 0 50px 50px;
  background: var(--gradient-3);
}

.home-banner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.1;
  background-image: radial-gradient(var(--color-primary) 0.5px, var(--bg-light) 0.5px);
  background-size: 10px 10px;
  z-index: -1;
}

.home-banner .content {
  max-width: 800px;
}

.home-banner .content .title {
  margin-bottom: 20px;
  color: var(--color-primary);
}

.home-banner .content .text {
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 0;
  margin-inline: auto;
  color: white;
}

/* -----------------------------------------
	Feature CSS
----------------------------------------- */
.feature-area {
  position: relative;
  overflow: hidden;
}

.feature-area .section-title .title {
  padding: 0;
  border: 0;
}

.feature-area .card {
  height: auto;
  padding: 0 20px 20px 20px;
  margin-top: 30px;
  border: 1px solid var(--color-primary);
  transition: all 0.4s ease-out;
  transform: translateY(10px);
  z-index: 1;
}

.feature-area .card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  border-bottom: 2px solid var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
  z-index: -1;
}

.feature-area .card .card-icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 32px;
  border-radius: 5px;
  margin-bottom: 25px;
  background-color: var(--color-primary);
  background: var(--gradient-2);
  color: white;
  margin-top: -30px;
}

.feature-area .card .card-content {
  position: relative;
}

.feature-area .card .card-content .card-title {
  margin-bottom: 15px;
}

.feature-area .card .card-content .card-text {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--color-medium);
  font-size: 15px;
}

.feature-area .card .card-content .card-title,
.feature-area .card .card-content .card-text {
  transition: color 0.4s ease-out;
  transition-delay: 100ms;
}

.feature-area .card:hover {
  border-color: transparent;
  box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
  transform: none;
}

.feature-area .card:hover::after {
  transform: scaleX(1);
}

.cta-area {
  background-color: var(--color-primary);
  background: var(--gradient-2);
}

.cta-area .section-title .title {
  padding: 0;
  border: 0;
  color: white;
}

.cta-area .section-title p {
  color: white;
}

/* -----------------------------------------
	Footer CSS
----------------------------------------- */
.footer-area {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-blue);
  background: var(--gradient-2);
  border-radius: 30px 30px 0 0;
  z-index: 1;
}

.footer-area .footer-widget {
  margin-bottom: 30px;
}

.footer-area .footer-widget ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footer-area .footer-widget .navbar-brand {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}

.footer-area .footer-widget h4 {
  color: var(--color-white);
  text-transform: capitalize;
  margin-bottom: 25px;
}

.footer-area .footer-widget p {
  color: rgba(var(--color-white-rgb), 0.8);
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-area .footer-widget .social-link a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  background-color: rgba(var(--color-white-rgb), 0.2);
  color: var(--color-light);
}

.footer-area .footer-widget .social-link a:last-child {
  margin: 0;
}

.footer-area .footer-widget .social-link a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  box-shadow: 0px 4px 8px 0px rgba(var(--color-primary-rgb), 0.34);
}

.footer-area .footer-widget .info-list li {
  display: flex;
  align-items: center;
}

.footer-area .footer-widget .info-list i {
  color: var(--color-primary);
  font-size: 24px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.footer-area .footer-widget .info-list a {
  color: var(--color-white);
}

.footer-area .footer-widget .footer-links li,
.footer-area .footer-widget .info-list li {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  line-height: 1;
  color: rgba(var(--color-white-rgb), 0.8);
}

.footer-area .footer-widget .footer-links li a,
.footer-area .footer-widget .info-list li a {
  color: rgba(var(--color-white-rgb), 0.8);
}

.footer-area .footer-widget .footer-links li a:hover,
.footer-area .footer-widget .info-list li a:hover {
  color: var(--color-primary);
}

.footer-area .footer-widget .footer-links li:last-child,
.footer-area .footer-widget .info-list li:last-child {
  margin-bottom: 0;
}

.footer-area .copy-right-area {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(var(--color-white-rgb), 0.2);
  color: var(--color-medium);
}

.footer-area .copy-right-area a {
  color: var(--color-yellow);
}

/* -----------------------------------------
  	Go top CSS
----------------------------------------- */
.go-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 3%;
  right: 3%;
  width: 45px;
  height: 45px;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-light);
  font-size: 28px;
  border-radius: 50%;
  background-color: var(--color-primary);
  background-image: var(--gradient-1);
  transition: 0.4s;
  transform: translateY(15%);
  z-index: 100;
}

.go-top.active {
  opacity: 1;
  transform: none;
}

.go-top:hover {
  transform: translateY(-3px);
}

/* -----------------------------------------
  	Preloader CSS
----------------------------------------- */
#preLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
}

#preLoader .loader {
  color: var(--color-primary);
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  -webkit-animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }

  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }

  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }

  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }

  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }

  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }

  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@-webkit-keyframes round {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes round {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* -----------------------------------------
    Magic Cursor CSS
----------------------------------------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1070;
  width: 5px;
  height: 5px;
  pointer-events: none;
  border-radius: 50%;
  background: var(--color-primary);
  transition: all 0.2s ease-out;
}

.cursor.hover {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  background: rgba(var(--color-dark-rgb), 0.1);
}

/* -----------------------------------------
  	Animation CSS
----------------------------------------- */
@-webkit-keyframes loader {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loader {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes moveAround {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes moveAround {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0);
  }
}

@-webkit-keyframes ripple {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes ripple {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/*# sourceMappingURL=style.css.map */

.form-control {
  -webkit-appearance: auto !important;
  appearance: auto !important;
}

.form-control option {
  padding: 18px;
  /* Example padding */
}
