/*
Style Sheet: NRI Savior
Author: Govind Maurya
 */
:root {
  --primary-color: #2e1a47;
  --secondary-color: #dcdfff;
  --white-color: #ffffff;
  --black-color: #000000;
  --black-color-1: #111111;
  --black-color-2: #222222;
  --black-color-3: #333333;
  --black-color-4: #444444;
  --black-color-5: #555555;
  --black-color-6: #666666;
  --black-color-7: #777777;
  --black-color-8: #888888;
  --black-color-9: #999999;
  --light-grey-color: #eeeeee;
  --link-color: #c6bbdc;
}

body {
  font-size: 16px;
  line-height: 25px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  color: var(--primary-color);
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}
a:hover {
  color: var(--primary-color);
}

.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero-banner {
  background: url("../images/bg/hero-bg.jpg");
  padding: 150px 0;
  background-size: cover;
}
.hero-banner .search-box {
  min-width: 500px;
  max-width: 800px;
  background: rgb(255, 255, 255);
  box-shadow: 6px 5px 6px 6px #bbb;
  border-radius: 15px;
  padding: 70px;
}
.hero-banner .search-box form {
  position: relative;
}
.hero-banner .search-box .live-search-result-box {
  border: 1px solid #eee;
  box-shadow: 3px 5px 5px #ddd;
  padding: 15px 15px 0 15px;
  position: absolute;
  width: 100%;
  z-index: 1;
  background: #f6f6f6;
  top: 100%;
  left: 0;
}
.hero-banner .search-box .live-search-result-box ul {
  padding: 0;
  list-style: none;
}
.hero-banner .search-box .live-search-result-box ul li {
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
}
.hero-banner .direct-link a {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 14px;
}

.navbar-brand img {
  width: 250px;
  height: auto;
}

.menu ul li.nav-item {
  padding: 0 15px;
  color: var(--primary-color);
  font-weight: 500;
}
.menu ul li .nav-link {
  color: var(--primary-color);
}
.menu ul li:last-child .nav-link {
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.menu ul li:last-child .nav-link:hover {
  color: #ddd;
}
.menu ul li.dropdown:hover ul.dropdown-menu {
  display: block;
  transition-duration: 1s;
}
.menu ul li ul.dropdown-menu {
  padding: 0;
  left: 0;
  min-width: 260px;
  border: none;
  border-radius: 0;
  background: #f6f6f6;
  box-shadow: 0 2px 5px #dddddd;
}
.menu ul li ul.dropdown-menu .dropdown-item {
  padding: 7px 25px;
}
.menu ul li ul.dropdown-menu .dropdown-item:hover {
  background: #e6e6e6;
}

.service-section {
  padding: 70px 0;
}
.service-section .service-grid {
  border-radius: 5px;
  border: 1px solid #f1eff7;
  box-shadow: 5px 10px 10px #eee;
  margin-bottom: 25px;
}
.service-section .service-grid .service-grid-detail {
  padding: 15px;
}
.service-section .service-grid .service-grid-detail h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
}
.service-section .service-grid .service-grid-detail p span {
  font-size: 12px;
  background: #F1EFF8;
  margin-right: 3px;
  margin-bottom: 5px;
  display: inline-block;
  border-radius: 5px;
  padding: 0 10px;
}
.service-section .service-grid .service-grid-detail p a {
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 10px;
}
.service-section .service-grid .service-grid-detail p a.learn-more {
  font-size: 14px;
  margin-right: 10px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}
.service-section .service-grid .service-grid-detail p a.learn-more:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background: none;
}
.service-section .service-grid .service-grid-detail p a.enquire-now {
  font-size: 14px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.service-section .service-grid .service-grid-detail p a.enquire-now:hover {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.avg-cost-section {
  padding: 70px 0;
  background: #F1EFF8;
}
.avg-cost-section .heading {
  margin-bottom: 30px;
}
.avg-cost-section .heading h2 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}
.avg-cost-section .heading h2:after {
  position: absolute;
  background: var(--primary-color);
  height: 3px;
  width: 50px;
  left: 0;
  top: 100%;
  content: "";
}
.avg-cost-section .service-grid {
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 5px 10px 10px #ddd;
  margin-bottom: 25px;
  background: #fff;
}
.avg-cost-section .service-grid .service-grid-detail {
  padding: 15px;
}
.avg-cost-section .service-grid .service-grid-detail h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
}
.avg-cost-section .service-grid .service-grid-detail p span {
  font-size: 12px;
  background: #F1EFF8;
  margin-right: 3px;
  margin-bottom: 5px;
  display: inline-block;
  border-radius: 5px;
  padding: 0 10px;
}
.avg-cost-section .owl-prev {
  position: absolute;
  left: -25px;
  top: 40%;
  background: var(--secondary-color) !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  transition-duration: 0.5s;
}
.avg-cost-section .owl-prev:hover {
  background: var(--primary-color) !important;
}
.avg-cost-section .owl-next {
  position: absolute;
  right: -25px;
  top: 40%;
  background: var(--secondary-color) !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  transition-duration: 0.5s;
}
.avg-cost-section .owl-next:hover {
  background: var(--primary-color) !important;
}

.why-us-section {
  padding: 70px 0;
}
.why-us-section .heading {
  margin-bottom: 30px;
  text-align: center;
}
.why-us-section .heading h2 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}
.why-us-section .heading h2:after {
  position: absolute;
  background: var(--primary-color);
  height: 3px;
  width: 50px;
  margin-left: -25px;
  left: 50%;
  top: 100%;
  content: "";
}
.why-us-section .why-us-point {
  text-align: center;
  justify-content: center;
  padding: 50px 75px;
  box-shadow: 0 10px 10px #ddd;
  border: 1px solid #eee;
  border-radius: 3px;
}
.why-us-section .why-us-point .point-content {
  min-height: 140px;
}
.why-us-section .why-us-point .point-content h4 {
  font-weight: 800;
}
.why-us-section .why-us-list h3 {
  font-size: 20px;
  font-weight: bold;
}
.why-us-section .why-us-list p {
  font-weight: 500;
}
.why-us-section .why-us-list ul {
  padding-left: 0;
}
.why-us-section .why-us-list ul li {
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-left: 30px;
  line-height: 30px;
}
.why-us-section .why-us-list ul li:before {
  left: 0;
  top: 0;
  z-index: 1;
  position: absolute;
  content: "";
  background: url("../images/right-icon.png");
  width: 24px;
  height: 24px;
}
.why-us-section .why-us-img img {
  border-radius: 5px;
  box-shadow: 5px 15px 20px #bbb;
}

.home-about-section {
  padding: 75px 0;
  background: #F1EFF8;
}
.home-about-section h2.main-hading {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.home-about-section h2.main-hading:before {
  position: absolute;
  background: var(--primary-color);
  height: 3px;
  width: 50px;
  left: 0;
  top: 100%;
  content: "";
}
.home-about-section .about-content h3 {
  font-size: 20px;
  font-weight: bold;
}
.home-about-section .about-content h2 {
  font-size: 20px;
}
.home-about-section .about-content p {
  text-align: left;
  line-height: 30px;
}
.home-about-section .faq-content {
  padding: 25px;
}
.home-about-section .accordion-item {
  background: transparent;
}
.home-about-section .counter-box {
  background: #ffffff;
  padding: 30px;
  text-align: center;
}
.home-about-section .counter-box h4 {
  position: relative;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 30px;
}
.home-about-section .counter-box h4:after {
  background: var(--primary-color);
  top: 100%;
  width: 30px;
  left: 50%;
  height: 2px;
  position: absolute;
  content: "";
  margin-left: -15px;
}
.home-about-section .counter-box p {
  margin-bottom: 0;
}

.accordion-button, .accordion-header {
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
  background: #F1EFF8;
  color: var(--primary-color);
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-button {
  background: none;
  font-weight: bold;
}

/*Service Section CSS*/
.service-hero-section {
  padding: 100px 0;
  /*background: url('../images/service-hero-bg.jpg');*/
  position: relative;
  background-size: cover;
  z-index: 0;
  /* &:after {
       background: rgba(0,0,0,0.75);
       z-index: -1;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       position: absolute;
       content: "";
   }*/
}
.service-hero-section .service-enquiry-box {
  background: rgb(230, 230, 230);
  padding: 50px;
  border-radius: 10px;
}
.service-hero-section .service-enquiry-box label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}
.service-hero-section .service-enquiry-box input {
  background: rgba(0, 0, 0, 0.05);
}
.service-hero-section .service-enquiry-box input::placeholder {
  font-size: 14px;
}

.podcast-section {
  padding: 75px 0;
}
.podcast-section .heading {
  margin-bottom: 30px;
}
.podcast-section .heading h2 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}
.podcast-section .heading h2:after {
  position: absolute;
  background: var(--primary-color);
  height: 3px;
  width: 50px;
  left: 0%;
  top: 100%;
  content: "";
}
.podcast-section .podcast-box:hover .podcast-thumb {
  overflow: hidden;
  cursor: pointer;
}
.podcast-section .podcast-box:hover .podcast-thumb img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
.podcast-section .podcast-box .podcast-thumb {
  border-radius: 5px;
  position: relative;
}
.podcast-section .podcast-box .podcast-thumb img {
  border-radius: 5px;
}
.podcast-section .podcast-box .podcast-thumb span {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  text-align: center;
  vertical-align: middle;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
}
.podcast-section .podcast-box .podcast-thumb span:hover {
  transform: scale(1.1);
  transition-duration: 1s;
}
.podcast-section .podcast-box .podcast-name {
  padding-top: 15px;
}
.podcast-section .podcast-box .podcast-name h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.breadcrumb-section {
  background: var(--primary-color);
  padding: 25px 0;
}
.breadcrumb-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumb-section ul li {
  color: #f6f6f6;
  list-style: none;
  display: inline;
  padding-right: 5px;
}
.breadcrumb-section ul li + li {
  padding-left: 5px;
}
.breadcrumb-section ul li + li:before {
  position: relative;
  font-family: "FontAwesome";
  left: -5px;
  top: 0;
  content: "\f105";
  z-index: 1;
  font-size: 13px;
}
.breadcrumb-section ul li a {
  color: #f6f6f6;
}

.service-content-section {
  padding: 50px 0;
}
.service-content-section .service-enquiry-box {
  background: #F1EFF8;
  padding: 50px 40px;
  margin-left: 50px;
  border-radius: 10px;
  box-shadow: 2px 5px 5px 2px #d5b4d8;
}
.service-content-section .service-enquiry-box label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}
.service-content-section .service-enquiry-box input {
  background: rgba(255, 255, 255, 0.9);
}
.service-content-section .service-enquiry-box input::placeholder {
  font-size: 14px;
}
.service-content-section .service-enquiry-box .btn-submit {
  background: var(--primary-color);
  padding: 5px 15px;
  color: #fff;
  box-shadow: none;
  border-radius: 5px;
}
.service-content-section .service-content h1 {
  font-size: 28px;
  margin: 0 0 10px;
}
.service-content-section .service-content h2 {
  font-size: 26px;
  margin: 0 0 10px;
}
.service-content-section .service-content h3 {
  font-size: 24px;
  margin: 0 0 10px;
}
.service-content-section .service-content h4 {
  font-size: 22px;
  margin: 0 0 10px;
}
.service-content-section .service-content h5 {
  font-size: 20px;
  margin: 0 0 10px;
}
.service-content-section .service-content h6 {
  font-size: 18px;
  margin: 0 0 10px;
}
.service-content-section .service-content p {
  font-size: 16px;
  text-align: justify;
  margin: 0 0 10px;
}
.service-content-section .service-content a {
  font-size: 16px;
  color: var(--primary-color);
}
.service-content-section .service-content img {
  justify-content: center;
  align-items: center;
  height: auto;
}
.service-content-section .service-content ul {
  padding: 10px 0;
  margin: 0;
  list-style: none;
  text-align: justify;
}
.service-content-section .service-content ul li {
  padding-left: 20px;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  vertical-align: middle;
}
.service-content-section .service-content ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  width: 15px;
  height: 15px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  z-index: 1;
  position: absolute;
  color: #777;
}

.login-page-section {
  background: #dcdfff;
  padding: 50px 0;
}
.login-page-section .login-section {
  background: #ffffff;
  padding: 75px 150px;
}
.login-page-section .login-section .sign-with-email-text {
  text-align: center;
  position: relative;
  font-family: "Raleway", sans-serif;
  z-index: 1;
}
.login-page-section .login-section .sign-with-email-text span {
  background: #fff;
  padding: 0 15px;
}
.login-page-section .login-section .sign-with-email-text:before {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ddd;
  z-index: -1;
  content: "";
  top: 50%;
  left: 0;
}
.login-page-section .login-section p {
  font-size: 12px;
}
.login-page-section .login-section .login-form label {
  font-weight: 600;
  font-size: 13px;
}
.login-page-section .login-section .login-form .form-group {
  margin-bottom: 15px;
}
.login-page-section .login-section .login-form .form-control {
  border-radius: 25px;
  padding: 8px 15px;
}
.login-page-section .login-section .login-form .form-control::placeholder {
  font-size: 13px;
}
.login-page-section .login-section .login-form .forgot-button-link {
  text-align: right;
  font-size: 13px;
  color: var(--link-color);
  font-weight: 500;
}
.login-page-section .login-section .login-form .login-btn {
  margin: 15px 0;
  padding: 10px 25px;
  text-align: center;
  background: var(--primary-color);
  color: #fff;
  border-radius: 25px;
  --webkit-border-radius: 25px;
  --moz-border-radius: 25px;
}
.login-page-section .login-section .login-form .form-check-label {
  font-size: 12px;
}
.login-page-section .login-section .login-form span.text-danger {
  font-size: 13px;
}
.login-page-section .login-section .google-login, .login-page-section .login-section .facebook-login {
  margin-bottom: 10px;
}
.login-page-section .login-section .google-login a, .login-page-section .login-section .facebook-login a {
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 10px 25px;
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 14px;
}
.login-page-section .login-section .new-account-link {
  color: var(--link-color);
  font-weight: 500;
  font-size: 14px;
}

.main-content {
  padding: 100px 0;
}

.footer {
  width: 100%;
  background: var(--primary-color);
  padding: 70px 0 50px;
}
.footer .footer-col, .footer .footer-col-last {
  width: 100%;
}
.footer .footer-col h4, .footer .footer-col-last h4 {
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer .footer-col ul, .footer .footer-col-last ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .footer-col ul li, .footer .footer-col-last ul li {
  margin-bottom: 5px;
}
.footer .footer-col ul li a, .footer .footer-col-last ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-col ul li a:hover, .footer .footer-col-last ul li a:hover {
  color: var(--white-color);
}
.footer .footer-col-last ul li {
  width: 50%;
  display: inline-block;
  float: left;
}

.copyright {
  padding: 20px 0;
  background: #271341;
  text-align: center;
}
.copyright p {
  margin-bottom: 0;
  vertical-align: middle;
  color: #F1EFF8;
  font-size: 12px;
}

.service-enquiry-form {
  padding: 100px 0;
}
.service-enquiry-form .form-section {
  background: #eeeeee;
  border: 1px solid #EEEEEE;
  padding: 50px;
  border-radius: 15px;
  margin-bottom: 50px;
}
.service-enquiry-form .form-section h4 {
  font-size: 20px;
}
.service-enquiry-form .form-section .form-group {
  margin-bottom: 10px;
}
.service-enquiry-form .form-section .form-group label {
  font-size: 14px;
  font-weight: 500;
}
.service-enquiry-form .form-section .form-group .form-control {
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 14px;
}
.service-enquiry-form .form-section .form-group .form-control::placeholder {
  font-size: 14px;
}
.service-enquiry-form .form-section .form-group .form-control option {
  font-size: 14px;
}
.service-enquiry-form .form-section .form-group span {
  font-size: 14px;
}
.service-enquiry-form .form-section .form-group span.filename {
  font-weight: 500;
}
.service-enquiry-form .form-section .btn-submit {
  border-radius: 10px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 7px 25px;
}
.service-enquiry-form .form-section .form-check label {
  font-size: 14px;
}

.post-page {
  padding: 75px 0;
}
.post-page .heading {
  margin-bottom: 30px;
}
.post-page .heading h2 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}
.post-page .heading h2:after {
  position: absolute;
  background: var(--primary-color);
  height: 3px;
  width: 50px;
  left: 0%;
  top: 100%;
  content: "";
}
.post-page .post-grid .post-excerpt {
  margin-top: 20px;
}
.post-page .post-grid .post-excerpt h4 {
  font-size: 20px;
}
.post-page .post-grid .post-excerpt p {
  font-size: 14px;
}
.post-page .post-grid .post-excerpt p.read-more a {
  background: #eeeeee;
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 15px;
}

.post-content {
  padding: 75px;
}
.post-content .post-thumbnail img {
  width: 100%;
  height: auto;
}
.post-content .post-title {
  padding: 15px 0;
}
.post-content .post-title h1 {
  font-size: 28px;
  font-weight: 500;
}
.post-content .post-description {
  padding: 15px 0;
}
.post-content .post-description h1 {
  font-size: 28px;
}
.post-content .post-description h2 {
  font-size: 26px;
}
.post-content .post-description h3 {
  font-size: 24px;
}
.post-content .post-description h4 {
  font-size: 22px;
}
.post-content .post-description h5 {
  font-size: 20px;
}
.post-content .post-description h6 {
  font-size: 18px;
}
.post-content .post-description p {
  font-size: 16px;
  text-align: justify;
}
.post-content .post-description a {
  font-size: 16px;
  color: var(--primary-color);
}
.post-content .post-description img {
  justify-content: center;
  align-items: center;
  height: auto;
}
.post-content .post-description ul {
  padding: 10px 0;
  margin: 0;
  list-style: none;
  text-align: justify;
}
.post-content .post-description ul li {
  padding-left: 20px;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  vertical-align: middle;
}
.post-content .post-description ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  width: 15px;
  height: 15px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  z-index: 1;
  position: absolute;
  color: #777;
}
.post-content .post-sidebar {
  width: 100%;
  float: left;
}
.post-content .post-sidebar .recent-post {
  width: 100%;
  float: left;
}
.post-content .post-sidebar .recent-post h2 {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}
.post-content .post-sidebar .recent-post h2:after {
  position: absolute;
  background: var(--primary-color);
  height: 3px;
  width: 50px;
  left: 0%;
  top: 100%;
  content: "";
}
.post-content .post-sidebar .recent-post .recent-post-grid {
  padding: 15px;
  width: 100%;
  display: block;
  float: left;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
  position: relative;
  margin-top: 10px;
}
.post-content .post-sidebar .recent-post .recent-post-grid img {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 0;
  top: 0;
}
.post-content .post-sidebar .recent-post .recent-post-grid .recent-post-detail {
  padding-left: 110px;
}

/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
  background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.sidebar-menu {
  background: var(--primary-color);
  padding: 15px;
  min-height: 350px;
}
.sidebar-menu h4 {
  color: #ffffff;
  font-size: 20px;
}
.sidebar-menu ul {
  padding-left: 0;
}
.sidebar-menu ul li {
  list-style: none;
  padding: 8px;
  background: #eeeeee;
  margin-bottom: 5px;
  border-radius: 3px;
  cursor: pointer;
}
.sidebar-menu ul li a {
  display: block;
}

.user-content h2 {
  color: var(--primary-color);
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}
.user-content h2:before {
  background: var(--primary-color);
  height: 2px;
  width: 100%;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
}
.user-content .change-password .form-group label {
  font-weight: 500;
  font-size: 16px;
}
.user-content .change-password .form-group .form-control {
  border-radius: 10px;
}
.user-content .change-password .form-group .form-control::placeholder {
  font-size: 13px;
}
.user-content .change-password .btn-change-password {
  padding: 10px 25px;
  text-align: center;
  background: var(--primary-color);
  color: #fff;
  border-radius: 25px;
  --webkit-border-radius: 25px;
  --moz-border-radius: 25px;
}

.pause {
  display: none;
}

.music-player {
  width: 100%;
  height: 150px;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background: #705099;
  z-index: 999999;
  padding: 15px 0;
  display: none;
}
.music-player h2 {
  color: #fff;
  font-size: 16px;
}
.music-player .progress-btn {
  --webkit-apearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #5d3d83;
  border-radius: 4px;
  cursor: pointer;
  margin: 20px 0;
}
.music-player .progress-btn::-webkit-slider-thumb {
  --webkit-apearance: none;
  appearance: none;
  background: var(--primary-color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 8px solid var(--primary-color);
  box-shadow: 0 5px 5px rgb(72, 42, 106);
}
.music-player .controls {
  display: flex;
  align-items: center;
}
.music-player .controls div {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #705099;
  box-shadow: 0 10px 20px rgb(77, 41, 122);
  cursor: pointer;
}
.music-player .volume-container {
  position: relative;
}
.music-player .volume-container:hover .volume-bar {
  display: block;
}
.music-player .volume-container .volume-bar {
  display: none;
  --webkit-apearance: none;
  appearance: none;
  position: absolute;
  height: 6px;
  width: 100px;
  top: 50%;
  margin-top: -3px;
  left: 80%;
  background: #5d3d83;
  border-radius: 4px;
  cursor: pointer;
}
.music-player .volume-container .volume-bar::-webkit-slider-thumb {
  --webkit-apearance: none;
  appearance: none;
  background: var(--primary-color);
  width: 20px;
  height: 20px;
  margin-left: 5px;
  border-radius: 50%;
  border: 8px solid var(--primary-color);
  box-shadow: 0 5px 5px rgb(72, 42, 106);
}

@media only screen and (max-width: 1366px) {
  .hero-banner {
    padding: 50px 0;
  }
  .hero-banner .search-box {
    max-width: 650px;
    width: 100%;
    padding: 50px;
  }
}
@media only screen and (max-width: 567px) {
  .hero-banner {
    padding: 50px 0;
  }
  .hero-banner .search-box {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding: 15px;
  }
}

/*# sourceMappingURL=styles.css.map */
