/*
This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Section Title CSS
** - Default btn CSS
** - Preloader Area CSS
** - Top Bar Area CSS
** - Navbar Area CSS
** - Search Overlay CSS
** - Main Banner Area CSS
** - Categories Area CSS
** - About Area CSS
** - Doctor Area CSS
** - Queries Area CSS
** - Overview Area CSS
** - Client Area CSS
** - Blog Area CSS
** - Fun Facts Area CSS
** - Newsletter Area CSS
** - Healthcare Area CSS
** - Specialist Area CSS
** - Team Area CSS
** - Process Area CSS
** - Consult Area CSS
** - Live Area CSS
** - Testimonial Area CSS
** - Services Area CSS
** - Pricing Area CSS
** - Page Banner CSS
** - Gallery Area CSS
** - My Account Area CSS
** - Change Password Area CSS
** - FAQ Area CSS
** - 404 Error Area CSS
** - Terms of Service Area CSS
** - Privacy policy Area CSS
** - Coming Soon Area CSS
** - Contact Info Area CSS
** - Contact Area CSS
** - Pagination Area CSS
** - Service details Area CSS
** - Blog Details Area CSS
** - Widget Sidebar CSS
** - Products Area CSS
** - Cart Area CSS
** - Checkout CSS
** - Product Details CSS
** - Doctor Details CSS
** - Submit Review Area CSS
** - Book Appointment Area CSS
** - Doctor Dashboard Area CSS
** - Appointments Area CSS
** - Reviews Area CSS
** - Schedule Time Area CSS
** - Footer Area CSS
** - Copy Right Area CSS
** - Go Top CSS

*/
/*================================================
Default CSS
=================================================*/

:root {
  --primary: #af884f;
  --primary-light: #efe2d0;
  --off-white: #FEF9ED;
  --theme-gray: #2A3942;
}

@import url("../../../../css2-2");
@import url("../../../../css2-3");

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
}

a {
  text-decoration: none;
  transition: 0.5s;
  color: #2a2a2a;
  display: inline-block;
}

a:hover,
a:focus {
  color: black;
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.4;
  color: #2a2a2a;
  font-weight: 400;
  font-size: 16px;
}

p:last-child {
  margin-bottom: 0;
}

i {
  line-height: normal;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2a2a2a !important;
  font-weight: 600;
  text-transform: capitalize;
}

.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

b {
  color: #2a2a2a;
}

.bg-light-grey {
  background-color: rgb(241, 241, 241);
}

.bg-gray {
  background-color: #8b8b8b !important;
}

.bg-dark {
  background-color: #2A3942 !important;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}


/*================================================
Default btn CSS
=================================================*/
.default-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #2A3942;
  color: #ffffff;
  border-radius: 10px;
  transition: 0.5s;
  font-weight: 500;
}

.default-btn.outline {
  display: inline-block;
  padding: 10px 25px;
  background-color: white;
  color: #2a2a2a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  transition: 0.5s;
  font-weight: 500;
}

.default-btn.white {
  background-color: white;
  color: black;
}

.default-btn:hover {
  background-color: black;
  color: #ffffff;
}


/*================================================
Section Title CSS
=================================================*/
.section-title {
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 45px;
  margin-bottom: 0;
}

.section-title .bar {
  height: 5px;
  width: 100px;
  background: black;
  position: relative;
  border-radius: 5px;
  overflow: hidden;

}

.section-title .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ffffff;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.section-title p {
  max-width: 750px;
  margin: auto;
}

@keyframes MOVE-BG {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(85px);
  }
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: black;
}

.preloader .spinner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0 auto;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -50px;
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

/*================================================
Top Bar Area CSS
=================================================*/
.top-bar-area {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #000;
}


.top-bar-area.bg-black {
  background-color: #202647;
}

.top-bar-area.bg-black .top-bar-information li {
  color: #ffffff;
  position: relative;
}

.top-bar-area.bg-black .top-bar-information li::before {
  position: absolute;
  right: -10px;
  top: 2px;
  width: 1px;
  content: "";
  height: 15px;
  background-color: black;
}

.top-bar-area.bg-black .top-bar-information li:last-child::before {
  display: none;
}

.top-bar-area.bg-black .top-bar-information li a {
  color: #ffffff;
}


.top-bar-information li .login-btn {
  background-color: white;
  color: black;
  padding: 0px 5px;
  border-radius: 3px;
}

.top-bar-area.bg-black .top-bar-optional li .languages-list .nice-select {
  color: #ffffff;
}

.top-bar-area.bg-black .top-bar-optional li .languages-list .nice-select::after {
  border-color: #ffffff;
}

.top-bar-area.bg-000000 {
  background-color: #202647;
}

.top-bar-area.bg-000000 .top-bar-information li {
  color: #ffffff;
  position: relative;
}

.top-bar-area.bg-000000 .top-bar-information li::before {
  position: absolute;
  right: -10px;
  top: 2px;
  width: 1px;
  content: "";
  height: 15px;
  background-color: black;
}

.top-bar-area.bg-000000 .top-bar-information li:last-child::before {
  display: none;
}

.top-bar-area.bg-000000 .top-bar-information li a {
  color: #ffffff;
}

.top-bar-area.bg-000000 .top-bar-optional li .languages-list .nice-select {
  color: #ffffff;
}

.top-bar-area.bg-000000 .top-bar-optional li .languages-list .nice-select::after {
  border-color: #ffffff;
}

.top-bar-information {
  padding-left: 0;
  margin-bottom: 0;
}

.top-bar-information li {
  font-size: 14px;
  font-weight: 500;
  color: white;
  list-style-type: none;
  display: inline-block;
  position: relative;
  margin-right: 15px;
  padding-left: 20px;
}

.top-bar-information li:last-child {
  margin-right: 0;
}

.top-bar-information li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: white;
}

.top-bar-information li a {
  color: white;
  font-weight: 300;
}

.top-bar-optional {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
}

.top-bar-optional li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
  display: flex;
  gap: 15px;
}

.top-bar-optional li:last-child {
  margin-right: 0;
}

.top-bar-optional li a img {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 25px;
  background-color: #ffffff;
  color: black;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
  border-radius: 5px;
  font-size: 18px;
  transition: 0.5s;
}

.top-bar-optional li .languages-list .nice-select {
  background-color: transparent;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-weight: 500;
  height: auto;
  line-height: initial;
  color: #202647;
  padding-left: 0;
  padding-right: 20px;
  position: relative;
  top: 2px;
}

.top-bar-optional li .languages-list .nice-select::after {
  border-color: #202647;
  height: 8px;
  width: 8px;
  right: 4px;
  margin-top: -5px;
}

.top-bar-optional li .languages-list .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 0;
  width: 150px;
  height: 200px;
  overflow-y: scroll;
  margin-top: 18px;
  margin-bottom: 0;
}

.top-bar-optional li .languages-list .nice-select .list .option {
  line-height: 40px;
  min-height: 40px;
  color: #6b6b84;
  padding-left: 15px;
  padding-top: 5px;
  padding-right: 15px;
  display: block;
  margin-right: 0;
}

.top-bar-optional li .languages-list .nice-select .list .option.selected {
  background-color: black !important;
  color: #ffffff;
  font-weight: normal;
}

.top-bar-optional li .languages-list .nice-select .list::-webkit-scrollbar {
  display: none;
}

.logo-header {
  width: 200px;
}

.mid-nav-bar {
  background-color: #2A3942;
  padding: 5px 0px;
}

/*================================================
Navbar Area CSS
=================================================*/

.main-responsive-nav {
  display: none;
}

.main-navbar {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  background-color: #2A3942;
  position: relative;
  /* overflow: hidden; */
}

.main-navbar .logo {
  max-width: 170px;
  padding: 3px 0px;
  margin-top: -5px;
}

.main-navbar .logo::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/menu-curve-3.png);
  background-repeat: no-repeat;
}

.main-navbar .navbar {
  transition: 0.5s;
  padding: 0;
  position: unset;
}

.main-navbar .navbar .navbar-nav {
  background-color: white;
}

/* .main-navbar .navbar::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-black.png);
  background-size: cover;
  background-repeat: no-repeat;
} */

.main-navbar .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-navbar .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 600;
  padding: 21px 0px;
  position: relative;
  color: #000000e0;
}

.main-navbar .navbar .navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: black;
  transition: all ease 0.5s;
}

.main-navbar .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: -5px;
  margin-right: -5px;
}

.main-navbar .navbar .navbar-nav .nav-item a:hover,
.main-navbar .navbar .navbar-nav .nav-item a:focus,
.main-navbar .navbar .navbar-nav .nav-item a.active {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item a.active::before {
  width: 100%;
  right: auto;
  left: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover a,
.main-navbar .navbar .navbar-nav .nav-item.active a {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 70px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 292px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  position: absolute;
  visibility: hidden;
  transform: translateY(5px);
  background: #ffffff;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

/* .main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
display: block !important;
} */

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 10px 20px;
  position: relative;
  display: block;
  color: #252525;
  font-size: 15px;
  font-weight: 500;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%);
  right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: -235px;
  left: auto;
  visibility: hidden;
  transform: translateY(5px);
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #2c2c2c;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 235px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -235px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 235px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -235px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 235px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #202647;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus::before,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: black;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a::before {
  display: none;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navbar .navbar .others-options .option-item .hotline {
  font-size: 16px;
  font-weight: 500;
  color: #202647;
}

.main-navbar .navbar .others-options .option-item .hotline a {
  color: #202647;
}

.main-navbar .navbar .others-options .option-item .hotline a:hover {
  color: black;
}

.main-navbar .navbar .others-options .option-item .default-btn {
  padding: 10px 25px;
}

.main-navbar .navbar .others-options .option-item .default-btn:hover {
  background-color: black;
  color: white;
}

.main-navbar .navbar .others-options .cart-wrapper-btn {
  margin-left: 20px;
  font-size: 25px;
  line-height: 1;
  color: black;
  position: relative;
  top: 5px;
}

.main-navbar .navbar .others-options .cart-wrapper-btn i {
  line-height: 1;
}

.main-navbar .navbar .others-options .cart-wrapper-btn span {
  position: absolute;
  right: -10px;
  top: -5px;
  width: 20px;
  height: 20px;
  background-color: #202647;
  color: #ffffff;
  line-height: 20.5px;
  text-align: center;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 500;
}

.main-navbar .navbar .others-options .search-box {
  margin-left: 25px;
  cursor: pointer;
  font-size: 25px;
  transition: 0.5s;
  line-height: 1;
  color: black;
  position: relative;
  top: 5px;
}

.main-navbar .navbar .others-options .search-box i {
  line-height: 1;
}

.main-navbar .navbar .others-options .search-box:hover {
  color: black;
}

.relative-color .main-navbar {
  background-color: black;
  padding: 10px 0;
}

.relative-color .main-navbar .navbar .navbar-nav .nav-item a {
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.relative-color .main-navbar .navbar .navbar-nav .nav-item a::before {
  background-color: #ffffff;
}

.relative-color .main-navbar .navbar .navbar-nav .nav-item a:hover,
.relative-color .main-navbar .navbar .navbar-nav .nav-item a:focus,
.relative-color .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #ffffff;
}

.relative-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  top: 60px;
}

.relative-color .main-navbar .navbar .others-options .option-item .hotline {
  color: #ffffff;
}

.relative-color .main-navbar .navbar .others-options .option-item .hotline a {
  color: #ffffff;
}

.relative-color .main-navbar .navbar .others-options .option-item .hotline a:hover {
  color: #ffffff;
}

.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a {
  color: #202647;
}

.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a::before {
  background-color: black;
}

.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a:hover,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a:focus,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: black;
}

.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item:hover a,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item.active a {
  color: black;
}

.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #202647;
}

.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.navbar-optional-color .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: black;
}

.navbar-optional-color .main-navbar .navbar .others-options .option-item .default-btn {
  background-color: black;
}

.navbar-optional-color .main-navbar .navbar .others-options .option-item .default-btn:hover {
  background-color: black;
}

.navbar-optional-color .main-navbar .navbar .others-options .cart-wrapper-btn {
  color: black;
}

.navbar-optional-color .main-navbar .navbar .others-options .search-box {
  color: black;
}

.navbar-optional-color .main-navbar .navbar .others-options .search-box:hover {
  color: black;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #ffffff !important;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.white-bar {
  background-color: white;
  width: 100%;
  height: 10px;
}

.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: -28px;
}

.others-option-for-responsive .dot-menu .inner {
  display: flex;
  align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: 0.5s;
  background-color: #202647;
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: black;
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  max-width: 260px;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}

.others-option-for-responsive .option-inner .others-options .option-item .hotline {
  font-size: 16px;
  font-weight: 500;
  color: #202647;
}

.others-option-for-responsive .option-inner .others-options .option-item .hotline a {
  color: #202647;
}

.others-option-for-responsive .option-inner .others-options .option-item .hotline a:hover {
  color: black;
}

.others-option-for-responsive .option-inner .others-options .option-item .default-btn {
  padding: 12px 25px;
  background-color: #28a5f5;
}

.others-option-for-responsive .option-inner .others-options .option-item .default-btn:hover {
  background-color: black;
}

.others-option-for-responsive .option-inner .others-options .cart-wrapper-btn {
  margin-left: 20px;
  font-size: 25px;
  line-height: 1;
  color: black;
  position: relative;
  top: 5px;
}

.others-option-for-responsive .option-inner .others-options .cart-wrapper-btn i {
  line-height: 1;
}

.others-option-for-responsive .option-inner .others-options .cart-wrapper-btn span {
  position: absolute;
  right: -10px;
  top: -5px;
  width: 20px;
  height: 20px;
  background-color: #202647;
  color: #ffffff;
  line-height: 20.5px;
  text-align: center;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 500;
}

.others-option-for-responsive .option-inner .others-options .search-box {
  margin-left: 25px;
  cursor: pointer;
  font-size: 25px;
  transition: 0.5s;
  line-height: 1;
  color: black;
  position: relative;
  top: 5px;
}

.others-option-for-responsive .option-inner .others-options .search-box i {
  line-height: 1;
}

.others-option-for-responsive .option-inner .others-options .search-box:hover {
  color: black;
}

@media only screen and (max-width: 1199px) {
  .main-responsive-nav {
    display: block;
  }

  .main-responsive-nav .main-responsive-menu {
    position: relative;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
    color: black;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .others-options {
    display: none !important;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 360px;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
  }

  .main-responsive-nav .mean-container a.meanmenu-reveal {
    color: #202647;
  }

  .main-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #202647;
    position: relative;
  }

  .main-responsive-nav .logo {
    position: relative;
  }

  .main-responsive-nav .logo img {
    max-width: 100px !important;
  }

  .navbar-area {
    background-color: #ffffff;
    padding-top: 15px;
    padding-bottom: 0px;
  }

  .main-navbar {
    display: none;
  }

  .others-option-for-responsive {
    display: block;
  }
}

/*================================================
Search Overlay CSS
=================================================*/
.search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.search-overlay .search-overlay-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(100%);
}

.search-overlay .search-overlay-layer:nth-child(1) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out 0s;
}

.search-overlay .search-overlay-layer:nth-child(2) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out 0.3s;
}

.search-overlay .search-overlay-layer:nth-child(3) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.9s ease-in-out 0.6s;
}

.search-overlay .search-overlay-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  transition: all 0.9s ease-in-out 1.5s;
  opacity: 0;
  visibility: hidden;
}

.search-overlay .search-overlay-close .search-overlay-close-line {
  width: 100%;
  height: 3px;
  float: left;
  margin-bottom: 5px;
  background-color: #ffffff;
  transition: all 500ms ease;
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(1) {
  transform: rotate(45deg);
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(2) {
  margin-top: -7px;
  transform: rotate(-45deg);
}

.search-overlay .search-overlay-close:hover .search-overlay-close-line {
  background: black;
  transform: rotate(180deg);
}

.search-overlay .search-overlay-form {
  transition: all 0.9s ease-in-out 1.4s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  max-width: 500px;
  width: 500px;
}

.search-overlay .search-overlay-form form {
  position: relative;
}

.search-overlay .search-overlay-form form .input-search {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 30px;
  padding-left: 20px;
  color: #202647;
  font-size: 16px;
  outline: 0;
}

.search-overlay .search-overlay-form form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 45px;
  color: #ffffff;
  height: 45px;
  border-radius: 50%;
  background-color: black;
  transition: 0.5s;
  border: none;
  font-size: 20px;
  line-height: 45px;
  cursor: pointer;
}

.search-overlay .search-overlay-form form button:hover {
  background-color: #202647;
  color: #ffffff;
}

.search-overlay.search-overlay-active.search-overlay {
  opacity: 1;
  visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-layer {
  transform: translateX(0);
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-close {
  opacity: 1;
  visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-form {
  opacity: 1;
  visibility: visible;
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.main-banner {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* .main-banner-item {
  background-image: url(../img/banner-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 700px;
  z-index: 1;
}

.main-banner-item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.2;
} */


.main-banner-item.item-two {
  background-image: url(../img/banner-2.jpg);
  height: unset;
  padding-top: 15px;
}

.main-banner-item.item-two .container-fluid {
  max-width: 1920px;
  margin: auto;
}

.main-banner-item.item-two::before {
  display: none;
}

.main-banner-item.item-two .main-banner-content {
  text-align: left;
}

.main-banner-item.item-two .main-banner-content h1 {
  font-size: 50px;
  color: #202647;
  margin-bottom: 25px;
  line-height: 1.4;
  font-weight: bold;
}

.main-banner-item.item-two .main-banner-content p {
  color: #202647;
  font-size: 16px;
}

.main-banner-item.item-two .main-banner-search-form {
  background-color: #e0eefa;
  max-width: unset;
}

.main-banner-item.item-two .main-banner-search-form form .form-group label {
  color: #1d39da;
}

.main-banner-item.item-two .main-banner-search-form form button {
  background-color: #1d39da;
  color: #ffffff;
}

.main-banner-item.item-two .main-banner-search-form form button:hover {
  background-color: black;
}

.main-banner-item.item-two .main-banner-inner {
  max-width: 630px;
  margin-left: auto;
}

.main-banner-item.item-three {
  background-image: url(../img/banner-1.jpg);
}

.main-banner-item.item-three::before {
  background-color: #000000;
}

.main-banner-item.item-three .main-banner-content {
  text-align: left;
  max-width: 730px;
}

.main-banner-item.item-three .main-banner-content h1 {
  font-size: 50px;
  color: #202647;
  line-height: 1.5;
  font-weight: bold;
}

.main-banner-item.item-three .main-banner-content p {
  font-size: 18px;
  color: #202647;
}

.main-banner-item.item-three .main-banner-content .banner-btn {
  margin-top: 30px;
}

.main-banner-item.item-three .main-banner-content .banner-btn .default-btn {
  background-color: black;
}

.main-banner-item.item-three .main-banner-content .banner-btn .default-btn:hover {
  background-color: black;
}

.main-banner-item.item-four {
  background-image: url(../img/banner-2.jpg);
}

.main-banner-item.item-four .main-banner-content {
  text-align: left;
}

.main-banner-item.item-four .main-banner-content h1 {
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 60px;
  font-weight: bold;
}

.main-banner-item.item-four .main-banner-content p {
  font-size: 16px;
}

.main-banner-item.item-four .main-banner-content .banner-btn {
  margin-top: 30px;
}

.main-banner-content {
  text-align: center;
}

.main-banner-content h1 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.main-banner-content p {
  font-size: 20px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 500;
}

.main-banner-search-form {
  background-color: #dde3e8;
  border-radius: 10px;
  padding: 15px 20px;
  max-width: 780px;
  margin: 30px auto 0;
}

.main-banner-search-form form {
  position: relative;
}

.main-banner-search-form form .col-lg-5 {
  padding-right: 5px;
}

.main-banner-search-form form .col-lg-7 {
  padding-left: 5px;
}

.main-banner-search-form form .form-group {
  margin-bottom: 0;
  position: relative;
}

.main-banner-search-form form .form-group label {
  z-index: 1;
  display: block;
  margin-bottom: 0;
  position: absolute;
  left: 15px;
  color: black;
  font-size: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner-search-form form .form-group label a {
  display: block;
  color: black;
}

.main-banner-search-form form .form-group .form-control {
  display: block;
  padding: 10px 10px 10px 45px;
  width: 100%;
  border: none;
  background-color: #ffffff;
  border-right: 1px solid #eeeeee;
  height: 55px;
  border-radius: 10px;
  color: #2a2a2a;
  font-size: 15px;
}

.main-banner-search-form form .form-group .form-control::-moz-placeholder {
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}

.main-banner-search-form form .form-group .form-control::placeholder {
  transition: 0.5s;
  color: #6b6b84;
}

.main-banner-search-form form .form-group .form-control:focus {
  box-shadow: none;
}

.main-banner-search-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.main-banner-search-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.main-banner-search-form form button {
  border: none;
  background-color: black;
  color: #ffffff;
  height: 35px;
  width: 35px;
  position: absolute;
  right: 12px;
  padding: 0;
  transition: 0.5s;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 30px;
}

.main-banner-search-form form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner-search-form form button:hover,
.main-banner-search-form form button:focus {
  background-color: black;
  color: #ffffff;
}

.main-banner-image {
  position: relative;
  text-align: center;
}

.main-banner-image .image-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  animation: moveBounce 15s linear infinite;
}

.main-banner-image .image-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  animation: moveLeftBounce 15s linear infinite;
}

.main-banner-shape .shape-1 {
  position: absolute;
  top: -100px;
  left: -45px;
  z-index: 1;
  animation: moveBounce 15s linear infinite;
}

.main-banner-shape .shape-1 img {
  transform: rotate(65deg);
}

.main-banner-shape .shape-2 {
  position: absolute;
  bottom: -100px;
  left: -45px;
  z-index: 1;
  animation: moveBounce 15s linear infinite;
}

.main-banner-wrap .banner-form {
  position: absolute;
  bottom: -50px;
  background-image: linear-gradient(to bottom, #af884fab, #af884fbd), url(../img/banner-form-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  padding: 30px;
  border-radius: 10px;
  z-index: 9;
}

.banner-form h3 {
  font-size: 30px;
  margin-bottom: 35px;
  text-align: center;
}

.banner-form form .form-group {
  margin-bottom: 15px;
}

.banner-form form .form-group .form-control {
  height: 60px;
  padding: 0 15px 0 15px;
  line-height: initial;
  color: #ffffff;
  background-color: transparent;
  border-color: #eeeeee;
  border-radius: 0;
  box-shadow: unset !important;
  transition: 0.5s;
  font-size: 17px;
  font-weight: 400;
  width: 100%;
}

.banner-form form .form-group .form-control:focus {
  border-color: black;
  background-color: transparent;
  outline: 0;
}

.banner-form form .form-group textarea.form-control {
  height: 120px;
  padding-top: 15px;
}

.banner-form form .nice-select {
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 17px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: transparent;
  border-color: #eeeeee;
  color: #ffffff;
  border-radius: 0;
  transition: 0.5s;
  margin-bottom: 15px;
}

.banner-form form .nice-select:focus {
  border-color: black;
  background-color: transparent;
}

.banner-form form .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.banner-form form .nice-select .list .option {
  transition: 0.5s;
  color: #202647;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}

.banner-form form .nice-select .list .option:hover {
  background-color: black !important;
  color: #ffffff;
}

.banner-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.banner-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: black;
  right: 15px;
}

.banner-form form .banner-btn {
  text-align: center;
}

.banner-form form .banner-btn .default-btn {
  border: none;
  width: 100%;
  font-size: 15px;
  padding: 15px;
  cursor: pointer;
  color: black;
  border: 1px solid white;
  background-color: white;
}

.banner-form form .banner-btn .default-btn:hover {
  background-color: black;
  color: white;
}

.banner-form form .form-check {
  margin-bottom: 20px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}

.banner-form form .form-check a {
  color: black;
}

/*
Add Slider
======================================================*/
.main-banner-slider.owl-carousel.owl-theme {
  position: relative;
}

.main-banner-slider.owl-carousel.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
}

.main-banner-slider.owl-carousel.owl-theme .owl-nav [class*=owl-] {
  border: 1px solid #ffffff;
  color: #ffffff;
  display: inline-block;
  padding: 0;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  font-size: 30px;
  line-height: 54px;
  border-radius: 5px;
  transition: 0.5s;
}

.main-banner-slider.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid black;
  background-color: black;
  color: #ffffff;
}

.main-banner-slider-two.owl-carousel.owl-theme {
  position: relative;
}

.main-banner-slider-two.owl-carousel.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
}

.main-banner-slider-two.owl-carousel.owl-theme .owl-nav [class*=owl-] {
  background-color: black;
  color: #ffffff;
  display: inline-block;
  padding: 0;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  font-size: 30px;
  line-height: 54px;
  border-radius: 5px;
  transition: 0.5s;
}

.main-banner-slider-two.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid black;
  background-color: #ffffff;
  color: black;
}

.main-banner-slider-three.owl-carousel.owl-theme {
  position: relative;
}

.main-banner-slider-three.owl-carousel.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
}

.main-banner-slider-three.owl-carousel.owl-theme .owl-nav [class*=owl-] {
  background-color: black;
  color: #ffffff;
  display: inline-block;
  padding: 0;
  width: 60px;
  height: 60px;
  margin: 0 10px;
  font-size: 40px;
  line-height: 66px;
  border-radius: 50%;
  transition: 0.5s;
}

.main-banner-slider-three.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid black;
  background-color: #ffffff;
  color: black;
}

.main-banner-slider-four.owl-carousel.owl-theme {
  position: relative;
}

.main-banner-slider-four.owl-carousel.owl-theme .owl-nav {
  margin-top: 0;
}

.main-banner-slider-four.owl-carousel.owl-theme .owl-nav [class*=owl-] {
  color: black;
  font-size: 30px;
  border: 1px solid black;
  width: 50px;
  height: 50px;
  line-height: 56px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.main-banner-slider-four.owl-carousel.owl-theme .owl-nav [class*=owl-].owl-next {
  right: -60px;
  left: auto;
}

.main-banner-slider-four.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: black;
  color: #ffffff;
}

.main-banner-slider-nine .main-banner .main-banner-item {
  height: 100%;
}

.main-banner-slider-nine .main-banner .main-banner-item.item-three {
  position: relative;
}

.main-banner-slider-nine .main-banner .main-banner-item.item-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6352941176);
}

.main-banner-slider-nine .main-banner .main-banner-item.item-three video {
  width: 100%;
  height: 100%;
}

.main-banner-slider-nine .main-banner .main-banner-item.item-three .main-banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.main-banner-slider-nine .main-banner .main-banner-item.item-three .main-banner-content h1 {
  color: #ffffff;
}

.main-banner-slider-nine .main-banner .main-banner-item.item-three .main-banner-content p {
  color: #ffffff;
}

.main-banner-slider-nine.owl-carousel.owl-theme {
  position: relative;
}

.main-banner-slider-nine.owl-carousel.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
}

.main-banner-slider-nine.owl-carousel.owl-theme .owl-nav [class*=owl-] {
  background-color: black;
  color: #ffffff;
  display: inline-block;
  padding: 0;
  width: 60px;
  height: 60px;
  margin: 0 10px;
  font-size: 40px;
  line-height: 66px;
  border-radius: 50%;
  transition: 0.5s;
}

.main-banner-slider-nine.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  border: 1px solid black;
  background-color: #ffffff;
  color: black;
}

/*================================================
Categories Area CSS
=================================================*/
.categories-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 60px;
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #af884f17;
}

.categories-item {
  text-align: center;
}

.categories-item .icon {
  background-color: #9ad6fc;
  border-radius: 50%;
  display: inline-block;
  height: 130px;
  width: 130px;
  line-height: 160px;
  margin-bottom: 20px;
}

.categories-item .icon i {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  color: black;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s;
  font-size: 55px;
}

.categories-item .icon i:hover {
  background-color: black;
  color: #ffffff;
}

.categories-item h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.categories-item h3 a {
  color: #202647;
}

.categories-item-box {
  text-align: center;
  margin: 5px;
  border-radius: 2px;
}

.categories-item-box .icon {
  position: relative;
  margin-bottom: 20px;
}

.categories-item-box .icon p {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px dashed black;
  border-radius: 50%;
  left: 55px;
  z-index: 0;
  transition: 0.5s;
}

.categories-item-box .icon i {
  position: relative;
  z-index: 9;
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: transparent;
  border: 1px dashed black;
  color: black;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s;
  font-size: 55px;
  background-color: white;
}

.categories-item-box .icon:hover p {
  border: 1px solid black;
  color: white;
  background-color: black;
}

.categories-item-box .icon:hover i {
  background-color: black;
  color: #ffffff;
  border: 1px dashed black;
}

.categories-item-box h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.categories-item-box h3 a {
  color: #202647;
}

.categories-slider.owl-theme .owl-nav,
.highlights-slider.owl-theme .owl-nav {
  margin-top: 0;
}

.categories-slider.owl-theme .owl-nav .owl-prev,
.categories-slider.owl-theme .owl-nav .owl-next,
.highlights-slider.owl-theme .owl-nav .owl-prev,
.highlights-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  line-height: 51px;
  transition: 0.5s;
  background-color: transparent;
  border-style: solid;
  border-color: black;
  color: black;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}

.categories-slider.owl-theme .owl-nav .owl-prev:hover,
.categories-slider.owl-theme .owl-nav .owl-prev:focus,
.categories-slider.owl-theme .owl-nav .owl-next:hover,
.categories-slider.owl-theme .owl-nav .owl-next:focus,
.highlights-slider.owl-theme .owl-nav .owl-prev:hover,
.highlights-slider.owl-theme .owl-nav .owl-prev:focus,
.highlights-slider.owl-theme .owl-nav .owl-next:hover,
.highlights-slider.owl-theme .owl-nav .owl-next:focus {
  background-color: black;
  color: #ffffff;
  border-color: black;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}

.categories-slider.owl-theme .owl-nav .owl-prev i,
.categories-slider.owl-theme .owl-nav .owl-next i,
.highlights-slider.owl-theme .owl-nav .owl-prev i,
.highlights-slider.owl-theme .owl-nav .owl-next i {
  font-size: 40px;
  position: relative;
  top: 2px;
}

.categories-slider.owl-theme .owl-nav .owl-next,
.highlights-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -50px;
}

.categories-slider.owl-theme .owl-nav .owl-prev,
.categories-slider.owl-theme .owl-nav .owl-next,
.highlights-slider.owl-theme .owl-nav .owl-prev,
.highlights-slider.owl-theme .owl-nav .owl-next {
  opacity: 1;
  visibility: visible;
  left: -70px;
  transition: 0.5s;
}

.categories-slider.owl-theme:hover .owl-nav .owl-next,
.highlights-slider.owl-theme:hover .owl-nav .owl-next {
  left: auto;
  right: -70px;
}

.categories-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}


/*================================================
About Area CSS
=================================================*/
.about-area .container-fluid {
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
}

.about-image {
  position: relative;
  text-align: right;
  padding-bottom: 200px;
  padding-right: 30px;
}

.about-image img {
  border-radius: 10px;
}

.about-image img:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 0;
}

.about-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: moveLeftBounce 3s linear infinite;
}

.about-shape .shape-2 {
  position: absolute;
  bottom: -115px;
  right: 30px;
  z-index: -1;
  max-width: 275px;
  animation: moveBounce 5s linear infinite;
}

@keyframes moveBounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes moveLeftBounce {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0px);
  }
}

.about-content {
  max-width: 645px;
}

.about-content h3 {
  font-size: 38px;
  margin-bottom: 0;
}

.about-content .bar {
  height: 5px;
  width: 100px;
  background: black;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 25px auto 20px 0;
}

.about-content .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ffffff;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.about-content p {
  margin-bottom: 0;
}

.about-content .about-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}

.about-content .about-list li {
  list-style-type: none;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #202647;
  position: relative;
  padding-left: 38px;
  padding-top: 2px;
}

.about-content .about-list li:last-child {
  margin-bottom: 0;
}

.about-content .about-list li i {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: #dafafc;
  color: black;
  text-align: center;
  transition: 0.5s;
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-content .about-list li:hover i {
  background-color: black;
  color: #ffffff;
}

.about-content .about-btn {
  margin-top: 30px;
}

/*================================================
Doctor Area CSS
=================================================*/
.highlight-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.highlight-area.bg-shape {
  position: relative;
}

.highlight-area.bg-shape::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  background-image: url(../img/doctor-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 30%;
  z-index: -1;
}

.highlight-area .section-title {
  text-align: left;
}

.highlight-area .section-title .bar {
  margin: 20px auto 20px 0;
}

.highlight-area .section-title p {
  margin: 0 auto 0 0;
}

.highlight-area .specialist-btn {
  text-align: right;
}

.highlight-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}

.single-package,
.cost-item {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 20px 20px 30px;
  border-radius: 8px;
  transition: 0.5s;
}

.single-package .package-image {
  position: relative;
  border: 1px solid #eeeeee;
  overflow: hidden;
}

.single-package .package-image img {
  transition: 0.5s;
  margin-top: 5px;
}

.single-package .package-image a i {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #e8f1fa;
  color: black;
  font-size: 30px;
  text-align: center;
  border-radius: 50px;
  position: absolute;
  top: 5px;
  right: 5px;
  transition: 0.5s;
}

.single-package .package-image a i:hover {
  background-color: black;
  color: #ffffff;
}

.single-package .package-content {
  margin-top: 20px;
  position: relative;
}

.single-package .package-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.single-package .package-content h3 a {
  color: #2a2a2a;
}

.single-package .package-content .designation {
  font-size: 14px;
  color: #202647;
  font-weight: 500;
  margin-bottom: 5px;
}

.single-package .package-content .department-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: black;
  color: #ffffff;
  border-radius: 10px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
}

.single-package .package-content .department-btn:hover {
  background-color: black;
  color: #ffffff;
}

.single-package .package-content .rating {
  padding-left: 0;
  margin-bottom: 0;
}

.single-package .package-content .rating li {
  list-style-type: none;
  display: inline-block;
}

.single-package .package-content .rating li i {
  font-size: 15px;
  color: #f9c23e;
}

.single-package .package-content .information-list {
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
}

.single-package .package-content .information-list li {
  list-style-type: none;
  font-size: 14px;
  color: #2a2a2a;
  display: flex;
  font-weight: 500;
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
  margin-right: 15px;
}

.single-package .package-content .information-list li i {
  font-size: 16px;
  color: black;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.single-package .package-content .information-list li img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-top: 2px;
}

.single-package .package-content .btn-group .default-btn {
  padding: 10px 20px;
  font-size: 15px;
}

.single-package .package-content .btn-group .default-btn:hover {
  background-color: black;
}

.single-package .package-content .btn-group .optional-btn {
  display: inline-block;
  padding: 10px 25px;
  /* background-color: #2A3942; */
  background-color: #d9d9d9;
  /* border: 1px solid #000; */
  color: #000000;
  border-radius: 10px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
}

.single-package .package-content .btn-group .optional-btn:hover {
  background-color: #000;
  color: #ffffff;
}

.single-package:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.gradient-top-border {
  background: linear-gradient(to right, #626668, #ffedcc);
  padding-top: 5px;
  border-radius: 11px;
}

.single-package.style-2 {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

.single-package.style-2 .package-image {
  max-width: 250px;
  border: none;
}

.single-package.style-2 .package-image img {
  transform: unset;
  max-width: 100%;
  margin: 0px;
  border-radius: 5px;
}

.single-package.style-2 .package-content {
  margin-top: 0px;
}

.single-package.style-2 .package-content .btn-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
}

.single-package.style-2 .package-content .btn-group a {
  text-align: center;
}

.single-package.style-2 .package-content .btn-group a.wtsap-btn {
  background: linear-gradient(to right, #18be55, #25D366);
  border: 1px solid #25D366;
  display: flex;
  justify-content: center;
}

.single-package.style-2 .package-content .btn-group a.wtsap-btn p {
  color: white;
  margin-bottom: 0px;
  margin-left: 3px;
}

.single-package.style-2 .package-content .btn-group a.wtsap-btn i {
  font-size: 18px;
  margin-top: 1px;
}

.single-package.style-2 .package-content .information-list {
  margin-bottom: 10px;
}

.doctor-inner-box {
  max-width: 1280px;
  margin: auto;
}

.doctor-slider {
  left: calc((100% - 1280px) / 2);
  position: relative;
}

.highlight-wrap .single-package {
  border: 1px solid #eeeeee;
}


.doctor-shape .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.doctor-shape .shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.advertisement-wrap.style-2 img {
  margin-top: 150px;
  transform: rotate(-90deg);
}

/*================================================
Queries Area CSS
=================================================*/
.queries-area {
  overflow: hidden;
}

.queries-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}

.queries-form {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 50px 40px;
  border-radius: 5px;
  border: 1px solid #eeeeee;
}

.queries-form .content {
  margin-bottom: 30px;
}

.queries-form .content h3 {
  font-size: 32px;
  margin-bottom: 0;
  line-height: 1.4;
}

.queries-form form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.queries-form form .form-group .form-control {
  padding: 10px 10px 10px 45px;
  color: #202647;
  background-color: #f2f9fc;
  border: 1px solid #f2f9fc;
  font-size: 14px;
  font-weight: 400;
  height: 60px;
  transition: 0.5s;
  border-radius: 5px;
}

.queries-form form .form-group .form-control::-moz-placeholder {
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}

.queries-form form .form-group .form-control::placeholder {
  transition: 0.5s;
  color: #6b6b84;
}

.queries-form form .form-group .form-control:focus {
  box-shadow: none;
  background-color: transparent;
  border: 1px solid black;
}

.queries-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.queries-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.queries-form form .form-group textarea.form-control {
  height: 150px;
  padding: 15px 0 0 15px;
}

.queries-form form .form-group label {
  z-index: 1;
  display: block;
  margin-bottom: 0;
  position: absolute;
  left: 15px;
  color: black;
  font-size: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.queries-form form .form-group label a {
  display: block;
  color: black;
}

.queries-form form .nice-select {
  height: 60px;
  width: 100%;
  line-height: 58px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #f2f9fc;
  border: 1px solid #f2f9fc;
  color: #6b6b84;
  border-radius: 5px;
  transition: 0.5s;
  margin-bottom: 15px;
}

.queries-form form .nice-select:focus {
  background-color: transparent;
  border: 1px solid black;
}

.queries-form form .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.queries-form form .nice-select .list .option {
  transition: 0.5s;
  color: #202647;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}

.queries-form form .nice-select .list .option:hover {
  background-color: black !important;
  color: #ffffff;
}

.queries-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.queries-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: black;
  right: 15px;
}

.queries-form form .queries-btn {
  margin-top: 5px;
}

.queries-form form .queries-btn .default-btn {
  border: none;
  padding: 15px;
  width: 100%;
  cursor: pointer;
}

.queries-form form .form-check {
  margin-bottom: 10px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}

.queries-form form .form-check a {
  color: black;
}

.queries-form.queries-form-width {
  max-width: 630px;
}

.queries-image {
  position: relative;
  text-align: center;
}

.queries-image .queries-shape .shape-1 {
  position: absolute;
  bottom: -50px;
  z-index: -1;
  animation: moveLeftBounce 3s linear infinite;
}

.queries-image .queries-shape .shape-2 {
  position: absolute;
  bottom: 0;
  z-index: -1;
  animation: moveBounce 20s linear infinite;
}

.queries-image .queries-shape .shape-3 {
  position: absolute;
  bottom: -85px;
  z-index: -1;
  animation: moveLeftBounce 3s linear infinite;
  max-width: 800px;
  left: 0;
  right: 0;
  margin: auto;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-content h3 {
  font-size: 38px;
  margin-bottom: 0;
}

.overview-content .bar {
  height: 5px;
  width: 100px;
  background: black;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px auto 20px 0;
}

.overview-content .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ffffff;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.overview-content p {
  margin-bottom: 0;
}

.overview-content .overview-btn {
  margin-top: 25px;
}

.overview-image {
  position: relative;
}

.overview-image .video-btn {
  display: inline-block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  background-color: black;
  border-radius: 50%;
  color: #ffffff;
  position: absolute;
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
}

.overview-image .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid #ffffff;
  animation: ripple 1s linear infinite;
}

.overview-image .video-btn:hover {
  background-color: #ffffff;
}

.overview-image .video-btn:hover i {
  color: black;
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.75);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/*================================================
Client Area CSS
=================================================*/
.client-area {
  background: linear-gradient(to bottom, #d1ad93cb, #a7856dc0, #af884fa8, #8b6b54b0, #7c5d48a8);
  overflow: hidden;
}

.client-area.bg-ffffff {
  background-color: #ffffff;
}

.client-area.bg-ffffff .client-inner-box {
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}

.client-inner-box {
  background-color: #ffffff;
  padding: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.client-inner-box .title {
  margin-bottom: 30px;
  text-align: center;
}

.client-inner-box .title h3 {
  font-size: 38px;
  margin-bottom: 0;
}

.client-item {
  text-align: center;
}

.client-item p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 0;
}

.client-item .client-info {
  margin-top: 25px;
}

.client-item .client-info img {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.client-item .client-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.client-item .client-info span {
  font-size: 14px;
  font-weight: 500;
  color: black;
}

.client-slider.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  background-color: transparent;
  transition: 0.5s;
  border-radius: 50%;
  margin: 5px 5px;
  border: 1px solid black;
  position: relative;
}

.client-slider.owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  border-radius: 50%;
  margin: 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: scale(0);
}

.client-slider.owl-theme .owl-dots .owl-dot:hover span::before,
.client-slider.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.client-slider.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 0;
}

.client-image {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  text-align: center;
}

.client-image .client-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  animation: moveBounce 10s linear infinite;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog {
  margin-bottom: 30px;
  transition: 0.5s;
}

.single-blog .blog-image {
  overflow: hidden;
  position: relative;
}

.single-blog .blog-image img {
  transition: 0.5s;
}

.single-blog .blog-image span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: black;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  padding: 10px 25px;
}

.single-blog .blog-content {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}

.single-blog .blog-content h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.4;
}

.single-blog .blog-content h3 a {
  color: #202647;
}

.single-blog .blog-content p {
  margin-bottom: 12px;
}

.single-blog .blog-content .blog-btn {
  font-size: 15px;
  color: black;
  font-weight: 500;
  transition: 0.5s;
}

.single-blog:hover {
  transform: translateY(-5px);
}

.single-blog:hover .blog-image img {
  transform: rotate(2deg) scale(1.2);
}

.single-blog:hover .blog-content h3 a {
  color: black;
}

.single-blog:hover .blog-content .blog-btn {
  letter-spacing: 1px;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  background-color: black;
}

.single-fun-fact {
  margin-bottom: 30px;
  text-align: center;
}

.single-fun-fact h3 {
  line-height: 1;
  font-size: 75px;
  transition: 0.5s;
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 500;
}

.single-fun-fact p {
  font-weight: 500;
  color: #ffffff;
}

/*================================================
Newsletter Area CSS
=================================================*/
.newsletter-area {
  background-color: #eaf6fc;
}

.newsletter-area.bg-color {
  background-color: #f3f7fb;
}

.newsletter-area.bg-color .newsletter-form button {
  background: linear-gradient(to bottom, #0090cc, #0080d8, #006de1, #0056e3, #1f35db);
}

.newsletter-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
}

.newsletter-content p {
  margin-bottom: 0;
}

.newsletter-form {
  position: relative;
}

.newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 70px;
  padding: 15px 15px 14px;
  border-radius: 5px;
  outline: 0;
  color: #202647;
}

.newsletter-form .input-newsletter::-moz-placeholder {
  color: #6b6b84;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.newsletter-form .input-newsletter::placeholder {
  color: #6b6b84;
  transition: 0.5s;
}

.newsletter-form .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}

.newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}

.newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: black;
  color: #ffffff;
  border: none;
  height: 62px;
  padding: 0 30px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 50px;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.newsletter-form button:hover {
  background-color: #202647;
  color: #ffffff;
}

.newsletter-form #validator-newsletter {
  color: red;
  position: relative;
  top: 8px;
  font-size: 15px;
  font-weight: 400;
}

/*================================================
Healthcare Area CSS
=================================================*/
.healthcare-area {
  background: linear-gradient(to bottom, #d1ad93cb, #a7856dc0, #af884fa8, #8b6b54b0, #7c5d48a8);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.healthcare-content h3 {
  font-size: 35px;
  margin-bottom: 18px;
  color: #ffffff;
}

.healthcare-content p {
  color: #ffffff;
  margin-bottom: 0;
}

.healthcare-content .healthcare-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}

.healthcare-content .healthcare-list li {
  list-style-type: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-left: 38px;
  padding-top: 2px;
}

.healthcare-content .healthcare-list li:last-child {
  margin-bottom: 0;
}

.healthcare-content .healthcare-list li i {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: #dafafc;
  color: black;
  text-align: center;
  transition: 0.5s;
  border-radius: 30px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.healthcare-content .healthcare-list li:hover i {
  background-color: black;
  color: #ffffff;
}

.healthcare-content .healthcare-btn {
  margin-top: 35px;
}

.healthcare-content .healthcare-btn .default-btn {
  background-color: #ffffff;
  color: black;
  padding: 12px 25px;
}

.healthcare-content .healthcare-btn .default-btn:hover {
  background-color: black;
  color: #ffffff;
}

.healthcare-image {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.healthcare-image img {
  border-radius: 0px 0px 0px 100px;
}

.healthcare-image::before {
  position: absolute;
  content: "";
  height: 90%;
  width: 95%;
  background-color: #b5bef2;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  border-radius: 0px 0px 0px 100px;
}

.healthcare-image .image-shape-1 {
  position: absolute;
  bottom: -100px;
  left: -60px;
  z-index: -1;
  animation: moveBounce 10s linear infinite;
}

.healthcare-shape .shape-1 {
  position: absolute;
  left: -10px;
  top: -80px;
  z-index: -1;
  max-width: 320px;
  animation: moveBounce 15s linear infinite;
}

.healthcare-shape .shape-2 {
  position: absolute;
  right: -50px;
  top: -50px;
  z-index: -1;
  animation: moveLeftBounce 10s linear infinite;
}

/*================================================
Specialist Area CSS
=================================================*/
.specialist-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.specialist-area .container-fluid {
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.specialist-area .container-fluid .row .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}

.specialist-inner {
  background: linear-gradient(to bottom, #018ecc, #007ed8, #006ce0, #0055e2, #1f35db);
  padding: 100px 25px 100px 0;
  position: relative;
  z-index: 1;
}

.specialist-inner .specialist-content {
  max-width: 615px;
  margin-left: auto;
}

.specialist-inner .specialist-content .title {
  margin-bottom: 35px;
}

.specialist-inner .specialist-content .title h3 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #ffffff;
}

.specialist-inner .specialist-content .title h4 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #ffffff;
}

.specialist-inner .specialist-content .title span {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.specialist-inner .specialist-content p {
  color: #ffffff;
  margin-bottom: 20px;
}

.specialist-inner .specialist-content span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.specialist-inner .specialist-content .specialist-info {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}

.specialist-inner .specialist-content .specialist-info li {
  list-style-type: none;
  display: inline-block;
}

.specialist-inner .specialist-content .specialist-info li span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-right: 5px;
}

.specialist-inner .specialist-content .specialist-info li a {
  margin-right: 10px;
}

.specialist-inner .specialist-content .specialist-info li a:last-child {
  margin-right: 0;
}

.specialist-inner .specialist-content .specialist-info li a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: #ffffff;
  color: black;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
  font-size: 18px;
  border-radius: 50px;
  transition: 0.5s;
}

.specialist-inner .specialist-content .specialist-info li a i:hover {
  background-color: black;
  color: #ffffff;
  transform: translateY(-2px);
}

.specialist-inner .specialist-content .specialist-btn {
  margin-top: 35px;
}

.specialist-inner .specialist-content .specialist-btn .default-btn {
  background-color: #ffffff;
  color: black;
}

.specialist-inner .specialist-content .specialist-btn .default-btn:hover {
  background-color: black;
  color: #ffffff;
}

.specialist-inner .specialist-shape {
  position: absolute;
  top: 0;
  left: -50%;
  opacity: 20%;
  z-index: -1;
}

.specialist-inner.two .specialist-content .specialist-btn .default-btn {
  color: black;
}

.specialist-inner.two .specialist-content .specialist-btn .default-btn:hover {
  color: #ffffff;
}

.specialist-inner.two .specialist-content .specialist-info li a i {
  color: black;
}

.specialist-inner.two .specialist-content .specialist-info li a i:hover {
  color: #ffffff;
}

.specialist-image {
  background-image: url(../img/specialist/specialist.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.specialist-image.two {
  background-image: url(../img/specialist/specialist-2.jpg);
}

/*================================================
Team Area CSS
=================================================*/
.team-card {
  position: relative;
  margin-bottom: 30px;
}

.team-card img {
  position: relative;
  margin-bottom: 120px;
  border-radius: 5px 5px 0 0;
}

.team-card .content {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px 20px;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  border-radius: 0 0 5px 5px;
}

.team-card .content h3 {
  margin-bottom: 10px;
}

.team-card .content h3 a {
  font-size: 22px;
  color: #202647;
}

.team-card .content span {
  color: black;
  display: inline-block;
}

.team-card .content .social-link {
  padding: 0;
  margin: 15px 0 -50px 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.team-card .content .social-link li {
  list-style-type: none;
  display: inline-block;
  margin: 0 5px;
}

.team-card .content .social-link li i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
  background-color: black;
  border-radius: 50%;
  transition: 0.5s;
}

.team-card .content .social-link li i:hover {
  background-color: black;
}

.team-card:hover .content .social-link {
  opacity: 1;
  visibility: visible;
  margin: 15px 0 0 0;
}

/*================================================
Process Area CSS
=================================================*/
.single-process {
  margin-bottom: 30px;
}

.single-process .process-list {
  padding-left: 0;
  margin-bottom: 0;
}

.single-process .process-list li {
  list-style-type: none;
  font-size: 20px;
  font-weight: 600;
  background-color: #f1f9fd;
  color: #202647;
  padding: 22px 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  border-radius: 5px;
}

.single-process .process-list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: black;
  z-index: -1;
  transition: 0.5s;
  border-radius: 5px;
}

.single-process .process-list li:last-child {
  margin-bottom: 0;
}

.single-process .process-list li i {
  margin-right: 5px;
  color: black;
  transition: 0.5s;
}

.single-process .process-list li:hover {
  color: #ffffff;
}

.single-process .process-list li:hover::before {
  width: 100%;
}

.single-process .process-list li:hover i {
  color: #ffffff;
}

.single-process .process-form {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px 20px;
  border-radius: 5px;
}

.single-process .process-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.single-process .process-form form .form-group {
  margin-bottom: 15px;
}

.single-process .process-form form .form-group .form-control {
  padding: 10px 10px 10px 10px;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eeeeee;
  font-size: 14px;
  font-weight: 400;
  height: 45px;
  transition: 0.5s;
  border-radius: 5px;
}

.single-process .process-form form .form-group .form-control::-moz-placeholder {
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}

.single-process .process-form form .form-group .form-control::placeholder {
  transition: 0.5s;
  color: #6b6b84;
}

.single-process .process-form form .form-group .form-control:focus {
  box-shadow: none;
  background-color: transparent;
  border: 1px solid black;
}

.single-process .process-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.single-process .process-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.single-process .process-form form .nice-select {
  height: 45px;
  width: 100%;
  line-height: 45px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: transparent;
  border: 1px solid #eeeeee;
  color: #6b6b84;
  border-radius: 5px;
  transition: 0.5s;
  margin-bottom: 1rem;
}

.single-process .process-form form .nice-select:focus {
  background-color: transparent;
  border: 1px solid black;
}

.single-process .process-form form .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.single-process .process-form form .nice-select .list .option {
  transition: 0.5s;
  color: #202647;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}

.single-process .process-form form .nice-select .list .option:hover {
  background-color: black !important;
  color: #ffffff;
}

.single-process .process-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.single-process .process-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: black;
  right: 15px;
}

.single-process .process-form form .process-btn .default-btn {
  padding: 10px 25px;
  display: block;
  width: 100%;
  cursor: pointer;
  border: none;
  font-size: 15px;
  background-color: black;
  border-radius: 5px;
}

.single-process .process-form form .process-btn .default-btn:hover {
  background-color: black;
}

/*================================================
Consult Area CSS
=================================================*/
.consult-area {
  background-color: #047daf;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.consult-image {
  text-align: center;
}

.consult-content h3 {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.consult-content p {
  color: #ffffff;
  margin-bottom: 0;
}

.consult-content .consult-inner-content {
  position: relative;
  padding-left: 85px;
  margin-top: 30px;
}

.consult-content .consult-inner-content .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.consult-content .consult-inner-content .icon i {
  display: inline-block;
  background-color: #b5e2fa;
  color: black;
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
  font-size: 35px;
  border-radius: 50px;
  transition: 0.5s;
}

.consult-content .consult-inner-content h4 {
  font-size: 25px;
  margin-bottom: 12px;
  color: #ffffff;
}

.consult-content .consult-inner-content p {
  font-size: 15px;
}

.consult-content .consult-inner-content:hover .icon i {
  background-color: black;
  color: #ffffff;
}

.consult-shape {
  position: absolute;
  top: -100px;
  left: -110px;
  z-index: -1;
  animation: moveBounce 10s linear infinite;
}

/*================================================
Live Area CSS
=================================================*/
.live-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.live-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}

.live-image {
  text-align: center;
  position: relative;
  z-index: 1;
}

.live-image .shape {
  position: absolute;
  bottom: 0;
  z-index: -1;
  animation: moveLeftBounce 5s linear infinite;
}

.live-inner-box {
  padding-left: 20px;
  max-width: 615px;
}

.live-inner-box .title {
  margin-bottom: 30px;
}

.live-inner-box .title h3 {
  font-size: 38px;
  line-height: 1.4;
}

.live-inner-box .live-content {
  text-align: center;
  margin-bottom: 30px;
}

.live-inner-box .live-content .icon {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 50px 30px 30px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.live-inner-box .live-content .icon::before {
  position: absolute;
  content: "";
  height: 150px;
  width: 150px;
  background-color: #edf7fb;
  right: 45px;
  top: 30px;
  z-index: -1;
  border-radius: 50%;
}

.live-inner-box .live-content .icon i {
  font-size: 130px;
  color: black;
}

.live-inner-box .live-content h4 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.4;
}

.live-shape {
  position: absolute;
  top: 10%;
  transform: translateY(-10%);
  right: 0;
  z-index: -1;
  animation: moveLeftBounce 5s linear infinite;
}

/*================================================
Testimonial Area CSS
=================================================*/
.testimonial-area {
  /* background: linear-gradient(to bottom, #d1ad93cb, #a7856dc0, #af884fa8, #8b6b54b0, #7c5d48a8); */
  /* background: linear-gradient(180deg, #fffdfa 54.54%, #FEF9ED); */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* .testimonial-image {
  background-image: url(../img/testimonial.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
} */

.testimonial-inner-box {
  padding: 40px 30px 30px;
  background-color: white;
  border-radius: 15px;
  border: 1px solid #e1e1e1;
}

.testimonial-inner-box .title {
  margin-bottom: 30px;
  text-align: center;
}

.testimonial-inner-box .title h3 {
  font-size: 38px;
  margin-bottom: 0;
}

.testimonial-item {
  text-align: center;
}

.testimonial-item .icon {
  margin-bottom: 20px;
}

.testimonial-item .icon img {
  display: inline-block;
  height: 90px;
  width: 90px;
  background-color: #af884f28;
  color: black;
  font-size: 35px;
  border-radius: 50px;
  transition: 0.5s;
}

.testimonial-item .icon i:hover {
  background-color: black;
  color: #ffffff;
}

.testimonial-item p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-item .testimonial-info {
  margin-top: 25px;
}

.testimonial-item .testimonial-info img {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-item .testimonial-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.testimonial-item .testimonial-info span {
  font-size: 14px;
  font-weight: 500;
  color: black;
}

.testimonial-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  animation: moveBounce 15s linear infinite;
}

/*================================================
Services Area CSS
=================================================*/
.single-services {
  margin-bottom: 30px;
}

.single-services .services-image {
  overflow: hidden;
}

.single-services .services-image img {
  border-radius: 5px 5px 0 0;
  transition: 0.5s;
}

.single-services .services-content {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.single-services .services-content h3 {
  font-size: 25px;
  transition: 0.5s;
  margin-bottom: 15px;
}

.single-services .services-content p {
  transition: 0.5s;
  margin-bottom: 15px;
}

.single-services .services-content .read-more-btn {
  display: inline-block;
  color: black;
  font-weight: 500;
  transition: 0.5s;
}

.single-services .services-content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: black;
  z-index: -1;
  transition: 0.5s;
  border-radius: 0 0 5px 5px;
}

.single-services:hover .services-content::before {
  height: 100%;
}

.single-services:hover .services-content h3 a {
  color: #ffffff;
}

.single-services:hover .services-content p {
  color: #ffffff;
}

.single-services:hover .services-content .read-more-btn {
  color: #ffffff;
}

.single-services:hover .services-image img {
  transform: rotate(2deg) scale(1.2);
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area {
  background-color: #fafafa;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

.pricing-list-tab .tabs {
  text-align: center;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 40px;
}

.pricing-list-tab .tabs li {
  display: inline-block;
}

.pricing-list-tab .tabs li a {
  display: block;
  background-color: #f2f2f2;
  color: #202647;
  padding: 10px 30px 10px 35px;
  position: relative;
  border-radius: 5px;
  margin-left: -1px;
  margin-right: -1px;
  font-size: 16px;
  font-weight: 400;
}

.pricing-list-tab .tabs li.current a {
  color: #ffffff;
  background-color: #202647;
}

.pricing-list-tab .tabs li:nth-child(1) a {
  border-radius: 30px 0 0 30px;
}

.pricing-list-tab .tabs li:nth-child(2) a {
  border-radius: 0 30px 30px 0;
}

.single-pricing-table {
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  padding: 35px 25px;
  transition: 0.5s;
}

.single-pricing-table .pricing-header h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
}

.single-pricing-table .price {
  font-size: 50px;
  color: black;
  margin-top: 20px;
  margin-bottom: 25px;
  line-height: 1;
}

.single-pricing-table .pricing-features {
  padding-left: 0;
  margin-bottom: 0;
}

.single-pricing-table .pricing-features li {
  list-style-type: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}

.single-pricing-table .pricing-features li:last-child {
  margin-bottom: 0;
}

.single-pricing-table .pricing-features li i {
  color: black;
  margin-right: 5px;
  font-size: 15px;
}

.single-pricing-table .pricing-features li.color-gray {
  color: #b4b4b4;
}

.single-pricing-table .pricing-btn {
  margin-top: 25px;
}

.single-pricing-table .pricing-btn .default-btn {
  padding: 12px 35px;
  border-radius: 5px;
  font-size: 15px;
}

.single-pricing-table:hover {
  border: 1px solid black;
}

/*================================================
Page Banner CSS
=================================================*/
.page-banner-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/page-banner/page-banner-1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
}

.page-banner-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.1;
}

.page-banner-area.item-bg1 {
  background-image: url(../img/page-banner/page-banner-2.jpg);
}

.page-banner-area.item-bg2 {
  background-image: url(../img/page-banner/page-banner-3.jpg);
}

.page-banner-area.item-bg3 {
  background-image: url(../img/page-banner/page-banner-4.jpg);
}

.page-banner-area.item-bg4 {
  background-image: url(../img/inner-banner.png);
}

.page-banner-content {
  text-align: center;
}

.page-banner-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 42px;
}

.page-banner-content ul {
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
}

.page-banner-content ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 15px;
  font-weight: 600;
  color: white;
  position: relative;
}

.page-banner-content ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 6px;
  height: 12px;
  width: 1px;
  background: white;
}

.page-banner-content ul li:first-child {
  margin-left: 0;
}

.page-banner-content ul li:first-child::before {
  display: none;
}

.page-banner-content ul li a {
  display: block;
  color: #ffffff;
}

.page-banner-area-two {
  background-color: #e4e3e3;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-banner-content-two h2 {
  color: #202647;
  margin-bottom: 12px;
  font-size: 35px;
}

.page-banner-content-two ul {
  padding-left: 0;
  margin-bottom: 0;
}

.page-banner-content-two ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 15px;
  font-weight: 600;
  color: black;
  position: relative;
  font-size: 15px;
}

.page-banner-content-two ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 6px;
  height: 12px;
  width: 1px;
  background: black;
}

.page-banner-content-two ul li:first-child {
  margin-left: 0;
}

.page-banner-content-two ul li:first-child::before {
  display: none;
}

.page-banner-content-two ul li a {
  display: block;
  color: #202647;
}

/*================================================
Gallery Area CSS
=================================================*/
.single-gallery-box {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.single-gallery-box::before {
  width: 100%;
  content: "";
  position: absolute;
  height: 100%;
  background-color: #000000;
  left: 0;
  top: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-gallery-box .gallery-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 35px;
  color: #ffffff;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
}

.single-gallery-box:hover::before {
  opacity: 0.3;
  visibility: visible;
}

.single-gallery-box:hover .gallery-btn {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/*================================================
My Account Area CSS
=================================================*/
.login-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  max-width: 650px;
  margin: auto;
}

.login-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.login-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid black;
  height: 100%;
  width: 100px;
}

.login-form form .form-group {
  margin-bottom: 25px;
}

.login-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 500;
  font-size: 16px;
}

.login-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: unset;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.login-form form .form-group .form-control:focus {
  border: 1px solid black;
  background-color: transparent;
}

.login-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: 0.5s;
}

.login-form form .lost-your-password {
  text-align: right;
}

.login-form form .lost-your-password a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #6b6b84;
}

.login-form form .lost-your-password a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  transition: 0.5s;
  background-color: #eeeeee;
}

.login-form form .lost-your-password a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  transition: 0.5s;
  bottom: 0;
  content: "";
  background-color: black;
}

.login-form form .lost-your-password a:hover::before {
  width: 0;
}

.login-form form .lost-your-password a:hover::after {
  width: 100%;
}

.login-form form button {
  border: none;
  margin-top: 25px;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: black;
  color: #ffffff;
  transition: 0.5s;
}

.login-form form button:hover {
  background-color: black;
}

.login-form.mb-30 {
  margin-bottom: 30px;
}

.register-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  max-width: 650px;
  margin: auto;
}

.register-form2 {
  padding: 35px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin: auto;
}

.register-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.register-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid black;
  height: 100%;
  width: 100px;
}

.register-form form .form-group {
  margin-bottom: 25px;
}

.register-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 500;
  font-size: 16px;
}

.register-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: unset;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.register-form form .form-group .form-control:focus {
  border: 1px solid black;
  background-color: transparent;
}

.register-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.register-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: 0.5s;
}

.register-form form .description {
  font-style: italic;
  font-size: 13.5px;
  margin-top: -10px;
  margin-bottom: 15px;
}

.register-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: black;
  color: #ffffff;
  transition: 0.5s;
}

.register-form form button:hover {
  background-color: black;
}

/*================================================
Change Password Area CSS
=================================================*/
.change-password-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  max-width: 650px;
  margin: auto;
}

.change-password-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.change-password-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid black;
  height: 100%;
  width: 100px;
}

.change-password-form form .form-group {
  margin-bottom: 25px;
}

.change-password-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 500;
  font-size: 16px;
}

.change-password-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: unset;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.change-password-form form .form-group .form-control:focus {
  border: 1px solid black;
  background-color: transparent;
}

.change-password-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.change-password-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: 0.5s;
}

.change-password-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: black;
  color: #ffffff;
  transition: 0.5s;
}

.change-password-form form button:hover {
  background-color: black;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  background: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 20px 40px 20px 20px;
  color: #202647;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #202647;
  font-size: 20px;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\ebc0";
  color: black;
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid black;
  color: #6b6b84;
  font-size: 15px;
  font-weight: 400;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-contact-image {
  background-image: url(../img/faq-contact.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
}

.error-content h3 {
  font-size: 38px;
  margin-top: 45px;
  margin-bottom: 20px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 25px;
  font-size: 15px;
}

.error-content .default-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: black;
  color: #ffffff;
  transition: 0.5s;
}

.error-content .default-btn:hover {
  background-color: black;
}

/*================================================
Terms of Service Area CSS
=================================================*/
.terms-of-service-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.terms-of-service-accordion .accordion .accordion-item {
  display: block;
  background: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-bottom: 10px;
}

.terms-of-service-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.terms-of-service-accordion .accordion .accordion-title {
  padding: 20px 40px 20px 20px;
  color: #202647;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}

.terms-of-service-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #202647;
  font-size: 20px;
  transition: 0.5s;
}

.terms-of-service-accordion .accordion .accordion-title.active i::before {
  content: "\ebc0";
  color: black;
}

.terms-of-service-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid black;
  color: #6b6b84;
  font-size: 15px;
  font-weight: 400;
}

.terms-of-service-accordion .accordion .accordion-content.show {
  display: block;
}

/*================================================
Privacy policy Area CSS
=================================================*/
.privacy-policy-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.privacy-policy-accordion .accordion .accordion-item {
  display: block;
  background: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-bottom: 10px;
}

.privacy-policy-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.privacy-policy-accordion .accordion .accordion-title {
  padding: 20px 40px 20px 20px;
  color: #202647;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}

.privacy-policy-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #202647;
  font-size: 20px;
  transition: 0.5s;
}

.privacy-policy-accordion .accordion .accordion-title.active i::before {
  content: "\ebc0";
  color: black;
}

.privacy-policy-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid black;
  color: #6b6b84;
  font-size: 15px;
  font-weight: 400;
}

.privacy-policy-accordion .accordion .accordion-content.show {
  display: block;
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
  height: 100vh;
  background-image: url(../img/coming-soon-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.coming-soon-content {
  max-width: 750px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 45px 30px;
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  margin: auto;
}

.coming-soon-content .logo {
  display: inline-block;
}

.coming-soon-content h2 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 0;
}

.coming-soon-content #timer {
  margin-top: 45px;
}

.coming-soon-content #timer div {
  background-color: #333333;
  color: #ffffff;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-size: 40px;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
}

.coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 15px;
  font-weight: 500;
}

.coming-soon-content .newsletter-form {
  position: relative;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}

.coming-soon-content .newsletter-form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}

.coming-soon-content .newsletter-form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  color: #202647;
}

.coming-soon-content .newsletter-form .form-group .label-title i {
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.coming-soon-content .newsletter-form .form-group .input-newsletter {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #eeeeee;
  padding: 4px 0 0 32px;
  color: #202647;
  height: 45px;
  display: block;
  width: 100%;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.coming-soon-content .newsletter-form .form-group .input-newsletter::-moz-placeholder {
  color: #6b6b84;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content .newsletter-form .form-group .input-newsletter::placeholder {
  color: #6b6b84;
  transition: 0.5s;
}

.coming-soon-content .newsletter-form .form-group .input-newsletter:focus {
  box-shadow: none;
  outline: 0;
}

.coming-soon-content .newsletter-form .form-group .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}

.coming-soon-content .newsletter-form .form-group .input-newsletter:focus::placeholder {
  color: transparent;
}

.coming-soon-content .newsletter-form .default-btn {
  border: none;
  position: relative;
  right: 0;
  top: 0;
  padding: 15px 45px;
  border-radius: 5px;
  height: unset;
  line-height: unset;
}

.coming-soon-content .newsletter-form .validation-danger {
  margin-top: 5px;
  color: red;
}

.coming-soon-content .newsletter-form .validation-success {
  margin-top: 15px;
}

.coming-soon-content .newsletter-form p {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 15px;
}

/*================================================
Contact Info Area CSS
=================================================*/
.contact-info-box {
  text-align: center;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
}

.contact-info-box .icon {
  margin-bottom: 0px;
  margin-right: 10px;
}

.contact-info-box .icon i {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 35px;
  color: black;
  transition: 0.5s;
}

.contact-info-box h3 {
  margin-bottom: 1px;
  transition: 0.5s;
  font-size: 20px;
}

.contact-info-box p {
  margin-bottom: 2px;
  transition: 0.5s;
}

.contact-info-box p a {
  display: inline-block;
  color: #6b6b84;
}

.contact-info-box p a:hover {
  color: black;
}

.contact-info-box p:last-child {
  margin-bottom: 0;
}

.contact-info-box:hover {
  transform: translateY(-10px);
}

.contact-info-box:hover .icon i {
  background: black;
  color: #ffffff;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-form {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 35px;
}

.contact-form .title {
  margin-bottom: 30px;
}

.contact-form .title span {
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.contact-form .title h3 {
  font-size: 30px;
  margin-bottom: 0;
  margin-top: 12px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form .form-group .form-control {
  display: block;
  width: 100%;
  height: 60px;
  outline: 0;
  background-color: transparent;
  border: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: none;
  padding: 15px;
  transition: 0.5s;
}

.contact-form .form-group .form-control::-moz-placeholder {
  color: #6b6b84;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.contact-form .form-group .form-control::placeholder {
  color: #6b6b84;
  transition: 0.5s;
}

.contact-form .form-group .form-control:focus {
  outline: 0;
  background-color: #ffffff;
  border-color: black;
  box-shadow: none;
}

.contact-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.contact-form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.contact-form .form-group textarea.form-control {
  height: auto;
  padding: 15px;
}

.contact-form .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
}

.contact-form .form-group .help-block.with-errors ul li {
  font-size: 14px;
}

.contact-form .form-check {
  margin-bottom: 10px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}

.contact-form .form-check a {
  color: black;
}

.contact-form #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}

.contact-form #msgSubmit.text-danger,
.contact-form #msgSubmit.text-success {
  margin-top: 20px;
  font-size: 20px;
}

.contact-form .default-btn {
  border: none;
  margin-top: 10px;
  padding: 12px 25px;
  width: 100%;
  border-radius: 5px;
}

.contact-map iframe {
  border: none;
  width: 100%;
  height: 550px;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  text-align: center;
}

.pagination-area .page-numbers {
  width: 35px;
  height: 35px;
  margin: 0 5px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 35px;
  color: #202647;
  box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  text-align: center;
}

.pagination-area .page-numbers.current,
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers:focus {
  background: black;
  color: #ffffff;
  box-shadow: 0 2px 10px 0 #d8dde6;
}

.pagination-area .page-numbers i {
  position: relative;
  top: 1px;
}

/*================================================
Service details Area CSS
=================================================*/
.service-details-image {
  margin-bottom: 30px;
}

.service-details-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-details-content p {
  font-size: 15px;
  margin-bottom: 20px;
}

.service-details-content .service-details-info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  background: #f4f5fe;
  padding: 35px 30px 30px;
  border-radius: 10px;
}

.service-details-content .service-details-info .single-info-box {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}

.service-details-content .service-details-info .single-info-box h4 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 600;
}

.service-details-content .service-details-info .single-info-box span {
  display: block;
  color: #6b6b84;
  font-size: 16px;
}

.service-details-content .service-details-info .single-info-box .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.service-details-content .service-details-info .single-info-box .social li {
  display: inline-block;
  margin-right: 5px;
}

.service-details-content .service-details-info .single-info-box .social li a {
  background-color: #ffffff;
  color: #6b6b84;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 30px;
  line-height: 32px;
}

.service-details-content .service-details-info .single-info-box .social li a:hover {
  color: #ffffff;
  background: black;
  transform: translateY(-2px);
}

.service-details-content .service-details-info .single-info-box .social li:last-child {
  margin-right: 0;
}

.service-details-content .service-details-info .single-info-box .default-btn {
  display: inline-block;
  padding: 12px 30px;
  color: #ffffff;
  text-transform: capitalize;
  background-color: black;
  border: 1px solid black;
  transition: 0.5s;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

.service-details-content .service-details-info .single-info-box .default-btn:hover {
  background-color: #ffffff;
  color: black;
}

.service-details-content .service-details-info .single-info-box:first-child {
  padding-left: 0;
}

.service-details-content .service-details-info .single-info-box:last-child {
  text-align: right;
  padding-right: 0;
  margin-top: 10px;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 25px;
}

.blog-details-desc .article-content p {
  font-size: 15px;
  margin-bottom: 20px;
}

.blog-details-desc .article-content h3 {
  font-size: 25px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.blog-details-desc .article-content h3 a {
  color: #202647;
}

.blog-details-desc .article-content .details-content h3 {
  font-size: 25px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.blog-details-desc .article-content .details-content h3 a {
  color: #202647;
}

.blog-details-desc .article-content .details-content p {
  font-size: 15px;
}

.blog-details-desc .article-content .features-list {
  padding-left: 0;
  margin-bottom: 20px;
}

.blog-details-desc .article-content .features-list li {
  list-style-type: none;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list li i {
  color: #279d00;
  margin-right: 5px;
}

.blog-details-desc .article-content .details-image img {
  margin-bottom: 20px;
}

blockquote,
.blockquote {
  background-color: #f4f4f4;
  padding: 30px !important;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  border-left: 1px solid black;
}

blockquote .icon,
.blockquote .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  z-index: -1;
}

blockquote .icon i,
.blockquote .icon i {
  font-size: 30px;
  color: black;
}

blockquote p,
.blockquote p {
  color: #202647;
  margin-bottom: 0;
  font-size: 18px !important;
  font-weight: 500;
  padding-left: 50px;
}

.comments-area {
  margin-top: 30px;
}

.comments-area .comments-title {
  margin-bottom: 30px;
  font-size: 25px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.comments-area .comments-title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: black;
}

.comments-area ol,
.comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 30px;
}

.comments-area .comment-body {
  color: #202647;
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px 30px 30px 100px;
}

.comments-area .comment-body .reply {
  margin-top: 10px;
}

.comments-area .comment-body .reply a {
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #6b6b84;
  transition: 0.5s;
  border: 1px solid #e1e1e1;
  border-radius: 30px;
}

.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: black;
  border: 1px solid black;
}

.comments-area .comment-author {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50px;
}

.comments-area .comment-author .fn {
  font-weight: 600;
}

.comments-area .comment-metadata {
  color: #6b6b84;
  margin-bottom: 10px;
  font-size: 14px;
}

.comments-area .comment-metadata a {
  display: inline-block;
  color: #6b6b84;
}

.comments-area .comment-metadata a:hover {
  color: black;
}

.comments-area .comment-respond {
  margin-top: 30px;
  background-color: #f4f4f4;
  padding: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 25px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.comments-area .comment-respond .comment-reply-title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: black;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}

.comments-area .comment-respond input[type=date],
.comments-area .comment-respond input[type=time],
.comments-area .comment-respond input[type=datetime-local],
.comments-area .comment-respond input[type=week],
.comments-area .comment-respond input[type=month],
.comments-area .comment-respond input[type=text],
.comments-area .comment-respond input[type=email],
.comments-area .comment-respond input[type=url],
.comments-area .comment-respond input[type=password],
.comments-area .comment-respond input[type=search],
.comments-area .comment-respond input[type=tel],
.comments-area .comment-respond input[type=number],
.comments-area .comment-respond textarea {
  display: inline-block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  padding: 0 0 0 15px;
  height: 50px;
  outline: 0;
  border-radius: 2px;
  color: #202647;
  border: 1px solid #ffffff;
  transition: 0.5s;
}

.comments-area .comment-respond input[type=date]:focus,
.comments-area .comment-respond input[type=time]:focus,
.comments-area .comment-respond input[type=datetime-local]:focus,
.comments-area .comment-respond input[type=week]:focus,
.comments-area .comment-respond input[type=month]:focus,
.comments-area .comment-respond input[type=text]:focus,
.comments-area .comment-respond input[type=email]:focus,
.comments-area .comment-respond input[type=url]:focus,
.comments-area .comment-respond input[type=password]:focus,
.comments-area .comment-respond input[type=search]:focus,
.comments-area .comment-respond input[type=tel]:focus,
.comments-area .comment-respond input[type=number]:focus,
.comments-area .comment-respond textarea:focus {
  border: 1px solid black;
}

.comments-area .comment-respond input[type=date]::-moz-placeholder,
.comments-area .comment-respond input[type=time]::-moz-placeholder,
.comments-area .comment-respond input[type=datetime-local]::-moz-placeholder,
.comments-area .comment-respond input[type=week]::-moz-placeholder,
.comments-area .comment-respond input[type=month]::-moz-placeholder,
.comments-area .comment-respond input[type=text]::-moz-placeholder,
.comments-area .comment-respond input[type=email]::-moz-placeholder,
.comments-area .comment-respond input[type=url]::-moz-placeholder,
.comments-area .comment-respond input[type=password]::-moz-placeholder,
.comments-area .comment-respond input[type=search]::-moz-placeholder,
.comments-area .comment-respond input[type=tel]::-moz-placeholder,
.comments-area .comment-respond input[type=number]::-moz-placeholder,
.comments-area .comment-respond textarea::-moz-placeholder {
  color: #6b6b84;
}

.comments-area .comment-respond input[type=date]::placeholder,
.comments-area .comment-respond input[type=time]::placeholder,
.comments-area .comment-respond input[type=datetime-local]::placeholder,
.comments-area .comment-respond input[type=week]::placeholder,
.comments-area .comment-respond input[type=month]::placeholder,
.comments-area .comment-respond input[type=text]::placeholder,
.comments-area .comment-respond input[type=email]::placeholder,
.comments-area .comment-respond input[type=url]::placeholder,
.comments-area .comment-respond input[type=password]::placeholder,
.comments-area .comment-respond input[type=search]::placeholder,
.comments-area .comment-respond input[type=tel]::placeholder,
.comments-area .comment-respond input[type=number]::placeholder,
.comments-area .comment-respond textarea::placeholder {
  color: #6b6b84;
}

.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 7.5px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #6b6b84;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: black;
  border: none;
  color: #ffffff;
  padding: 10px 30px 10px;
  display: inline-block;
  cursor: pointer;
  text-transform: capitalize;
  transition: 0.5s;
  border-radius: 0;
  font-weight: 500;
  font-size: 15px;
}

.comments-area .comment-respond .form-submit input:hover {
  background-color: black;
}

/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area .widget {
  margin-bottom: 30px;
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
}

.widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background: black;
}

.widget-area .widget_search {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.widget-area .widget_search form .search-field:focus {
  border-color: black;
}

.widget-area .widget_search form button {
  border: none;
  background-color: #eeeeee;
  color: black;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.widget-area .widget_search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  transform: translateY(-52%);
}

.widget-area .widget_search form button:hover,
.widget-area .widget_search form button:focus {
  background-color: black;
  color: #ffffff;
}

.widget-area .widget_categories {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  margin-bottom: 15px;
  color: #202647;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-left: 14px;
}

.widget-area .widget_categories ul li::before {
  background: #279d00;
  height: 8px;
  width: 8px;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  border-radius: 30px;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li a {
  color: #202647;
  display: inline-block;
  position: relative;
  width: 100%;
}

.widget-area .widget_categories ul li a:hover {
  color: black;
}

.widget-area .widget_categories ul li a i {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.widget-area .widget_umrah_posts_thumb {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}

.widget-area .widget_umrah_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}

.widget-area .widget_umrah_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_umrah_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 80px;
  margin-right: 15px;
  z-index: 1;
}

.widget-area .widget_umrah_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_umrah_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog/blog-1.jpg);
}

.widget-area .widget_umrah_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog/blog-2.jpg);
}

.widget-area .widget_umrah_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog/blog-3.jpg);
}

.widget-area .widget_umrah_posts_thumb .item .thumb .fullimage.bg4 {
  background-image: url(../img/blog/blog-4.jpg);
}

.widget-area .widget_umrah_posts_thumb .item .thumb .fullimage.bg5 {
  background-image: url(../img/blog/blog-5.jpg);
}

.widget-area .widget_umrah_posts_thumb .item .thumb .fullimage.bg6 {
  background-image: url(../img/blog/blog-6.jpg);
}

.widget-area .widget_umrah_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_umrah_posts_thumb .item .info span {
  display: block;
  color: #6b6b84;
  margin-top: -2px;
  margin-bottom: 5px;
  font-size: 14px;
}

.widget-area .widget_umrah_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
}

.widget-area .widget_umrah_posts_thumb .item .info .title a {
  display: inline-block;
  transition: 0.5s;
}

.widget-area .widget_umrah_posts_thumb .item .info .title a:hover {
  color: black;
}

.widget-area .widget_tag_cloud {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 18px;
}

.widget-area .tagcloud a {
  background: #f5f5f5;
  display: inline-block;
  color: #202647;
  padding: 7px 15px;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px !important;
  margin-top: 8px;
  margin-right: 5px;
}

.widget-area .tagcloud a:hover,
.widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: black;
}

.widget-area .widget_popular_products {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}

.widget-area .widget_popular_products .widget-title {
  margin-bottom: 30px;
}

.widget-area .widget_popular_products .item {
  overflow: hidden;
  margin-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
}

.widget-area .widget_popular_products .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.widget-area .widget_popular_products .item .thumb {
  float: left;
  height: 110px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 110px;
  margin-right: 15px;
  z-index: 1;
}

.widget-area .widget_popular_products .item .thumb .fullimage {
  width: 110px;
  height: 110px;
  display: inline-block;
  border-radius: 2px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_popular_products .item .thumb .fullimage.bg1 {
  background-image: url(../img/shop/shop-1.jpg);
}

.widget-area .widget_popular_products .item .thumb .fullimage.bg2 {
  background-image: url(../img/shop/shop-2.jpg);
}

.widget-area .widget_popular_products .item .thumb .fullimage.bg3 {
  background-image: url(../img/shop/shop-3.jpg);
}

.widget-area .widget_popular_products .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_popular_products .item .info span {
  display: block;
  color: #6b6b84;
  text-transform: uppercase;
  margin-top: -5px;
  margin-bottom: 6px;
  font-weight: 500;
}

.widget-area .widget_popular_products .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 500;
  font-size: 18px;
}

.widget-area .widget_popular_products .item .info .title a {
  display: inline-block;
}

.widget-area .widget_popular_products .item .info .title a:hover {
  color: black;
}

.widget-area .widget_popular_products .item .info .rating {
  margin-top: 8px;
}

.widget-area .widget_popular_products .item .info .rating i {
  color: #f6b500;
  display: inline-block;
  margin-right: -2px;
}

/*================================================
Products Area CSS
=================================================*/
.umrah-grid-sorting {
  margin-bottom: 40px;
}

.umrah-grid-sorting .result-count p .count {
  font-weight: 700;
  color: #202647;
}

.umrah-grid-sorting .ordering {
  text-align: right;
}

.umrah-grid-sorting .ordering label {
  display: inline-block;
  margin-bottom: 0;
  color: black;
  margin-right: 5px;
  font-weight: 600;
}

.umrah-grid-sorting .ordering .nice-select {
  display: inline-block;
  float: unset;
  width: 215px;
  background: #f8f8f8;
  border-color: #eeeeee;
  color: #202647;
  transition: 0.5s;
  padding: 0 0 0 12px;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  font-weight: 500;
}

.umrah-grid-sorting .ordering .nice-select .list {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  border: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.umrah-grid-sorting .ordering .nice-select .list .option {
  line-height: 38px;
  min-height: 38px;
  color: #202647;
  position: relative;
  transition: 0.5s;
  padding-left: 15px;
  padding-right: 25px;
  font-size: 15px;
  font-weight: 500;
}

.umrah-grid-sorting .ordering .nice-select .list .option:hover {
  background-color: black;
  color: #ffffff;
}

.umrah-grid-sorting .ordering .nice-select:after {
  border-color: #202647;
  height: 8px;
  width: 8px;
  margin-top: -5px;
}

.umrah-grid-sorting .ordering .nice-select:hover {
  border-color: black;
  background-color: transparent;
}

.single-products-box {
  position: relative;
  margin-bottom: 30px;
  transition: 0.5s;
}

.single-products-box .products-image {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.single-products-box .products-image a {
  position: relative;
  display: block;
}

.single-products-box .products-image a img {
  transition: 0.5s;
}

.single-products-box .products-content {
  margin-top: 20px;
  position: relative;
}

.single-products-box .products-content h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.single-products-box .products-content h3 a {
  display: inline-block;
  color: #202647;
}

.single-products-box .products-content h3 a:hover {
  color: black;
}

.single-products-box .products-content .price {
  margin-top: 15px;
  transition: 0.5s;
  font-weight: 600;
  color: black;
}

.single-products-box .products-content .price .old-price {
  text-decoration: line-through;
  color: #999999;
  font-weight: 500;
}

.single-products-box .products-content .star-rating {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #f49f0b;
}

.single-products-box .products-content .star-rating i {
  display: inline-block;
  margin-left: -2px;
}

.single-products-box .products-content .add-to-cart {
  position: absolute;
  left: 0;
  bottom: 0;
  text-transform: capitalize;
  transition: 0.5s;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  font-weight: 600;
  font-size: 15px;
}

.single-products-box .products-content .add-to-cart:hover {
  color: black;
}

.single-products-box:hover .products-content .price {
  opacity: 0;
  visibility: hidden;
}

.single-products-box:hover .products-content .add-to-cart {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.single-products-box:hover .products-image a img {
  transform: scale(1.08);
}

/*================================================
Cart Area CSS
=================================================*/
.cart-table table {
  margin-bottom: 0;
}

.cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 25px 0 25px;
  border: none;
  white-space: nowrap;
  font-weight: bold;
  font-size: 20px;
}

.cart-table table tbody tr td {
  vertical-align: middle;
  color: 0.6s;
  white-space: nowrap;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  border-color: #ebc0ff;
  border-left: none;
  border-right: none;
}

.cart-table table tbody tr td.product-thumbnail a {
  display: block;
}

.cart-table table tbody tr td.product-thumbnail a img {
  width: 100px;
  height: 100px;
  border: 1px solid #eeeeee;
}

.cart-table table tbody tr td.product-name a {
  color: #666666;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
}

.cart-table table tbody tr td.product-name a:hover {
  color: black;
}

.cart-table table tbody tr td.product-subtotal .remove {
  color: black;
  float: right;
  position: relative;
  top: -1px;
}

.cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 48px;
  transition: 0.6s;
}

.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span:hover {
  color: black;
}

.cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: black;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  outline: 0;
  box-shadow: none;
  font-weight: 600;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-moz-placeholder {
  color: black;
}

.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: black;
}

.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}

.cart-buttons {
  margin-top: 30px;
  text-align: right;
}

.cart-buttons .shopping-coupon-code {
  position: relative;
  max-width: 530px;
}

.cart-buttons .shopping-coupon-code .form-control {
  height: 50px;
  color: #202647;
  box-shadow: unset;
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  transition: 0.5s;
  border-radius: 5px;
  padding: 1px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}

.cart-buttons .shopping-coupon-code .form-control::-moz-placeholder {
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}

.cart-buttons .shopping-coupon-code .form-control::placeholder {
  transition: 0.5s;
  color: #6b6b84;
}

.cart-buttons .shopping-coupon-code .form-control:focus {
  border-color: black;
  background-color: transparent;
}

.cart-buttons .shopping-coupon-code .form-control:focus::-moz-placeholder {
  color: transparent;
}

.cart-buttons .shopping-coupon-code .form-control:focus::placeholder {
  color: transparent;
}

.cart-buttons .shopping-coupon-code button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #202647;
  color: #ffffff;
  border: none;
  padding: 0 25px;
  line-height: 48px;
  outline: 0;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.cart-buttons .shopping-coupon-code button:hover {
  background-color: black;
}

.cart-buttons .default-btn {
  padding: 12px 25px;
  border-radius: 5px;
}

.cart-totals {
  background: #ffffff;
  padding: 30px;
  max-width: 750px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin: 50px auto 0;
}

.cart-totals h3 {
  margin-bottom: 25px;
  font-size: 25px;
}

.cart-totals ul {
  padding-left: 0;
  margin: 0 0 25px;
  list-style-type: none;
}

.cart-totals ul li {
  border: 1px solid #ebc0ff;
  padding: 20px 15px;
  color: #202647;
  overflow: hidden;
  font-weight: 600;
}

.cart-totals ul li:first-child {
  border-bottom: none;
}

.cart-totals ul li:last-child {
  border-top: none;
}

.cart-totals ul li b {
  font-weight: 500;
}

.cart-totals ul li span {
  float: right;
  color: #6b6b84;
  font-weight: 500;
}

.cart-totals .default-btn {
  width: 100%;
  text-align: center;
  font-size: 15px;
}

/*================================================
Checkout CSS
=================================================*/
.user-actions {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 15px 20px;
  border-top: 3px solid black;
  position: relative;
  margin-bottom: 40px;
}

.user-actions i {
  color: black;
  margin-right: 2px;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.user-actions span {
  display: inline-block;
  font-weight: 500;
  color: black;
}

.user-actions span a {
  display: inline-block;
  color: #202647;
}

.user-actions span a:hover,
.user-actions span a:focus {
  color: black;
}

.billing-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 25px;
  font-weight: 600;
}

.billing-details .title::before {
  content: "";
  position: absolute;
  background: black;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.billing-details .form-group {
  margin-bottom: 25px;
}

.billing-details .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.billing-details .form-group label .required {
  color: red;
}

.billing-details .form-group .nice-select {
  float: unset;
  height: 60px !important;
  line-height: 58px;
  color: #6b6b84;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: normal;
}

.billing-details .form-group .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.billing-details .form-group .nice-select .list .option {
  transition: 0.5s;
  padding-left: 20px;
  padding-right: 20px;
}

.billing-details .form-group .nice-select .list .option:hover {
  background-color: black !important;
  color: #ffffff;
}

.billing-details .form-group .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.billing-details .form-group .nice-select:after {
  right: 20px;
  width: 8px;
  height: 8px;
}

.billing-details .form-group .form-control {
  background: #f3f3f3;
  border-color: #f3f3f3;
  transition: 0.5s;
  height: 60px;
}

.billing-details .form-group .form-control::-moz-placeholder {
  color: #6b6b84;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.billing-details .form-group .form-control::placeholder {
  color: #6b6b84;
  transition: 0.5s;
}

.billing-details .form-group .form-control:focus {
  background-color: transparent;
  border-color: #eeeeee;
  box-shadow: none;
}

.billing-details .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.billing-details .form-group .form-control:focus::placeholder {
  color: transparent;
}

.billing-details .form-group textarea {
  height: 120px !important;
}

.billing-details .form-check {
  margin-bottom: 20px;
}

.billing-details .form-check .form-check-label {
  color: #202647;
}

.billing-details .form-check label {
  position: relative;
  left: -3px;
  top: 1px;
  font-weight: 500;
}

.billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.order-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 25px;
  font-weight: 600;
}

.order-details .title::before {
  content: "";
  position: absolute;
  background: black;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.order-details .order-table table {
  margin-bottom: 0;
}

.order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  border-color: #ebc0ff;
  padding: 12px 20px 10px;
  font-weight: 600;
}

.order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: #6b6b84;
  border-color: #ebc0ff;
  font-size: 14.5px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 12px;
}

.order-details .order-table table tbody tr td.product-name a {
  color: #6b6b84;
  display: inline-block;
}

.order-details .order-table table tbody tr td.product-name a:hover {
  color: black;
}

.order-details .order-table table tbody tr td.order-subtotal span,
.order-details .order-table table tbody tr td.order-shipping span,
.order-details .order-table table tbody tr td.total-price span {
  color: #202647;
  font-weight: 600;
}

.order-details .order-table table tbody tr td.shipping-price,
.order-details .order-table table tbody tr td.order-subtotal-price,
.order-details .order-table table tbody tr td.product-subtotal {
  font-weight: 600;
  color: #202647;
}

.order-details .payment-box {
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  padding: 30px;
}

.order-details .payment-box .payment-method p [type=radio]:checked,
.order-details .payment-box .payment-method p [type=radio]:not(:checked) {
  display: none;
}

.order-details .payment-box .payment-method p [type=radio]:checked+label,
.order-details .payment-box .payment-method p [type=radio]:not(:checked)+label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  color: #202647;
  position: relative;
  margin-bottom: 8px;
  font-weight: 500;
}

.order-details .payment-box .payment-method p [type=radio]:checked+label::before,
.order-details .payment-box .payment-method p [type=radio]:not(:checked)+label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}

.order-details .payment-box .payment-method p [type=radio]:checked+label::after,
.order-details .payment-box .payment-method p [type=radio]:not(:checked)+label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: black;
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  transition: 0.5s;
}

.order-details .payment-box .payment-method p [type=radio]:not(:checked)+label::after {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

.order-details .payment-box .payment-method p [type=radio]:checked+label::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.order-details .payment-box .default-btn {
  margin-top: 15px;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  border-radius: 3px;
}

/*================================================
Product Details CSS
=================================================*/
.product-details-image {
  background-image: url(../img/seadencar.jpeg);
  background-position: center center;
  /* background-size: cover; */
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.product-details-desc {
  padding: 15px;
  padding-left: 0;
  padding-right: 0;
}

.product-details-desc h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.product-details-desc .price {
  margin-bottom: 15px;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
}

.product-details-desc .price .old-price {
  text-decoration: line-through;
  color: #828893;
}

.product-details-desc p {
  margin-bottom: 0;
}

.product-details-desc .product-review {
  margin-bottom: 15px;
}

.product-details-desc .product-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 14px;
}

.product-details-desc .product-review .rating i {
  color: #ffba0a;
}

.product-details-desc .product-review .rating-count {
  display: inline-block;
  color: #000000;
  border-bottom: 1px solid #000000;
  line-height: initial;
}

.product-details-desc .product-review .rating-count:hover {
  color: black;
  border-color: black;
  text-decoration: none;
}

.product-details-desc .product-add-to-cart {
  margin-top: 20px;
}

.product-details-desc .product-add-to-cart .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.product-details-desc .product-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 50px;
  height: 100%;
  line-height: 55px;
  transition: 0.5s;
}

.product-details-desc .product-add-to-cart .input-counter span.minus-btn {
  left: 0;
}

.product-details-desc .product-add-to-cart .input-counter span.plus-btn {
  right: 0;
}

.product-details-desc .product-add-to-cart .input-counter span:hover {
  color: black;
}

.product-details-desc .product-add-to-cart .input-counter input {
  height: 50px;
  color: #000000;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}

.product-details-desc .product-add-to-cart .input-counter input::-moz-placeholder {
  color: #000000;
}

.product-details-desc .product-add-to-cart .input-counter input::placeholder {
  color: #000000;
}

.product-details-desc .product-add-to-cart .default-btn {
  position: relative;
  padding: 12px 30px;
  background-color: black;
  color: #ffffff;
  border: 1px solid black;
  cursor: pointer;
}

.product-details-desc .product-add-to-cart .default-btn i {
  margin-right: 2px;
}

.product-details-desc .product-add-to-cart .default-btn:hover {
  background-color: #ffffff;
  color: black;
  transition: 0.5s;
}

.product-details-desc .buy-checkbox-btn {
  margin-top: 20px;
}

.product-details-desc .buy-checkbox-btn input {
  display: none;
}

.product-details-desc .buy-checkbox-btn .cbx {
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}

.product-details-desc .buy-checkbox-btn .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #eeeeee;
  transition: all 0.2s ease;
  transition: 0.5s;
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
  transition: 0.5s;
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000000;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  transition: 0.6s;
}

.product-details-desc .buy-checkbox-btn .cbx span:last-child {
  position: relative;
  top: 1px;
  padding-left: 4px;
  color: #666666;
}

.product-details-desc .buy-checkbox-btn .cbx:hover span:first-child {
  border-color: black;
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked+.cbx span:first-child {
  background: black;
  border-color: black;
  animation: wave 0.4s ease;
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked+.cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked+.cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

.product-details-desc .buy-checkbox-btn .item:not(:first-child) {
  margin-top: 15px;
}

.product-details-desc .buy-checkbox-btn .btn-light {
  background-color: #f2f2f2;
  border: none;
  padding: 13px 25px 10px 25px;
  transition: 0.6s;
  font-weight: 600;
  display: block;
  width: 100%;
}

.product-details-desc .buy-checkbox-btn .btn-light:hover {
  background-color: black;
  color: #ffffff;
}

.product-details-desc .products-share {
  margin-top: 30px;
}

.product-details-desc .products-share .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.product-details-desc .products-share .social li {
  display: inline-block;
}

.product-details-desc .products-share .social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 700;
  position: relative;
  top: -2px;
}

.product-details-desc .products-share .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: black;
  color: #ffffff;
  border: 1px solid black;
  text-align: center;
  font-size: 18px;
  margin-left: 2px;
}

.product-details-desc .products-share .social li a:hover,
.product-details-desc .products-share .social li a:focus {
  color: black;
  background-color: transparent;
}

.product-details-desc .products-share .social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: #ffffff;
}

.product-details-desc .products-share .social li a.facebook:hover,
.product-details-desc .products-share .social li a.facebook:focus {
  color: #3b5998;
  background-color: transparent;
}

.product-details-desc .products-share .social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: #ffffff;
}

.product-details-desc .products-share .social li a.twitter:hover,
.product-details-desc .products-share .social li a.twitter:focus {
  color: #1da1f2;
  background-color: transparent;
}

.product-details-desc .products-share .social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: #ffffff;
}

.product-details-desc .products-share .social li a.linkedin:hover,
.product-details-desc .products-share .social li a.linkedin:focus {
  color: #007bb5;
  background-color: transparent;
}

.product-details-desc .products-share .social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: #ffffff;
}

.product-details-desc .products-share .social li a.instagram:hover,
.product-details-desc .products-share .social li a.instagram:focus {
  color: #c13584;
  background-color: transparent;
}

.products-details-tabs {
  margin-top: 50px;
}

.products-details-tabs .nav {
  padding-left: 0;
  margin-bottom: 30px;
  list-style-type: none;
  display: block;
}

.products-details-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 30px;
}

.products-details-tabs .nav .nav-item:last-child {
  margin-right: 0;
}

.products-details-tabs .nav .nav-item .nav-link {
  border: none;
  border-bottom: 1px solid #eeeeee;
  padding: 0;
  background-color: transparent;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #202647;
}

.products-details-tabs .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background-color: black;
  transition: 0.5s;
  bottom: -2px;
}

.products-details-tabs .nav .nav-item .nav-link:hover,
.products-details-tabs .nav .nav-item .nav-link.active {
  color: #202647;
}

.products-details-tabs .nav .nav-item .nav-link:hover::before,
.products-details-tabs .nav .nav-item .nav-link.active::before {
  width: 100%;
}

.products-details-tabs .tab-content .tab-pane h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.products-details-tabs .tab-content .tab-pane p {
  font-size: 15px;
}

.products-details-tabs .tab-content .tab-pane ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}

.products-details-tabs .tab-content .tab-pane ul li {
  margin-bottom: 12px;
  position: relative;
  color: #6b6b84;
  padding-left: 15px;
  font-weight: 500;
  font-size: 15px;
}

.products-details-tabs .tab-content .tab-pane ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}

.products-details-tabs .tab-content .tab-pane ul li:last-child {
  margin-bottom: 0;
}

.products-details-tabs .tab-content .tab-pane .products-reviews h3 {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 15px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .row {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .side {
  float: left;
  width: 9%;
  margin-top: 10px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .side div {
  font-weight: bold;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .middle {
  margin-top: 14px;
  float: left;
  width: 82%;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .right {
  text-align: right;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-5 {
  width: 70%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-4 {
  width: 20%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-3 {
  width: 5%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-2 {
  width: 3%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-1 {
  width: 2%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form {
  margin-top: 45px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title {
  position: relative;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating {
  display: inline-block;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating .bx.bxs-star {
  color: #ffba0a;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating i {
  color: #eeeeee;
  font-size: 16px;
  margin-right: -1px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .default-btn {
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
  color: #ffffff !important;
  padding: 10px 25px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .default-btn span {
  background-color: #202647;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments {
  margin-top: 35px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  border-top: 1px dashed #eeeeee;
  padding-top: 30px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item .rating .bx.bxs-star {
  color: #ffba0a;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item .rating i {
  font-size: 16px;
  color: #eeeeee;
  margin-right: -1px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item h3 {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item span strong {
  font-weight: 500;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form {
  margin-top: 30px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-group {
  margin-bottom: 15px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control {
  height: 55px;
  color: #202647;
  box-shadow: unset !important;
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
  transition: 0.5s;
  border-radius: 3px;
  padding: 1px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control::-moz-placeholder {
  color: #7e7e7e;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control::placeholder {
  color: #7e7e7e;
  transition: 0.5s;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus {
  border-color: black;
  background-color: transparent;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus::-moz-placeholder {
  color: transparent;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus::placeholder {
  color: transparent;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .default-btn {
  color: #ffffff !important;
  cursor: pointer;
  border: none;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .default-btn span {
  background-color: #202647;
}

/*================================================
Doctor Details CSS
=================================================*/
.doctor-details-image img {
  border: 1px solid #eeeeee;
}

.doctor-details-image .details-content {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 25px;
}

.doctor-details-image .details-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.doctor-details-image .details-content span {
  color: black;
  font-size: 16px;
  font-weight: 500;
}

.doctor-details-image .details-content .share-link {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 15px;
}

.doctor-details-image .details-content .share-link li {
  list-style-type: none;
}

.doctor-details-image .details-content .share-link li a {
  margin: 0 5px;
}

.doctor-details-image .details-content .share-link li a i {
  display: inline-block;
  color: black;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #def5ee;
  text-align: center;
  font-size: 20px;
  transition: 0.5s;
}

.doctor-details-image .details-content .share-link li a i:hover {
  background-color: black;
  color: #ffffff;
  transform: translateY(-2px);
}

.doctor-details-desc h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.doctor-details-desc .signature-image {
  margin-top: 20px;
}

.doctor-details-tabs {
  margin-top: 50px;
  display: flex;
}

.doctor-details-tabs .nav {
  padding-left: 0;
  margin-bottom: 20px;
  list-style-type: none;
  display: block;
}

.doctor-details-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 20px;
}

.doctor-details-tabs .nav .nav-item:last-child {
  margin-right: 0;
}

.doctor-details-tabs .nav .nav-item .nav-link {
  border: none;
  padding: 0;
  background-color: #eeeeee;
  position: relative;
  z-index: 1;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 15px;
}

.doctor-details-tabs .nav.style-2 .nav-item .nav-link {
  width: 190px;
  padding: 15px 14px;
}


.doctor-details-tabs .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #2A3942;
  transition: 0.5s;
  bottom: 0;
  z-index: -1;
}

.doctor-details-tabs .nav .nav-item .nav-link:hover,
.doctor-details-tabs .nav .nav-item .nav-link.active {
  color: #ffffff;
}

.doctor-details-tabs .nav .nav-item .nav-link:hover::before,
.doctor-details-tabs .nav .nav-item .nav-link.active::before {
  width: 100%;
}

.doctor-details-tabs .nav-tabs {
  border-bottom: 1px solid #eeeeee;
}

.doctor-details-tabs .tab-content .tab-pane .designation-title {
  margin-bottom: 20px;
}

.doctor-details-tabs .tab-content .tab-pane .designation-title h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.doctor-details-tabs .tab-content .tab-pane .designation-title p {
  margin-bottom: 5px;
}

.doctor-details-tabs .tab-content .tab-pane .designation-title span {
  color: black;
}

.doctor-details-tabs .tab-content .tab-pane h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.doctor-details-tabs .tab-content .tab-pane .specialties-list,
.doctor-details-tabs .tab-content .tab-pane .list-caret-right {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 20px;
}

.doctor-details-tabs .tab-content .tab-pane .specialties-list li,
.doctor-details-tabs .tab-content .tab-pane .list-caret-right li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  font-weight: 400;
  font-size: 15px;
}

.doctor-details-tabs .tab-content .tab-pane .specialties-list li::before,
.doctor-details-tabs .tab-content .tab-pane .list-caret-right li::before {
  content: "\f11c";
  position: absolute;
  left: 0;
  top: 3px;
  color: #279d00;
  font-size: 13px;
  margin-right: 10px;
  border-radius: 50%;
  font-family: "Flaticon";
  /* background-color: #6b6b84; */
}

/* .doctor-details-tabs .tab-content .tab-pane .list-caret-right li::before {
  content: "\f0da";
} */

.doctor-details-tabs .tab-content .tab-pane .specialties-list li:last-child,
.doctor-details-tabs .tab-content .tab-pane .list-caret-right li:last-child {
  margin-bottom: 0;
}

.doctor-details-tabs .tab-content .tab-pane .educational-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 20px;
}

.doctor-details-tabs .tab-content .tab-pane .educational-list li {
  margin-bottom: 12px;
  color: #202647;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-left: 15px;
}

.doctor-details-tabs .tab-content .tab-pane .educational-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}

.doctor-details-tabs .tab-content .tab-pane .educational-list li:last-child {
  margin-bottom: 0;
}

.doctor-details-tabs .tab-content .tab-pane .educational-list li span {
  font-size: 16px;
  color: #6b6b84;
  font-weight: 400;
}

.doctor-details-tabs .tab-content .tab-pane .awards-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.doctor-details-tabs .tab-content .tab-pane .awards-list li {
  margin-bottom: 12px;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  padding-left: 15px;
}

.doctor-details-tabs .tab-content .tab-pane .awards-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}

.doctor-details-tabs .tab-content .tab-pane .awards-list li:last-child {
  margin-bottom: 0;
}

.doctor-details-tabs .tab-content .tab-pane .awards-list li span {
  font-size: 16px;
  color: #6b6b84;
  font-weight: 400;
}

.doctor-details-tabs .tab-content .tab-pane .skills-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.doctor-details-tabs .tab-content .tab-pane .skills-list li {
  margin-bottom: 12px;
  position: relative;
  color: #6b6b84;
  padding-left: 15px;
  font-weight: 400;
  font-size: 15px;
}

.doctor-details-tabs .tab-content .tab-pane .skills-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6b6b84;
}

.doctor-details-tabs .tab-content .tab-pane .skills-list li:last-child {
  margin-bottom: 0;
}

.doctor-details-tabs .tab-content .tab-pane #map iframe {
  border: none;
  width: 100%;
  height: 550px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews h3 {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 15px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .row {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .side {
  float: left;
  width: 9%;
  margin-top: 10px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .side div {
  font-weight: bold;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .middle {
  margin-top: 14px;
  float: left;
  width: 82%;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .right {
  text-align: right;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-5 {
  width: 70%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-4 {
  width: 20%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
  border-radius: 5px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-3 {
  width: 5%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-2 {
  width: 3%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-reviews .bar-1 {
  width: 2%;
  height: 18px;
  background-color: black;
  border-radius: 5px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title {
  position: relative;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .rating {
  display: inline-block;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .rating .bx.bxs-star {
  color: #ffba0a;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .rating i {
  color: #eeeeee;
  font-size: 16px;
  margin-right: -1px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .default-btn {
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
  color: #ffffff !important;
  padding: 10px 25px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-title .default-btn span {
  background-color: #202647;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments {
  margin-top: 35px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item .rating .bx.bxs-star {
  color: #ffba0a;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item .rating i {
  font-size: 16px;
  color: #eeeeee;
  margin-right: -1px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item h3 {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item span strong {
  font-weight: 500;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form {
  margin-top: 30px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-group {
  margin-bottom: 15px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control {
  height: 55px;
  color: #202647;
  box-shadow: unset !important;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  transition: 0.5s;
  border-radius: 3px;
  padding: 1px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control::-moz-placeholder {
  color: #7e7e7e;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control::placeholder {
  color: #7e7e7e;
  transition: 0.5s;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:focus {
  border-color: black;
  background-color: transparent;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:focus::-moz-placeholder {
  color: transparent;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .form-control:focus::placeholder {
  color: transparent;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .default-btn {
  color: #ffffff !important;
  cursor: pointer;
  border: none;
}

.doctor-details-tabs .tab-content .tab-pane .doctor-review-form .review-form .default-btn span {
  background-color: #202647;
}

/*================================================
Submit Review Area CSS
=================================================*/
.submit-review-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  max-width: 650px;
  margin: auto;
}

.submit-review-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.submit-review-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid black;
  height: 100%;
  width: 100px;
}

.submit-review-form form .form-group {
  margin-bottom: 25px;
}

.submit-review-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6b6b84;
  font-weight: 500;
  font-size: 16px;
}

.submit-review-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: unset;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.submit-review-form form .form-group .form-control:focus {
  border: 1px solid black;
  background-color: transparent;
}

.submit-review-form form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.submit-review-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: 0.5s;
}

.submit-review-form form .form-group textarea.form-control {
  height: 120px;
  padding: 15px;
}

.submit-review-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: black;
  color: #ffffff;
  transition: 0.5s;
}

.submit-review-form form button:hover {
  background-color: black;
}

.submit-review-form form .form-check {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}

.submit-review-form form .form-check a {
  color: black;
}

/*================================================
Book Appointment Area CSS
=================================================*/
.book-appointment-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}

.book-appointment-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.book-appointment-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid black;
  height: 100%;
  width: 100px;
}

.book-appointment-form form .form-group {
  margin-bottom: 25px;
}

.book-appointment-form form .form-group .form-control {
  height: 47px;
  padding: 0 15px 0 15px;
  line-height: initial;
  color: #202647;
  background-color: transparent;
  border-color: #d3d3d3;
  border-radius: 0;
  box-shadow: unset !important;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  border-radius: 10px;
}

.book-appointment-form form .form-group .form-control:focus {
  border-color: black;
  background-color: transparent;
  outline: 0;
}

.book-appointment-form form .form-group textarea.form-control {
  height: 120px;
  padding-top: 15px;
}

.book-appointment-form form label {
  display: block;
  margin-bottom: 5px;
  color: #2a2a2a;
  font-weight: 400;
  font-size: 16px;
}

.book-appointment-form form .nice-select {
  height: 47px;
  width: 100%;
  line-height: 47px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: transparent;
  border-color: #d3d3d3;
  color: #6b6b84;
  border-radius: 0;
  transition: 0.5s;
  margin-bottom: 25px;
  border-radius: 10px;
}

.book-appointment-form form .nice-select:focus {
  border-color: black;
  background-color: transparent;
}

.book-appointment-form form .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.book-appointment-form form .nice-select .list .option {
  transition: 0.5s;
  color: #202647;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}

.book-appointment-form form .nice-select .list .option:hover {
  background-color: black !important;
  color: #ffffff;
}

.book-appointment-form form .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.book-appointment-form form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: black;
  right: 15px;
}

.book-appointment-form form .banner-btn {
  text-align: center;
}

.book-appointment-form form .banner-btn .default-btn {
  border: none;
  width: 100%;
  font-size: 15px;
  padding: 15px;
  cursor: pointer;
}

.book-appointment-form form .form-check {
  margin-bottom: 20px;
  font-weight: 400;
  color: #6b6b84;
  font-size: 15px;
}

.book-appointment-form form .form-check a {
  color: black;
}

.booking-summary {
  background: #ffffff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}

.booking-summary h3 {
  margin-bottom: 30px;
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}

.booking-summary h3::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background: black;
}

.booking-summary ul {
  padding-left: 0;
  margin: 0 0 20px;
  list-style-type: none;
}

.booking-summary ul li {
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0 15px 0;
  color: #6b6b84;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
}

.booking-summary ul li:first-child {
  padding-top: 0;
}

.booking-summary ul li:last-child {
  font-size: 18px;
  border-bottom: none;
  padding-bottom: 0;
  color: #202647;
}

.booking-summary ul li:last-child span {
  color: #202647;
  font-weight: 600;
}

.booking-summary ul li span {
  float: right;
  color: #6b6b84;
}

.booking-summary .default-btn {
  color: #ffffff;
  width: 100%;
  border-radius: 0;
  text-align: center;
  border-radius: 5px;
}

/*================================================
Doctor Dashboard Area CSS
=================================================*/
.doctor-dashboard-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}

.dashboard-profile {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 20px 15px 20px;
}

.dashboard-profile.my-profile {
  top: 90px;
  z-index: 99;
}

.dashboard-profile .profile-box {
  text-align: center;
}

.dashboard-profile .profile-box .profile-designation {
  padding: 25px;
}

.dashboard-profile .profile-box .profile-designation h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.dashboard-profile .profile-box .profile-designation p {
  margin-bottom: 8px;
}

.dashboard-profile .profile-box .profile-designation span {
  color: black;
}

.dashboard-profile .dashboard-profile-info .info-list {
  padding-left: 0;
  margin-bottom: 0;
}

.dashboard-profile .dashboard-profile-info .info-list li {
  list-style-type: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  transition: 0.5s;
}

.dashboard-profile .dashboard-profile-info .info-list li:last-child {
  margin-bottom: 0;
}

.dashboard-profile .dashboard-profile-info .info-list li a {
  color: #6b6b84;
  display: inline-block;
  border: 1px solid #2a2a2a;
  padding: 15px 15px 15px 50px;
  transition: 0.5s;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.dashboard-profile .dashboard-profile-info .info-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #2A3942;
  transition: 0.5s;
  top: 0;
  z-index: -1;
}

.dashboard-profile .dashboard-profile-info .info-list li a i {
  font-size: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  transition: 0.5s;
  color: #6b6b84;
}

.dashboard-profile .dashboard-profile-info .info-list li a:hover,
.dashboard-profile .dashboard-profile-info .info-list li a.active {
  color: #ffffff;
  border: 1px solid #ffffff;
}

.dashboard-profile .dashboard-profile-info .info-list li a:hover::before,
.dashboard-profile .dashboard-profile-info .info-list li a.active::before {
  height: 100%;
}

.dashboard-profile .dashboard-profile-info .info-list li a:hover i,
.dashboard-profile .dashboard-profile-info .info-list li a.active i {
  color: #ffffff;
}

.single-stats-box {
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(to bottom, #a794fc, #9480ec, #816cdd, #6e58cd, #5b45be);
  padding: 30px;
  border-radius: 10px;
}

.single-stats-box .icon {
  margin-bottom: 20px;
}

.single-stats-box .icon i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  border: 1px solid #ffffff;
  font-size: 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: #ffffff;
}

.single-stats-box h3 {
  font-size: 45px;
  color: #ffffff;
  margin-bottom: 5px;
}

.single-stats-box p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 500;
}

.single-stats-box:hover .icon i {
  background-color: #ffffff;
  color: black;
}

.single-stats-box.bg-2 {
  background: linear-gradient(to bottom, #6dc3f8, #58b1eb, #429fde, #2a8dd1, #057bc4);
}

.single-stats-box.bg-3 {
  background: linear-gradient(to bottom, #59dfa0, #4ace8f, #39be7d, #27ae6d, #0f9e5c);
}

.single-stats-box.bg-4 {
  background: linear-gradient(to bottom, #f6688a, #ef6082, #e8587a, #e05072, #d9486a);
}

.doctors-appointment {
  overflow-x: auto;
}

.doctors-appointment .title-box {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 30px 45px;
  margin-bottom: 30px;
}

.doctors-appointment .title-box h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.doctors-appointment .title-box .btn-box {
  margin-top: 30px;
}

.doctors-appointment .title-box .btn-box .btn-one {
  display: inline-block;
  padding: 12px 35px;
  background-color: black;
  border: 1px solid black;
  color: #ffffff;
  border-radius: 30px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
  margin-right: 15px;
}

.doctors-appointment .title-box .btn-box .btn-one:hover {
  background-color: black;
  border: 1px solid black;
  color: #ffffff;
}

.doctors-appointment .title-box .btn-box .btn-two {
  display: inline-block;
  padding: 12px 35px;
  background-color: transparent;
  border: 1px solid black;
  color: black;
  border-radius: 30px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}

.doctors-appointment .title-box .btn-box .btn-two:hover {
  background-color: black;
  color: #ffffff;
}

.doctors-appointment .title-box .search-form {
  position: relative;
}

.doctors-appointment .title-box .search-form label {
  display: block;
  margin-bottom: 0;
}

.doctors-appointment .title-box .search-form .screen-reader-text {
  display: none;
}

.doctors-appointment .title-box .search-form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.doctors-appointment .title-box .search-form .search-field:focus {
  border-color: black;
}

.doctors-appointment .title-box .search-form button {
  border: none;
  background-color: #eeeeee;
  color: black;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.doctors-appointment .title-box .search-form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  transform: translateY(-52%);
}

.doctors-appointment .title-box .search-form button:hover,
.doctors-appointment .title-box .search-form button:focus {
  background-color: black;
  color: #ffffff;
}

.doctors-appointment .doctors-table {
  width: 100%;
  min-width: 1070px;
  border-collapse: collapse;
}

.doctors-appointment .doctors-table .table-header th {
  font-size: 18px;
  color: #202647;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid #e1e1e1;
  text-align: center;
  background-color: #fbeed6;
}

.doctors-appointment .doctors-table .table-header th:first-child {
  padding-left: 20px;
}

.doctors-appointment .doctors-table .table-header th:nth-child(2) {
  text-align: center;
}

.doctors-appointment .doctors-table .table-header th:nth-child(3) {
  text-align: center;
}

.doctors-appointment .doctors-table .table-header th:nth-child(4) {
  text-align: center;
}

.doctors-appointment .doctors-table .table-header th:nth-child(5) {
  text-align: center;
}

.doctors-appointment .doctors-table tr {
  border-top: none;
  border: 1px solid #e5eded;
}

.doctors-appointment .doctors-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.doctors-appointment .doctors-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.doctors-appointment .doctors-table tr td {
  padding: 10px 20px;
  border: 1px solid #e1e1e1;
  text-align: center;
}

.doctors-appointment .doctors-table tr td:first-child {
  padding-left: 20px;
}

.doctors-appointment .doctors-table tr td:last-child {
  padding-right: 20px;
}

.doctors-appointment .doctors-table tr td:nth-child(2) {
  text-align: center;
}

.doctors-appointment .doctors-table tr td:nth-child(3) {
  text-align: center;
}

.doctors-appointment .doctors-table tr td:nth-child(4) {
  text-align: center;
}

.doctors-appointment .doctors-table tr td:nth-child(5) {
  text-align: center;
}

.doctors-appointment .doctors-table tr td .name-box {
  position: relative;
  padding-left: 75px;
}

.doctors-appointment .doctors-table tr td .name-box .image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.doctors-appointment .doctors-table tr td .name-box .image img {
  width: 100%;
  border-radius: 50%;
}

.doctors-appointment .doctors-table tr td .name-box h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.doctors-appointment .doctors-table tr td .name-box .designation {
  font-size: 15px;
  color: #6b6b84;
  font-weight: 400;
}

.doctors-appointment .doctors-table tr td p {
  font-size: 15px;
  font-weight: 400;
  color: #6b6b84;
  margin-bottom: 0;
}

.doctors-appointment .doctors-table tr td span {
  font-size: 15px;
  color: black;
  font-weight: 400;
}

.doctors-appointment .doctors-table tr td .view {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #eeeeee;
  color: #202647;
  border-radius: 25px;
  margin-right: 5px;
  transition: 0.5s;
}

.doctors-appointment .doctors-table tr td .view:hover {
  background-color: black;
  color: #ffffff;
}

.doctors-appointment .doctors-table tr td .accept {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: black;
  color: #ffffff;
  border-radius: 25px;
  margin-right: 5px;
  transition: 0.5s;
}

.doctors-appointment .doctors-table tr td .accept:hover {
  background-color: black;
  color: #ffffff;
}

.doctors-appointment .doctors-table tr td .cancel {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: black;
  color: #ffffff;
  border-radius: 25px;
  transition: 0.5s;
}

.doctors-appointment .doctors-table tr td .cancel:hover {
  background-color: black;
  color: #ffffff;
}

.doctors-appointment .doctors-table tr td.right {
  text-align: right;
}

.doctors-appointment .patients-table {
  width: 100%;
  min-width: 1070px;
}

.doctors-appointment .patients-table .table-header th {
  font-size: 16px;
  color: #202647;
  font-weight: 600;
  padding: 20px 10px 20px 10px;
}

.doctors-appointment .patients-table .table-header th:first-child {
  padding-left: 20px;
}

.doctors-appointment .patients-table .table-header th:nth-child(2) {
  text-align: center;
}

.doctors-appointment .patients-table .table-header th:nth-child(3) {
  text-align: center;
}

.doctors-appointment .patients-table .table-header th:nth-child(4) {
  text-align: center;
}

.doctors-appointment .patients-table .table-header th:nth-child(5) {
  text-align: center;
}

.doctors-appointment .patients-table .table-header th:nth-child(6) {
  text-align: center;
}

.doctors-appointment .patients-table .table-header th:nth-child(7) {
  text-align: center;
}

.doctors-appointment .patients-table .table-header th:nth-child(8) {
  text-align: center;
}

.doctors-appointment .patients-table tr {
  border-top: none;
  border: 1px solid #e5eded;
}

.doctors-appointment .patients-table tr td {
  padding: 35px 10px 35px 10px;
}

.doctors-appointment .patients-table tr td:first-child {
  padding-left: 20px;
}

.doctors-appointment .patients-table tr td:last-child {
  padding-right: 20px;
}

.doctors-appointment .patients-table tr td:nth-child(2) {
  text-align: center;
}

.doctors-appointment .patients-table tr td:nth-child(3) {
  text-align: center;
}

.doctors-appointment .patients-table tr td:nth-child(4) {
  text-align: center;
}

.doctors-appointment .patients-table tr td:nth-child(5) {
  text-align: center;
}

.doctors-appointment .patients-table tr td:nth-child(6) {
  text-align: center;
}

.doctors-appointment .patients-table tr td:nth-child(7) {
  text-align: center;
}

.doctors-appointment .patients-table tr td:nth-child(8) {
  text-align: center;
}

.doctors-appointment .patients-table tr td .name-box {
  position: relative;
  padding-left: 60px;
}

.doctors-appointment .patients-table tr td .name-box .image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.doctors-appointment .patients-table tr td .name-box .image img {
  width: 100%;
  border-radius: 50%;
}

.doctors-appointment .patients-table tr td .name-box h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.doctors-appointment .patients-table tr td .name-box .designation {
  font-size: 15px;
  color: #6b6b84;
  font-weight: 400;
}

.doctors-appointment .patients-table tr td p {
  font-size: 15px;
  font-weight: 400;
  color: #6b6b84;
  margin-bottom: 0;
}

.doctors-appointment .patients-table tr td span {
  font-size: 15px;
  color: black;
  font-weight: 400;
}

.doctors-appointment .patients-table tr td .cancel {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: black;
  color: #ffffff;
  border-radius: 25px;
  transition: 0.5s;
}

.doctors-appointment .patients-table tr td .cancel:hover {
  background-color: black;
  color: #ffffff;
}

.doctors-appointment .patients-table tr td .edit {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #eeeeee;
  color: #202647;
  border-radius: 25px;
  margin-right: 5px;
  transition: 0.5s;
}

.doctors-appointment .patients-table tr td .edit:hover {
  background-color: black;
  color: #ffffff;
}

.doctors-appointment .patients-table tr td.right {
  text-align: right;
}

.doctors-appointment .invoices-table {
  width: 100%;
  min-width: 1070px;
}

.doctors-appointment .invoices-table .table-header th {
  font-size: 18px;
  color: #202647;
  font-weight: 600;
  padding: 30px;
  text-align: center;
}

.doctors-appointment .invoices-table .table-header th:last-child {
  text-align: right;
}

.doctors-appointment .invoices-table tr {
  border-top: none;
  border: 1px solid #e5eded;
  text-align: center;
}

.doctors-appointment .invoices-table tr td {
  padding: 30px;
}

.doctors-appointment .invoices-table tr td:last-child {
  text-align: right;
}

.doctors-appointment .invoices-table tr td h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.doctors-appointment .invoices-table tr td p {
  font-size: 15px;
  font-weight: 400;
  color: #6b6b84;
  margin-bottom: 0;
}

.doctors-appointment .invoices-table tr td span {
  font-size: 15px;
  color: black;
  font-weight: 400;
}

.doctors-appointment .invoices-table tr td .view {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: black;
  color: #ffffff;
  border-radius: 25px;
  transition: 0.5s;
  margin-right: 5px;
}

.doctors-appointment .invoices-table tr td .view:hover {
  background-color: #eeeeee;
  color: #202647;
}

.doctors-appointment .invoices-table tr td .print {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 25px;
  background: #eeeeee;
  color: #202647;
  border-radius: 25px;
  transition: 0.5s;
}

.doctors-appointment .invoices-table tr td .print:hover {
  background-color: black;
  color: #ffffff;
}

/*================================================
Appointments Area CSS
=================================================*/
.appointments-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}

.appointments-list .appointments-box {
  padding: 35px 40px 35px 40px;
  background-color: #f3f3f3;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
}

.appointments-list .appointments-box:last-child {
  margin-bottom: 0;
}

.appointments-list .appointments-box .image-box {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: 170px;
}

.appointments-list .appointments-box .image-box img {
  border-radius: 5px;
}

.appointments-list .appointments-box .appointments-information {
  padding-left: 190px;
  position: relative;
}

.appointments-list .appointments-box .appointments-information h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.appointments-list .appointments-box .appointments-information .info-list {
  padding-left: 0;
  margin-bottom: 0;
}

.appointments-list .appointments-box .appointments-information .info-list li {
  font-size: 14px;
  color: #6b6b84;
  font-weight: 400;
  list-style-type: none;
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
}

.appointments-list .appointments-box .appointments-information .info-list li:last-child {
  margin-bottom: 0;
}

.appointments-list .appointments-box .appointments-information .info-list li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: black;
}

.appointments-list .appointments-box .appointments-information .info-list li a {
  color: #6b6b84;
}

.appointments-list .appointments-box .appointments-information .confirm-list {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.appointments-list .appointments-box .appointments-information .confirm-list li {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 30px;
  background: #edeaea;
  border-radius: 25px;
  color: black;
  transition: 0.5s;
  margin-right: 10px;
}

.appointments-list .appointments-box .appointments-information .confirm-list li:last-child {
  margin-right: 0;
}

.appointments-list .appointments-box .appointments-information .confirm-list li:hover {
  background-color: black;
  color: #ffffff;
}

/*================================================
Reviews Area CSS
=================================================*/
.reviews-area .container-fluid {
  max-width: 1920px;
  margin: auto;
}

.reviews-list .reviews-box {
  padding: 35px 40px 35px 40px;
  background-color: transparent;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
}

.reviews-list .reviews-box:last-child {
  margin-bottom: 0;
}

.reviews-list .reviews-box .image-box {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: 170px;
}

.reviews-list .reviews-box .image-box img {
  border-radius: 5px;
}

.reviews-list .reviews-box .reviews-content {
  padding-left: 190px;
  position: relative;
}

.reviews-list .reviews-box .reviews-content h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.reviews-list .reviews-box .reviews-content span {
  font-size: 15px;
  color: #6b6b84;
  margin-bottom: 10px;
  display: inline-block;
}

.reviews-list .reviews-box .reviews-content p {
  font-size: 15px;
  margin-bottom: 10px;
}

.reviews-list .reviews-box .reviews-content .reply-btn {
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #6b6b84;
  transition: 0.5s;
  border: 1px solid #e1e1e1;
  border-radius: 30px;
}

.reviews-list .reviews-box .reviews-content .reply-btn:hover {
  background-color: black;
  border: 1px solid black;
  color: #ffffff;
}

.reviews-list .reviews-box .reviews-content .rating {
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.reviews-list .reviews-box .reviews-content .rating i {
  font-size: 16px;
  color: #ffab01;
}

/*================================================
Schedule Time Area CSS
=================================================*/
.schedule-time .title-box {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 25px 30px;
}

.schedule-time .title-box h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.schedule-time .title-box .btn-box {
  margin-top: 30px;
}

.schedule-time .title-box .btn-box .btn-one {
  display: inline-block;
  padding: 12px 35px;
  background-color: black;
  border: 1px solid black;
  color: #ffffff;
  border-radius: 30px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
  margin-right: 15px;
}

.schedule-time .title-box .btn-box .btn-one:hover {
  background-color: black;
  border: 1px solid black;
  color: #ffffff;
}

.schedule-time .title-box .btn-box .btn-two {
  display: inline-block;
  padding: 12px 35px;
  background-color: transparent;
  border: 1px solid black;
  color: black;
  border-radius: 30px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}

.schedule-time .title-box .btn-box .btn-two:hover {
  background-color: black;
  color: #ffffff;
}

.schedule-time .title-box .search-form {
  position: relative;
}

.schedule-time .title-box .search-form label {
  display: block;
  margin-bottom: 0;
}

.schedule-time .title-box .search-form .screen-reader-text {
  display: none;
}

.schedule-time .title-box .search-form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.schedule-time .title-box .search-form .search-field:focus {
  border-color: black;
}

.schedule-time .title-box .search-form button {
  border: none;
  background-color: #eeeeee;
  color: black;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.schedule-time .title-box .search-form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  transform: translateY(-52%);
}

.schedule-time .title-box .search-form button:hover,
.schedule-time .title-box .search-form button:focus {
  background-color: black;
  color: #ffffff;
}

.schedule-time .calendar-content {
  text-align: center;
}

.schedule-time .calendar-content .schedule-list {
  padding: 20px;
  margin-bottom: 0;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

.schedule-time .calendar-content .schedule-list li {
  list-style-type: none;
  display: inline-block;
}

.schedule-time .calendar-content .schedule-list li a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #eeeeee;
  color: #202647;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
  border-radius: 30px;
}

.schedule-time .calendar-content .schedule-list li a:hover {
  background-color: black;
  color: #ffffff;
}

.schedule-time .calendar-content .schedule-list li .color {
  background-color: black;
  color: #ffffff;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: #000711;
}

.footer-area.bg-color {
  background-color: #2A3942;
  border-top: 1px solid #eeeeee;
}

.footer-area.bg-color .single-footer-widget p {
  color: #202647;
}

.footer-area.bg-color .single-footer-widget .footer-social li i {
  background-color: white;
}

.footer-area.bg-color .single-footer-widget .quick-links li {
  color: #202647;
}

.footer-area.bg-color .single-footer-widget .quick-links li a {
  color: white;
}

.footer-area.bg-color .single-footer-widget .opening-hours li {
  color: white;
}

.footer-area.bg-color .single-footer-widget .footer-contact-info li {
  color: white;
}

.footer-area.bg-color .single-footer-widget .footer-contact-info li span {
  color: white;
}

.footer-area.bg-color .single-footer-widget .footer-contact-info li a {
  color: white;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget a img {
  margin-bottom: 25px;
  max-width: 150px;
}

.single-footer-widget p {
  color: #ffffff;
  margin-bottom: 0;
}

.single-footer-widget .footer-social {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.single-footer-widget li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.single-footer-widget li:last-child {
  margin-right: 0;
}

.single-footer-widget .footer-social li i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  color: black;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s;
}

.single-footer-widget .footer-social li i:hover {
  background-color: #ffffff;
  color: black;
  transform: translateY(-2px);
}

.single-footer-widget h2 {
  font-size: 25px;
  color: black;
  font-weight: 500;
  margin-bottom: 25px;
}

.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
}

.single-footer-widget .quick-links li {
  color: #ffffff;
  font-size: 15px;
  list-style-type: none;
  margin-bottom: 15px;
}

.single-footer-widget .quick-links li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  position: relative;
}

.single-footer-widget .quick-links li a:hover {
  color: black;
}

.single-footer-widget .quick-links li a:hover::before {
  width: 100%;
}

.single-footer-widget .quick-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: 0.5s;
  background-color: white;
}

.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .opening-hours {
  padding-left: 0;
  margin-bottom: 0;
}

.single-footer-widget .opening-hours li {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e1e1e1;
}

.single-footer-widget .opening-hours li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .opening-hours li span {
  float: right;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  margin-bottom: 10px;
  color: #ffffff;
  position: relative;
  padding-left: 35px;
  font-size: 14px;
}

.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 20px;
  color: white;
}

.single-footer-widget .footer-contact-info li span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 15px;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  font-size: 14px;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: black;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

/*================================================
Copy Right Area CSS
=================================================*/
.copyright-area {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ffffff;
}

.copyright-area.bg-color {
  background-color: #000000;
}

.copyright-area.bg-color .copyright-area-content p {
  color: #ffffff;
}

.copyright-area.bg-color .copyright-area-content p a:hover {
  color: #ffffff;
}

.copyright-area .copyright-area-content {
  text-align: center;
}

.copyright-area .copyright-area-content p {
  color: #202647;
}

.copyright-area .copyright-area-content p a {
  display: inline-block;
  font-weight: 600;
  color: black;
}

.copyright-area .copyright-area-content p a:hover {
  color: #202647;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #ffffff;
  background-color: #2a2a2a;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.9s;
  overflow: hidden;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  margin: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  background-color: black;
  color: #ffffff;
  transition: 0.5s;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/*=================================
Buy Now Btn
====================================*/
.buy-now-btn {
  right: 30px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff !important;
  background-color: #82b440;
  padding: 8px 20px 8px;
  font-size: 14px;
  font-weight: 500;
  animation-name: tada;
  animation-duration: 5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

.buy-now-btn:hover {
  background-color: black;
  color: #ffffff !important;
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.popular-package-section {
  padding: 60px 0px;
}

.popular-package-section .section-title {
  text-align: left;
}

.popular-package-section .popular-package-item {
  background-color: white;
  border-radius: 10px;
  transition: 0.4s all ease;
  margin-bottom: 30px;
}

.popular-package-section .popular-package-item img {
  border-radius: 10px;
  margin-bottom: 10px;
  transition: 0.4s all ease;
}

.popular-package-section .popular-package-item .information-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0px;
}

.popular-package-section .popular-package-item .information-list li {
  margin-right: 15px;
}

.popular-package-section .popular-package-item .information-list li i {
  margin-right: 5px;
  color: black;
}

.highlighted-deals {
  margin-top: 0px;
}

.hightlight-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;

}

.hightlight-item .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #00000069;
  padding: 25px 15px 15px 15px;
}

.hightlight-item.style-2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
}

.hightlight-item.style-2 .content {
  z-index: 9;
  top: unset;
  bottom: 0px;
  background-color: transparent;
  padding: 15px 15px 25px 15px;
}

.why-choose-img {
  max-width: 250px;
  margin-bottom: 30px;
}

.feature-item {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  margin: 5px;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
}

.feature-item:nth-child(1) {
  border-left: 2px solid black;
  margin-left: -15px;
}

.feature-item:nth-child(2) {
  border-left: 2px solid #000;
}


.feature-item img {
  width: 50px;
}

.feature-item p {
  color: #2a2a2a;
}

.umrah-video-wrap {
  position: relative;
}

#customControls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-top: 10px;
}

#customControls .video-control-btns {
  padding: 0px;
  margin-right: 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: none;
}

#customControls #playPauseBtn i {
  font-size: 30px;
  margin-left: -5px;
}

#customControls .video-control-btns i {
  font-size: 20px;
  color: white;
}

.airline-partners {
  margin-top: 60px;
  margin-bottom: 60px;
}

.airline-partners .airline-partner-item {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 2px;
}

.partners-marquee-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.search-wrap {
  padding: 30px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  /* background-color: #2A3942; */
  background-color: #fff1d7;
}


.search-wrap .section-title {
  text-align: left;
}

.search-wrap .section-title .bar {
  margin: 20px auto 20px 0;
}

.search-wrap .default-btn {
  border: none;
}

.search-wrap .form-group,
.search-wrap .nice-select {
  margin-bottom: 10px !important;
}

.slider-container {
  position: relative;
  height: 40px;
  margin-top: 10px;
}

input[type=range] {
  -webkit-appearance: none;
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: black;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: black;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

input[type=range]::-moz-range-thumb {
  pointer-events: all;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: black;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.car-card .car-img {
  width: 100%;
}

.car-card img {
  width: 50% !important;
  object-fit: cover;
}

.car-card img:first-child {
  border-top-left-radius: 0.3rem;
}

.car-card img:last-child {
  border-top-right-radius: 0.3rem;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  border-radius: 50%;
  padding: 8px 12px;
  font-weight: bold;
  z-index: 1;
}

.car-card {
  position: relative;
  margin-bottom: 20px;
}

.button-2 {
  /* background-color: #2A3942; */
  background-color: #d9d9d9;
  color: #000;
  outline: none;
  padding: 10px 25px;
  border-radius: 10px;
  text-align: center;
  border: none;
  transition: 0.5s;
}

.button-2:hover {
  background-color: #000;

}

.highlights-slider .default-btn {
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #f3f3f324;
  border: 1px solid white;
  color: white;
}

.highlights-slider .default-btn:hover {
  background-color: black;
}

.package-filter-wrap {
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 50px;
  background-color: white;
}

.package-filter-wrap input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
}

.custom-range-filter .nice-select {
  float: none;
}

.filter-label-primary {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.price-input {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
}

.price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}

.field input {
  width: 100%;
  outline: none;
  margin-left: 12px;
  text-align: center;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-input .separator {
  width: 50px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 8px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: #2A3942;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -7px;
  border: none;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0px;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #2A3942;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: black;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.form-check .form-check-input {
  width: 1em;
  height: 1em;
  padding: 0px;
}

.form-check-input:checked {
  background-color: black;
  border-color: black;
}

.side-enquiry-form {
  padding: 20px;
  background-color: #c5c5c5;
  border-radius: 10px;
}

.side-enquiry-form h3 {
  font-size: 22px;
}

/* .side-enquiry-form .default-btn {
  background-color: white;
  color: black;
} */


@media (max-width:575px) {
  .car-card img {
    /* width: 100%; */
    align-items: center;
    object-fit: cover;
  }
}


.phone_lefts-side a {
  position: fixed;
  bottom: 180px;
  color: white;
  z-index: 999;
  right: 20px;
  background: #626668;
  color: white;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#whatsapp .wtsapp {
  position: fixed;
  transition: all .5s ease;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  /* margin: 0; */
  border-radius: 50px;
  border-right: none;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  bottom: 111px;
  right: 20px;
  border: 0;
  z-index: 999;
  width: 50px;
  height: 50px;
  line-height: 48px;
}

#whatsapp .wtsapp i,
.phone_lefts-side a i {
  font-size: 30px;
}

.nice-select.open .list {
  width: 100%;
}

.package-breadcrumb {
  padding: 10px 0px 10px 10px;
  font-size: 0.9rem;
  background-color: #f1f1f1;
  margin-bottom: 60px;
}

.package-breadcrumb a {
  text-decoration: none;
  color: #555;
}

.package-title {
  font-size: 1.75rem;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.package-detail-form {
  background-color: #fff8e6;
  border-radius: 12px;
  padding: 15px;
}

.package-detail-form .form-label {
  font-weight: 500;
  font-size: 14px;
}

/* .package-detail-form input,
.package-detail-form textarea{
  font-size: 14px;
} */

.package-detail-form .form-select {
  border-radius: 12px;
  padding: 0.5rem 1rem;
}

.price-info {
  font-size: 1.25rem;
  color: #e69138;
  font-weight: 600;
}

.seats-info {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.btn-enquire {
  border-radius: 8px;
}

.package-details-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Carousel image rounding */
.carousel-inner img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  .package-title {
    font-size: 1.5rem;
  }
}

.package-title {
  font-size: 1.75rem;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.package-detail-form .form-select {
  border-radius: 12px;
  padding: 0.5rem 1rem;
}

.price-info {
  font-size: 1.25rem;
  color: #e69138;
  font-weight: 600;
}

.seats-info {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.btn-enquire {
  border-radius: 8px;
}


/* Carousel image rounding */
.carousel-inner img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Policy Table Styles */
.policy-section .policy-table th {
  background-color: #4a90e2;
  color: #000;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.policy-section .policy-table td {
  vertical-align: middle;
  padding: 0.75rem 1rem;
}

@media (max-width: 767px) {
  .package-title {
    font-size: 1.5rem;
  }

  .policy-section .policy-table th,
  .policy-section .policy-table td {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}

.package-title {
  font-size: 1.75rem;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.package-detail-form .form-select {
  border-radius: 12px;
  padding: 0.5rem 1rem;
}

.price-info {
  font-size: 1.25rem;
  color: #e69138;
  font-weight: 600;
}

.seats-info {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.btn-enquire {
  border-radius: 8px;
}

.carousel-inner img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Policy Table */
.policy-section .policy-table th {
  background-color: #4a90e2;
  color: #000;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.policy-section .policy-table td {
  vertical-align: middle;
  padding: 0.75rem 1rem;
}

/* Contact Card */
.contact-section {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 165 0 / 25%);
}

.contact-section .content {
  position: absolute;
  top: 0;
  padding: 30px;
}

.contact-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

.contact-section a {
  color: #fff;
}

.contact-info i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #000;
}

.contact-section .address {
  margin: 1rem 0;
}

.social-icons a {
  color: #f4c542;
  font-size: 1.25rem;
  margin-right: 1rem;
}

.features-list {
  list-style: none;
  padding-left: 10px;
}

.features-list li::before {
  position: absolute;
  content: '\f11c';
  left: 0px;
  top: 8px;
  height: 4px;
  width: 6px;
  /* font: normal normal normal 14px / 1 FontAwesome; */
  font-size: inherit;
  color: #0ca6f9;
}


.map-container {
  padding: 0;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Dark media section */
.media-section {
  background-color: #1b1b1b;
  text-align: center;
  padding: 2rem 1rem;
}

.media-section .umrah-logo img {
  max-width: 300px;
  width: 80%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.media-section .video-box {
  background-color: #fff;
  max-width: 600px;
  width: 90%;
  height: 350px;
  margin: 0 auto;
  border: 5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
}

.cost-item i {
  font-size: 22px;
  margin-bottom: 5px;
  color: #c34105;
}

.hotel-item {
  padding: 10px;
  background-color: #FFF8E6;
  border-radius: 8px;
  border: 1px solid #ffefc5;
}

.hotel-item img {
  border-radius: 5px;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .package-title {
    font-size: 1.5rem;
  }

  .policy-section .policy-table th,
  .policy-section .policy-table td {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .contact-section .content {
    padding: 1rem;
  }

  .contact-section h3 {
    font-size: 1.5rem;
  }

  .contact-info a {
    font-size: 0.9rem;
  }

  .social-icons a {
    margin-right: 0.5rem;
  }
}


@media (max-width: 576px) {
  .map-container iframe {
    height: 250px;
  }

  .media-section .umrah-logo img {
    max-width: 200px;
    margin-bottom: 1rem;
  }

  .media-section .video-box {
    height: 250px;
    font-size: 1.5rem;
    border-width: 3px;
  }
}

.bx.bxs-bowl-hot {
  color: #ea4b03 !important;
}

.clearance-slider.owl-theme .owl-nav {
  display: block;
}

.clearance-slider.owl-theme .owl-nav button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  color: #000;
  font-size: 27px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.clearance-slider.owl-theme .owl-nav .owl-prev {
  left: -67px;
}

.clearance-slider.owl-theme .owl-nav .owl-next {
  right: -67px;
}

.clearance-slider.owl-theme .owl-nav button {
  opacity: 1;
  visibility: visible;
}

.selling-slider.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  /* Allows clicking items under nav */
}

.selling-slider.owl-theme .owl-nav button.owl-prev,
.selling-slider.owl-theme .owl-nav button.owl-next {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  /* Enables clicks on buttons */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.selling-slider.owl-theme .owl-nav button.owl-prev {
  margin-left: -50px;
}

.selling-slider.owl-theme .owl-nav button.owl-next {
  margin-right: -50px;
}

.bx.bxs-plane-alt {
  color: blue !important;
}

.bx.bxs-time {
  color: #551b1b !important;
}

.bx.bxs-star {
  color: #f5bd13 !important;
}

/* ----------Image Box --------------- */
.image-upload-box {
  width: 100%;
  height: 200px;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.image-upload-box img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}

input[type="file"] {
  display: none;
}

.upload-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.banner-btn.edit-profile {
  position: relative;
  top: -80px;
  padding: 5px 19px !important;
}

.list-n {
  list-style: none;
  padding-left: 0px;
}

.list-n li i {
  padding-right: 8px;
}

.list-n li {
  font-size: 13px;
  font-weight: 500;
}

.d-title {
  margin-bottom: 7px;
}

.list-n li a button {
  padding: 4px 16px;
  border: thin solid #107060b8;
  background: #fff;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #107060b8;
}

.text-container {
  position: relative;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  /* 2 lines x 1.5em */
  transition: max-height 0.3s ease;
}

.text-container.expanded {
  max-height: 1000px;
  /* Large enough to show full text */
}

.read-more {
  color: blue;
  cursor: pointer;
  display: inline-block;
  margin-top: 0px;
}

.package-d li {
  list-style-type: none;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
  /* padding-left: 22px; */
  margin-right: 13px;
}

.align-content {
  align-content: center;
}

.h-i-p {
  font-size: 13px;
  font-weight: 500;
}

.price-d {
  font-size: 22px;
}

.twin_shring {
  font-size: 15px;
}

.overview-cube {
  background-color: #fbeed6;
  padding: 13px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.exclusions-icon li {
  list-style: none;
  display: flex;
  gap: 10px;
  line-height: 1.4;
  padding-top: 10px;
}

.exclusions-icon li i {
  margin-top: 4px;
}

.gap-10 {
  gap: 10px;
}

.ptb-80 {
  padding-top: 20px;
  padding-bottom: 80px;
}

.hotel-d-icon {
  margin-left: 5px;
}

.gap5 {
  gap: 7px;
}

a.wtsap-btn {
  background: linear-gradient(to right, #18be55, #25D366);
  border: 1px solid #25D366;
  display: flex;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  color: #fff !important;
}

.bx {
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1.5 !important;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.advertisement-wrap {
  margin-top: 30px !important;
}

.profile-box.user-info img.user {
  border-radius: 100%;
  height: 270px;
}

/* .profile-box.user-info img{
   border-radius: 100%;
   height: 270px;
} */
.logo .black-logo {
  margin-top: -30px;
}

/* ------------booki */
#bookingFormContainer.collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

#bookingFormContainer.expanded {
  max-height: 2000px;
  /* large enough to show all content */
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  pointer-events: all;
}

/* -------------Edit------------- */
.collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.expanded {
  max-height: 2000px;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  pointer-events: all;
}


/* ------------------------- */
.custom-user-item {
  list-style: none;
  border: 1.5px solid #dedbdb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  background-color: #fff;
  /* box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px; */
}

.user-info2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edit-btn {
  background-color: #ffffff;
  color: #000000;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid #dedbdb;
}

.edit-btn:hover {
  background-color: #000;
  color: #fff;
  transition: 0.5s;
}

.edit-form-container {
  margin-top: 16px;
}

.edit-form .form-group {
  margin-bottom: 10px;
}

.edit-form .form-control {
  width: 100%;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.submit-btn {
  background-color: #2a2a2a;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
}

#bookingFormContainer {
  display: none;
  transition: all 0.3s ease;
}

/* ------------btn-------- */
.close-btn {
  position: absolute;
  top: -49px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  z-index: 99;
  background-color: #2a2a2a;
  border-radius: 8px;
}

#toggleFormBtn {
  cursor: pointer;
}

.top-bar-area .login-btn {
  background-color: white;
  color: black;
  padding: 0px 5px;
  border-radius: 3px;
}

.person-ind {
  padding: 5px 10px;
  transition: 0.5s;
  border-radius: 10px;
}

.bggreen {
  background-color: green;
}

.bgyellow {
  background-color: #ffd020;
}

.bgred {
  background-color: red;
}

.bgpurple {
  background-color: #3a28d4;
}

/* .card.card-body.person{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
} */
.person-ind-cj {
  border: 1px solid #dfdada;
  border-radius: 9px;
  padding: 0px 2px;
  background-color: #fff;
}

.single-package.journey {
  padding: 35px;
}

.information-list.pdetails {
  display: flex;
  flex-wrap: wrap;
}

.information-list.pdetails li {
  margin-right: 18px;
  margin-bottom: 2px;
  font-size: 15px;
}

.information-list.pdetails li img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-top: 2px;
}

/* .user-detl-btn{
  color: #6b6b84;
    display: inline-block;
    border: 1px solid #2a2a2a;
    padding: 15px 15px 15px 50px;
    transition: 0.5s;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
}
.user-detl-btn::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #2A3942;
    transition: 0.5s;
    top: 0;
    z-index: -1;
}
.user-detl-btn.active {
    color: #ffffff;
    border: 1px solid #ffffff;
}
.user-detl-btn:hover, .user-detl-btn:focus {
    color: black;
    text-decoration: none;
} */

/* --------------------start review ----------------- */
.star-rating {
  direction: rtl;
  display: inline-flex;
  font-size: 2rem;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.star-rating input[type="radio"]:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
  color: #ffc107;
}

.person-ind-cj b {
  font-size: 12px;
}

.person-ind-cj p {
  font-size: 12px;
  margin-bottom: 5px;
}

.count {
  font-weight: 700;
  color: #202647;
}

/* ---------------Responsive--------------------- */

@media (min-width:576px) {
  .top-icon-ep {
    display: none;
  }
}

@media (max-width:1199px) {
  .logo.two {
    display: none;
  }

  .top-bar-information li {
    padding-left: 11px;
  }

}

/* -----------------991-------------------------*/
@media (max-width:991px) {
  .main-banner-item {
    padding: 0px;
  }

}

/* -----------------768----------------- */
@media (max-width:768px) {
  .payment-dsec {
    overflow-x: scroll;
  }
}



/* -------------------576------------ */
@media (max-width:576px) {
  .top-bar-optional li {
    gap: 0;
  }

  .top-bar-optional li a img {
    width: 30px;
  }

  .single-package,
  .cost-item {
    padding: 0px 0px 30px;
  }

  .single-package .package-content {
    padding: 10px;
  }

  .selling-slider.owl-theme .owl-nav button.owl-prev {
    margin-left: -22px;
  }

  .selling-slider.owl-theme .owl-nav button.owl-prev,
  .selling-slider.owl-theme .owl-nav button.owl-next {
    width: 35px;
    height: 35px;
  }

  .selling-slider.owl-theme .owl-nav button.owl-next {
    margin-right: -22px;
  }

  .selling-slider.owl-theme .owl-nav button.owl-prev,
  .selling-slider.owl-theme .owl-nav button.owl-next {
    width: 35px;
    height: 35px;
  }

  .popular-package-section {
    padding: 30px 0;
  }

  .logo .black-logo {
    margin-top: -17px;
  }

  .top-bar-information li a {
    margin-left: 7px;
    font-size: 13px;
  }

  .top-bar-optional {
    display: none;
  }

  .top-bar-area {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .top-bar-information {
    margin-bottom: 4px;
  }
}

/* -------------------400----------- */
@media (max-width:400px) {
  .top-bar-information li {
    font-size: 11px;
  }

  .top-bar-information {
    text-align: start !important;
  }
}

/* -------------Delete Button ----------------------- */
.image-upload-box {
  position: relative;
  width: 100%;
  height: 200px;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.image-upload-box img {
  width: 100%;
  height: 100%;
}

.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: none;
  font-size: 16px;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 20px;
}

.delete-btn b {
  color: #ffffff;
}

.image-upload-box.has-image:hover .delete-btn {
  display: block;
}

.upload-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: white;
}

/* -------------Delete Button ----------------------- */
.datepicker {
  z-index: 9999 !important;
}

.person-indbg {
  /* background-color: #000; */
  border-radius: 5px;
}

.register-one a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #6b6b84;
}

.register-one a:hover::before {
  width: 0;
}

.register-one a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  transition: 0.5s;
  background-color: #eeeeee;
}

.register-one a:hover::after {
  width: 100%;
}

.register-one a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  transition: 0.5s;
  bottom: 0;
  content: "";
  background-color: black;
}

.register-area.vendor .register-form {
  max-width: none;
}

/* .register-area.vendor .register-form form .form-group .form-control:focus{
  text-align: center;
  padding-top: 17px;
} */
.compare-card {
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 20px 20px 30px;
  border-radius: 8px;
}

.comparison-row ul li::before {
  content: "\f11c";
  position: absolute;
  left: 0;
  top: 3px;
  color: #279d00;
  font-size: 13px;
  margin-right: 10px;
  border-radius: 50%;
  font-family: "Flaticon";
  /* background-color: #6b6b84; */
}

.comparison-row ul {
  list-style: none;
}

/* -------------------------------656---------------------------- */

/* .comparison-panel {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .comparison-header {
      font-weight: 600;
      font-size: 1.1rem;
    }
    .comparison-row {
      border-top: 1px solid #e0e0e0;
      padding: 12px 0;
    }
    .comparison-row:first-of-type {
      border-top: none;
    }
    .rating-star {
      color: #f5a623;
    }
    .comparison-value {
      font-weight: 500;
    }
    .note {
      font-size: 0.75rem;
      color: #777;
    }
    .info-icon {
      cursor: pointer;
      color: #6c757d;
    }
  */
.widget-area .widget_mediva_posts_thumb .item {
  display: flex;
  column-gap: 10px;
}

.widget-area .widget_mediva_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_mediva_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}

.widget-area .widget_mediva_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
}

.catering-sec .package-content .btn-group .optional-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #2A3942;
  border: 1px solid #000;
  color: #ffffff;
  border-radius: 10px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
}

.single-package2,
.cost-item {
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 8px;
  transition: 0.5s;
}

.cost-item {
  background-color: #fbeed6;
  margin-bottom: 20px;
}

.single-package2 .package-image img {
  border-radius: 8px 8px 0px 0px;
  /* width: 320px; */
}

.transport form .nice-select {
  height: 47px;
  width: 100%;
  line-height: 47px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #fff;
  border-color: #d3d3d3;
  color: #6b6b84;
  border-radius: 0;
  transition: 0.5s;
  margin-bottom: 25px;
  border-radius: 10px;
}

.transport-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin: auto;
  background-color: #fff1d7;
}

.transport form button {
  border: none;
  padding: 10px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: black;
  color: #ffffff;
  transition: 0.5s;
}

.transport-sm-card {
  background-color: #fdf8ef;
  padding: 10px;
  border-radius: 8px;
}

.btn-all {
  display: inline-block;
  padding: 10px 25px;
  background-color: #2A3942;
  border: 1px solid #000;
  color: #ffffff;
  border-radius: 10px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
}

/* ---------------Product--------------------- */

.price-panel {
  background-color: #fffaf3;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .price-panel {
    margin-left: 0;
    margin-right: 0;
  }
}

.features-list li i {
  color: #279d00;
  margin-right: 5px;
}

.hoteld-img {
  width: 100%;
  height: 520px;
}

.hoteld-rght {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}

.hoteld-rght .content {
  padding: 20px;
}

#customPopup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 180px;
  height: 60px;
  font-size: 12px;
  padding: 5px 10px;
  background-color: #000000d4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  z-index: 1055;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#customPopup.hide {
  opacity: 0;
  pointer-events: none;
}

.hide {
  display: none;
}

.error {
  color: red !important;
}

/* ----------------------------- */


.highlights-slidertwo.owl-theme .owl-nav {
  display: block;
}

.highlights-slidertwo.owl-theme .owl-nav button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  color: #000;
  font-size: 27px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.highlights-slidertwo.owl-theme .owl-nav .owl-prev {
  left: -67px;
}

.highlights-slidertwo.owl-theme .owl-nav .owl-next {
  right: -67px;
}

.highlights-slidertwo.owl-theme .owl-nav button {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------- */
.highlights-sliderthree.owl-theme .owl-nav {
  display: block;
}

.highlights-sliderthree.owl-theme .owl-nav button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  color: #000;
  font-size: 27px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.highlights-sliderthree.owl-theme .owl-nav .owl-prev {
  left: -67px;
}

.highlights-sliderthree.owl-theme .owl-nav .owl-next {
  right: -67px;
}

.highlights-sliderthree.owl-theme .owl-nav button {
  opacity: 1;
  visibility: visible;
}

/* .highlights-slidertwo..owl-carousel .owl-item img {
  width: 0%;
} */

/* -------------------------------------------------------- */
.umrahtour.owl-theme .owl-nav {
  display: block;
}

.umrahtour.owl-theme .owl-nav button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  color: #000;
  font-size: 27px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.umrahtour.owl-theme .owl-nav .owl-prev {
  left: -67px;
}

.umrahtour.owl-theme .owl-nav .owl-next {
  right: -67px;
}

.umrahtour.owl-theme .owl-nav button {
  opacity: 1;
  visibility: visible;
}

/* ------------------- */
/* Ribbon Style */
.clearence-ribbon {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #d40000;
  color: white;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 18px 6px 12px;
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
  z-index: 10;
  border-radius: 2px;
  transition: all 0.5s ease-in-out;
}

.clearence-ribbon p {
  margin: 0;
  line-height: 1;
  color: #fff;
  font-weight: 500;
}

/* -------------- */
.table .customtable th {
  font-size: 18px;
  color: #202647;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid #e1e1e1;
  text-align: center;
  background-color: #fbeed6;
}

.table .customtable tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.black-icon {
  filter: brightness(0%) invert(0%);
}

.g-recaptcha.w-100>div{
	max-width:100%;
	width:unset!important;
}

.g-recaptcha.w-100 iframe{
	max-width:100%
}