* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Almarai', sans-serif;
}

*::-moz-selection {
  background-color: #33C5F3;
  color: #fff;
}

*::selection {
  background-color: #33C5F3;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #33C5F3;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #1a6b84;
}

/**********************************************
   Start Global Style
**********************************************/
body {
  background-color: #F5F6F8;
}

p {
  font-size: 15px;
  color: #555;
  line-height: 2rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #139dc7, #33C5F3);
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes slide-in-blurred-br {
  0% {
    -webkit-transform: translate(1000px, 1000px) skew(80deg, 10deg);
            transform: translate(1000px, 1000px) skew(80deg, 10deg);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0) skew(0deg, 0deg);
            transform: translate(0, 0) skew(0deg, 0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-br {
  0% {
    -webkit-transform: translate(1000px, 1000px) skew(80deg, 10deg);
            transform: translate(1000px, 1000px) skew(80deg, 10deg);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0) skew(0deg, 0deg);
            transform: translate(0, 0) skew(0deg, 0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-blurred-bl {
  0% {
    -webkit-transform: translate(-1000px, 1000px) skew(-80deg, -10deg);
            transform: translate(-1000px, 1000px) skew(-80deg, -10deg);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0) skew(0deg, 0deg);
            transform: translate(0, 0) skew(0deg, 0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-bl {
  0% {
    -webkit-transform: translate(-1000px, 1000px) skew(-80deg, -10deg);
            transform: translate(-1000px, 1000px) skew(-80deg, -10deg);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    -webkit-filter: blur(40px);
            filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0) skew(0deg, 0deg);
            transform: translate(0, 0) skew(0deg, 0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(3deg) scale(1.1);
            transform: rotate(3deg) scale(1.1);
  }
}

@keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(3deg) scale(1.1);
            transform: rotate(3deg) scale(1.1);
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}

@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}

.swing-in-top-fwd {
  -webkit-animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar {
  background-color: #fff;
  position: relative;
  z-index: 9;
}

.navbar .logo {
  width: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  text-align: center;
  margin: 0 10px;
  font-size: 13px;
  color: #888;
}

.navbar .nav-link .icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
  -webkit-filter: invert(19%) sepia(2%) saturate(10%) hue-rotate(334deg) brightness(98%) contrast(95%);
          filter: invert(19%) sepia(2%) saturate(10%) hue-rotate(334deg) brightness(98%) contrast(95%);
}

.navbar .nav-link.active {
  color: #33C5F3 !important;
  font-weight: bold;
}

.navbar .nav-link.active .icon {
  -webkit-filter: invert(60%) sepia(98%) saturate(1250%) hue-rotate(164deg) brightness(105%) contrast(91%) !important;
          filter: invert(60%) sepia(98%) saturate(1250%) hue-rotate(164deg) brightness(105%) contrast(91%) !important;
}

.navbar .nav-link:hover {
  color: #33C5F3 !important;
}

.navbar .nav-link:hover .icon {
  -webkit-filter: invert(60%) sepia(98%) saturate(1250%) hue-rotate(164deg) brightness(105%) contrast(91%) !important;
          filter: invert(60%) sepia(98%) saturate(1250%) hue-rotate(164deg) brightness(105%) contrast(91%) !important;
  -webkit-animation: tada 2s both;
          animation: tada 2s both;
}

.navbar .links .sign_butn {
  display: inline-block;
  margin: 0 5px;
  font-size: 12px;
  color: #666;
  font-weight: bold;
}

.navbar .links .sign_butn:hover {
  color: #33C5F3;
}

.navbar .links .lang_butn {
  padding: .4rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: inline-block;
  margin: 0 2px;
  font-size: 12px;
  color: #666;
  font-weight: bold;
}

.navbar .links .lang_butn:hover {
  border: 1px solid #33C5F3;
  color: #33C5F3;
}

.navbar .links .dropdown {
  display: inline-block;
}

.navbar .links .dropdown .noti_butn {
  background-color: transparent;
}

.navbar .links .dropdown .noti_butn .icon {
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(41%) sepia(8%) saturate(19%) hue-rotate(353deg) brightness(91%) contrast(87%);
          filter: invert(41%) sepia(8%) saturate(19%) hue-rotate(353deg) brightness(91%) contrast(87%);
}

.navbar .links .dropdown .noti_butn:hover .icon {
  -webkit-filter: invert(62%) sepia(73%) saturate(1443%) hue-rotate(163deg) brightness(104%) contrast(91%);
          filter: invert(62%) sepia(73%) saturate(1443%) hue-rotate(163deg) brightness(104%) contrast(91%);
}

.navbar .links .dropdown .noti-dropdown-body {
  height: 230px;
  overflow-x: hidden;
}

.navbar .links .dropdown .noti-dropdown-body::-webkit-scrollbar {
  opacity: 0;
  display: none;
}

.navbar .links .dropdown .dropdown-menu {
  min-width: auto;
  width: 275px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px 0 #ddd;
          box-shadow: 0 0 15px 0 #ddd;
}

.navbar .links .dropdown .dropdown-menu .noti-item {
  padding: 5px 10px;
  margin-bottom: 5px;
}

.navbar .links .dropdown .dropdown-menu .noti-item .dateTime p {
  font-size: 9px;
}

.navbar .links .dropdown .dropdown-menu .noti-item .noti-body .text .p {
  font-size: 10px;
}

.navbar .links .dropdown .dropdown-menu .noti-item .noti-body .icon {
  width: 25px;
}

.navbar .links .dropdown .dropdown-menu .more-noti {
  display: block;
  text-align: center;
  border-top: 1px solid #ddd;
  padding: 15px 0 0px 0;
  font-weight: bold;
  color: #666;
  font-size: 13px;
}

.navbar .links .dropdown .dropdown-menu .more-noti:hover {
  color: #33C5F3;
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #33C5F3;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #33C5F3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.footer {
  padding: 40px 0 0 0;
}

.footer .content {
  margin-bottom: 25px;
}

.footer .content .social-links a {
  color: #666;
  margin: 0 8px;
}

.footer .content .social-links a:hover {
  color: #33C5F3 !important;
}

.footer .content .links a {
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
  color: #666;
  font-size: 14px;
}

.footer .content .links a:hover {
  color: #33C5F3 !important;
}

.footer .content .text-end {
  text-align: end;
}

.footer .copyright {
  border-top: 1px solid #ddd;
  padding: 15px 0;
  text-align: center;
  font-weight: 500;
  color: #444;
}

.footer .copyright a {
  color: #666;
}

.footer .copyright a:hover {
  color: #33C5F3;
}

/**********************************************
    Start Public Classes
**********************************************/
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid {
  position: relative;
  z-index: 5;
}

.main-butn {
  padding: .6rem 3rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.main-butn span {
  position: relative;
  z-index: 2;
}

.main-butn::before, .main-butn::after {
  content: '';
  width: 100%;
  height: 51%;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: #33C5F3;
  display: block;
}

.main-butn::before {
  top: 0;
  -webkit-transform: translateY(-101%);
          transform: translateY(-101%);
}

.main-butn::after {
  bottom: 0;
  -webkit-transform: translateY(101%);
          transform: translateY(101%);
}

.main-butn.border-butn {
  border: 1px solid #fff;
  color: #fff;
}

.main-butn.dark-butn {
  background-color: #091D2F;
  border: 1px solid #091D2F;
  color: #fff;
}

.main-butn:hover {
  border: 1px solid #33C5F3;
  color: #fff !important;
}

.main-butn:hover::before, .main-butn:hover::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.swiper-container .swiper-pagination-bullet {
  width: 45px;
  height: 5px;
  border-radius: 5px;
  background-color: #666;
  opacity: 1;
  border: 1px solid #606060;
}

.swiper-container .swiper-pagination-bullet-active {
  border: 1px solid #33C5F3;
  background: #33C5F3;
}

.sec-heading .title {
  font-weight: bold;
}

.sec-heading .title::after {
  content: '';
  width: 100px;
  height: 3px;
  background: url(../images/line.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin: 10px auto 0 auto;
  -webkit-filter: invert(95%) sepia(97%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
          filter: invert(95%) sepia(97%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
}

.blue {
  color: #33C5F3;
}

.page-heading {
  background-color: #33C5F3;
  padding: 30px 0 60px 0;
  position: relative;
}

.page-heading .breadcrumb {
  background-color: transparent;
}

.page-heading .breadcrumb .home-icon {
  width: 19px;
  height: 19px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(91%) sepia(0%) saturate(7485%) hue-rotate(43deg) brightness(115%) contrast(100%);
          filter: invert(91%) sepia(0%) saturate(7485%) hue-rotate(43deg) brightness(115%) contrast(100%);
}

.page-heading .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #eee;
}

.page-heading .breadcrumb .breadcrumb-item.active {
  color: #BFFFFF;
}

.page-heading .pattern {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.modal-content {
  padding: 15px;
  border-radius: 20px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
}

.header .item {
  padding: 200px 0;
  position: relative;
}

.header .item .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.header .item .text-box .subtitle {
  color: #33C5F3;
  font-weight: bold;
}

.header .item .text-box .subtitle::after {
  content: '';
  width: 119px;
  height: 3px;
  background: url(../images/line.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin: 10px auto 0 auto;
}

.header .item .text-box .title {
  color: #fff;
  font-weight: bold;
}

.header .item .text-box .p {
  color: #ddd;
}

.header .item::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.header .swiper-slide-active .bg {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.header .swiper-slide-active .subtitle,
.header .swiper-slide-active .title,
.header .swiper-slide-active .p {
  -webkit-animation: slide-in-blurred-br 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
          animation: slide-in-blurred-br 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header .swiper-slide-active .title {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.header .swiper-slide-active .p {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.header .swiper-slide-active .main-butn {
  -webkit-animation: slide-in-blurred-bl 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
          animation: slide-in-blurred-bl 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.header .swiper-pagination {
  bottom: 30px;
}

.about-sec {
  padding: 100px 0 70px 0;
  position: relative;
}

.about-sec .img-box {
  position: relative;
  height: 600px;
}

.about-sec .img-box::before {
  content: '';
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: -20px;
  right: -20px;
  display: block;
  background-color: #33C5F3;
}

.about-sec .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-sec .text-box {
  -webkit-padding-start: 2vw;
          padding-inline-start: 2vw;
}

.about-sec .text-box .title {
  font-size: calc(35px + 2vw);
  font-weight: 600;
}

.about-sec .text-box .title b {
  font-weight: 600;
  color: #33C5F3;
}

.about-sec .text-box .p {
  font-size: 13px;
}

.packages-sec {
  position: relative;
  padding: 70px 0;
}

.packages-sec::before {
  content: '';
  width: 100%;
  height: 70%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 55% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 55% 100%, 0% 100%);
  background-color: #091D2F;
  display: block;
}

.packages-sec .pkg_card .card_t {
  height: 150px !important;
}

.pkg_card {
  position: relative;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 25px;
}

.pkg_card .card_t {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.pkg_card .card_t .content {
  position: relative;
  z-index: 3;
}

.pkg_card .card_t .content .badge {
  background-image: -webkit-gradient(linear, left top, right top, from(#9F2B31), color-stop(#CB2228), to(#A32B31));
  background-image: linear-gradient(to right, #9F2B31, #CB2228, #A32B31);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: .7rem 1.5rem;
  position: relative;
  top: 10px;
  right: 10px;
  border-radius: 25px 0;
  font-size: 19px;
  color: #fff;
}

.pkg_card .card_t .content .badge small {
  font-size: 70%;
}

.pkg_card .card_t .content .pkg-name {
  color: #fff;
}

.pkg_card .card_t .bg, .pkg_card .card_t::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.pkg_card .card_t::before {
  content: '';
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.pkg_card .card-body {
  padding: 2rem 1.25rem;
}

.pkg_card .card-body .list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px auto;
  color: #666;
}

.pkg_card .card-body .list .li {
  font-size: 13px;
  margin-bottom: 1rem;
}

.pkg_card .card-body .list .li i {
  color: #33C5F3;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.pkg_card .card-body .border-butn {
  padding: .6rem 2rem;
  font-size: 13px;
  border: 1px solid #33C5F3;
  color: #33C5F3;
  border-radius: 18px;
}

.pkg_card .card-body .border-butn::before, .pkg_card .card-body .border-butn::after {
  background-color: #091D2F;
}

.pkg_card .card-body .border-butn.active-butn {
  background-color: #33C5F3;
  color: #fff;
}

.pkg_card .card-body .border-butn:hover {
  border: 1px solid #091D2F;
}

.pkg_card:hover {
  -webkit-box-shadow: 0 20px 25px 0 #ccc;
          box-shadow: 0 20px 25px 0 #ccc;
}

.pkg_card:hover .badge {
  -webkit-animation: vibrate-1 0.5s linear infinite both;
          animation: vibrate-1 0.5s linear infinite both;
}

.pkg_card:hover .bg {
  -webkit-animation: imagemove 1.5s ease-out alternate infinite running;
          animation: imagemove 1.5s ease-out alternate infinite running;
}

.feedback-sec {
  position: relative;
  padding: 70px 0;
}

.feedback-sec .sec-heading .title::after {
  margin: 10px 0 0 0;
}

.feedback-sec .item .main-img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #fff;
  opacity: 0;
  border-radius: 10px;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.feedback-sec .item .feedback_inner {
  background-color: #fff;
  padding: 35px;
  width: 120%;
  border-radius: 10px;
  position: relative;
  z-index: 3;
  top: 200px;
  margin: 15px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.feedback-sec .item .feedback_inner .rating {
  color: #ccc;
}

.feedback-sec .item .feedback_inner .rating .active {
  color: #33C5F3;
}

.feedback-sec .item .feedback_inner .det {
  color: #888;
}

.feedback-sec .item .feedback_inner .prof-data .name::after {
  content: '';
  width: 100px;
  height: 3px;
  background: url(../images/line.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin: 13px 0 0 0;
}

.feedback-sec .item .feedback_inner .quotesmark {
  position: absolute;
  bottom: 45px;
  left: 45px;
  width: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}

.feedback-sec .swiper-slide-active .main-img {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.feedback-sec .swiper-slide-active .feedback_inner {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.feedback-sec::before {
  content: '';
  width: 100%;
  height: 450px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #091D2F;
  display: block;
}

.feedback-sec .pattern {
  position: absolute;
  top: 50px;
  right: 34%;
  width: 30%;
}

.calorie-calculator {
  position: relative;
  padding: 70px 0;
  background-color: #141C2B;
}

.calorie-calculator .gender-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.calorie-calculator .gender-wrapper .custom-control {
  text-align: center;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.calorie-calculator .gender-wrapper .custom-control .custom-control-label {
  color: #999;
  font-weight: bold;
  cursor: pointer;
}

.calorie-calculator .gender-wrapper .custom-control .custom-control-label .gender-icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  opacity: .5;
  margin-bottom: 7px;
  -webkit-filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(273deg) brightness(106%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(273deg) brightness(106%) contrast(101%);
}

.calorie-calculator .gender-wrapper .custom-control .custom-control-label::after,
.calorie-calculator .gender-wrapper .custom-control .custom-control-label::before {
  display: none;
}

.calorie-calculator .gender-wrapper .custom-control-input:checked ~ .custom-control-label {
  color: #fff;
}

.calorie-calculator .gender-wrapper .custom-control-input:checked ~ .custom-control-label .gender-icon {
  opacity: 1;
  -webkit-filter: invert(66%) sepia(81%) saturate(1434%) hue-rotate(159deg) brightness(99%) contrast(93%);
          filter: invert(66%) sepia(81%) saturate(1434%) hue-rotate(159deg) brightness(99%) contrast(93%);
}

.calorie-calculator .dark-butn {
  background-color: #fff;
  border: 1px solid #fff;
  color: #091D2F;
}

.calorie-calculator .cal-result {
  background-color: #fff;
  padding: 45px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}

.calorie-calculator .cal-result .icon {
  width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}

.calorie-calculator .cal-result .content {
  -webkit-margin-start: 35px;
          margin-inline-start: 35px;
}

.calorie-calculator .cal-result .content .title {
  color: #666;
}

.calorie-calculator .cal-result .content small {
  font-size: 70%;
}

.calorie-calculator .main-img {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 33%;
}

.calorie-calculator .pattern {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 17%;
}

.calorie-calculator .pattern_bl {
  position: absolute;
  top: 33%;
  left: 11%;
  width: 23%;
  opacity: .05;
  -webkit-filter: invert(100%) sepia(0%) saturate(2074%) hue-rotate(87deg) brightness(111%) contrast(109%);
          filter: invert(100%) sepia(0%) saturate(2074%) hue-rotate(87deg) brightness(111%) contrast(109%);
}

.form-wrapper .form-control {
  font-size: 13px;
  color: #fff;
  border: 1px solid transparent;
  background-color: #8A8E95;
  border-radius: 15px;
}

.form-wrapper .form-control::-webkit-input-placeholder {
  color: #ddd;
}

.form-wrapper .form-control:-ms-input-placeholder {
  color: #ddd;
}

.form-wrapper .form-control::-ms-input-placeholder {
  color: #ddd;
}

.form-wrapper .form-control::placeholder {
  color: #ddd;
}

.form-wrapper input,
.form-wrapper select {
  height: 55px;
}

.form-wrapper .dark-butn {
  border: 1px solid #ccc;
}

.newsletter-sec {
  padding: 50px 0;
  background-color: #030E17;
}

.newsletter-sec .logo {
  width: 100%;
  height: 155px;
  -o-object-fit: contain;
     object-fit: contain;
}

.newsletter-sec .submit-butn {
  background-color: #33C5F3;
  border: 1px solid #33C5F3;
  color: #fff;
  border-radius: 15px;
}

.newsletter-sec .submit-butn:hover {
  background-color: #141C2B;
  border: 1px solid #141C2B;
}

/**********************************************
    Start Edit Register Page 
**********************************************/
.register-pg {
  background-color: #091D2F;
  position: relative;
}

.register-pg .register-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 800px;
}

.register-pg .inner {
  padding: 50px 0;
}

.register-pg .inner .reg_heading .img-box {
  width: 170px;
  height: 100px;
  display: block;
  margin: auto;
}

.register-pg .inner .reg_heading .img-box::after {
  content: '';
  width: 100px;
  height: 3px;
  background: url(../images/line.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin: 10px auto 0 auto;
}

.register-pg .inner .reg_heading .img-box .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.register-pg .inner .form-wrapper .form-group {
  position: relative;
  margin-bottom: 1.6rem;
}

.register-pg .inner .form-wrapper .form-group .label {
  font-size: 12px;
  color: #ddd;
  font-weight: bold;
  display: block;
  margin-bottom: .6rem;
}

.register-pg .inner .form-wrapper .form-group .form-control {
  background-color: #091D2F;
  border: 1px solid #888;
}

.register-pg .inner .form-wrapper .form-group .form-control::-webkit-input-placeholder {
  color: #888;
}

.register-pg .inner .form-wrapper .form-group .form-control:-ms-input-placeholder {
  color: #888;
}

.register-pg .inner .form-wrapper .form-group .form-control::-ms-input-placeholder {
  color: #888;
}

.register-pg .inner .form-wrapper .form-group .form-control::placeholder {
  color: #888;
}

.register-pg .inner .form-wrapper .form-group .form-control:focus {
  border: 1px solid #fff;
}

.register-pg .inner .form-wrapper .form-group .togglePassword {
  color: #f5f5f5;
  position: absolute;
  left: 15px;
  top: 43px;
  cursor: pointer;
}

.register-pg .inner .form-wrapper .form-group .forget_pass {
  display: block;
  color: #ccc;
  font-size: 13px;
}

.register-pg .inner .form-wrapper .form-group .forget_pass:hover {
  color: #33C5F3;
}

.register-pg .inner .form-wrapper .radios-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control {
  padding: 0;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label {
  cursor: pointer;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label::after, .register-pg .inner .form-wrapper .radios-wrapper .custom-control-label::before {
  display: none;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: block;
  text-align: center;
  margin: 0 auto 5px auto;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label .icon .img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label .title {
  text-align: center;
  color: #ddd;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-input:checked ~ .custom-control-label .icon {
  border: 1px solid #33C5F3;
  background-color: #33C5F3;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-input:checked ~ .custom-control-label .title {
  color: #33C5F3;
}

.register-pg .inner .form-wrapper .code-form-group .form-control {
  padding: 0;
  text-align: center;
  width: 70px;
  margin: 0 5px;
}

.register-pg .inner .form-wrapper .code-form-group .resend_link {
  display: block;
  color: #fff;
  text-decoration: underline;
}

.register-pg .inner .form-wrapper .code-form-group .resend_link:hover {
  text-decoration: none;
  color: #33C5F3;
}

.register-pg .inner .form-wrapper .code-form-group .timer {
  color: #ddd;
}

.register-pg .inner .form-wrapper .submit-butn {
  padding: .85rem 3rem;
  border: 1px solid #33C5F3;
  background-color: #33C5F3;
  color: #fff;
  border-radius: 18px;
  width: 100%;
}

.register-pg .inner .form-wrapper .submit-butn::before, .register-pg .inner .form-wrapper .submit-butn::after {
  background-color: #fff;
}

.register-pg .inner .form-wrapper .submit-butn:hover {
  color: #091D2F !important;
  border: 1px solid #33C5F3;
}

.register-pg .inner .form-wrapper .another_act {
  color: #ddd;
}

.register-pg .inner .form-wrapper .another_act a {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  color: #33C5F3;
  text-decoration: underline;
}

.register-pg .inner .form-wrapper .another_act a:hover {
  text-decoration: none;
  color: #1a6b84;
}

/**********************************************
    Start Edit Profile Page 
**********************************************/
.profile-pg {
  position: relative;
  background-color: #F5F6F8;
}

.profile-pg .side-nav {
  background-color: #091D2F;
  padding: 5rem 8vw 5rem 0;
  height: 100%;
  position: relative;
}

.profile-pg .side-nav .prof-info {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.profile-pg .side-nav .prof-info .avatar {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-pg .side-nav .prof-info .text-content {
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

.profile-pg .side-nav .nav {
  position: relative;
  z-index: 2;
}

.profile-pg .side-nav .nav .nav-link {
  position: relative;
  color: #fff;
  font-weight: bold;
  padding: 1.8rem 1.5rem;
  border-radius: 0 20px 20px 0;
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}

.profile-pg .side-nav .nav .nav-link::after, .profile-pg .side-nav .nav .nav-link::before {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  display: none;
}

.profile-pg .side-nav .nav .nav-link::before {
  bottom: -31px;
  left: -27px;
  background: url(../images/nav-b.png);
}

.profile-pg .side-nav .nav .nav-link::after {
  top: -16px;
  left: -27px;
  background: url(../images/nav-t.png);
}

.profile-pg .side-nav .nav .nav-link.active {
  color: #091D2F;
  background-color: #fff;
}

.profile-pg .side-nav .nav .nav-link.active::after, .profile-pg .side-nav .nav .nav-link.active::before {
  display: block;
}

.profile-pg .side-nav .pattern {
  position: absolute;
  bottom: 15px;
  width: 66%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.profile-pg .tab-wrapper {
  padding: 70px 0;
  background-color: #fff;
}

.profile-pg .tab-wrapper .sec-heading .title::after {
  -webkit-filter: unset;
          filter: unset;
}

.profile-pg .tab-wrapper .info-butn {
  padding: 1rem 3rem;
  border: 1px solid #33C5F3;
  background-color: #33C5F3;
  color: #fff;
  border-radius: 18px;
  width: 100%;
  text-align: center;
}

.profile-pg .tab-wrapper .info-butn i {
  -webkit-margin-end: 6px;
          margin-inline-end: 6px;
}

.profile-pg .tab-wrapper .info-butn::before, .profile-pg .tab-wrapper .info-butn::after {
  background-color: #091D2F;
}

.profile-pg .tab-wrapper .info-butn:hover {
  border: 1px solid #33C5F3;
}

.profile-pg .tab-wrapper.data-tab .data-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.profile-pg .tab-wrapper.data-tab .data-group .label {
  display: block;
  margin-bottom: .4rem;
  font-size: 13px;
  font-weight: bold;
  color: #888;
}

.profile-pg .tab-wrapper.data-tab .data-group .data {
  background-color: #F6F6F9;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 12.5px 20px;
  font-size: 14px;
}

.profile-pg .tab-wrapper.data-tab .form-wrapper .form-control {
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
}

.profile-pg .tab-wrapper.pkg-tab .package-det-card {
  padding: 55px 3vw;
}

.profile-pg .tab-wrapper.pkg-tab .pkg_card {
  border: 1px solid #eee;
}

.profile-pg .tab-wrapper.pkg-tab .butns-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.profile-pg .tab-wrapper.pkg-tab .butns-wrapper .main-butn {
  margin: 0 3px !important;
}

.logoutModal .main-img {
  width: 270px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.logoutModal .modal-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid transparent;
}

.logoutModal .modal-footer .border-butn {
  color: #333;
  border: 1px solid #eee;
}

.logoutModal .modal-footer .active-butn {
  border: 1px solid #33C5F3;
  background-color: #33C5F3;
  color: #fff;
}

.logoutModal .modal-footer .active-butn::before, .logoutModal .modal-footer .active-butn::after {
  background-color: #091D2F;
}

.logoutModal .modal-footer .active-butn:hover {
  border: 1px solid #33C5F3;
}

/**********************************************
    Start Edit Chat Page 
**********************************************/
.chat-pg {
  position: relative;
}

.chat-pg .chats-wrapper {
  background-color: #FFFFFF;
  padding: 35px 2vw;
}

.chat-pg .chats-wrapper .search-form {
  position: relative;
}

.chat-pg .chats-wrapper .search-form .form-control {
  height: 50px;
  border-radius: 25px;
  background-color: #F1EDED;
  border: 1px solid #F1EDED;
  padding: .375rem .75rem .375rem 2rem;
}

.chat-pg .chats-wrapper .search-form .search-icon {
  position: absolute;
  left: 12px;
  top: 14px;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #888;
}

.chat-pg .chats-wrapper .search-form .search-icon:hover {
  color: #33C5F3;
}

.chat-pg .chats-wrapper .single-chat {
  position: relative;
  padding: 30px 16px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}

.chat-pg .chats-wrapper .single-chat::before {
  content: '';
  width: 3px;
  height: 100%;
  background-color: transparent;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.chat-pg .chats-wrapper .single-chat .card_t {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.chat-pg .chats-wrapper .single-chat .card_t .img-box {
  width: 50px;
  height: 50px;
  position: relative;
}

.chat-pg .chats-wrapper .single-chat .card_t .img-box .avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.chat-pg .chats-wrapper .single-chat .card_t .img-box .active-status {
  position: absolute;
  top: -2px;
  left: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: block;
  border: 2px solid #fff;
  background-color: #CBD8CE;
}

.chat-pg .chats-wrapper .single-chat .card_t .img-box .active-status.active {
  background-color: #34D859;
}

.chat-pg .chats-wrapper .single-chat .card_t .text-content {
  width: calc(100% - 125px);
}

.chat-pg .chats-wrapper .single-chat .card_t .text-content .p {
  font-size: 12px;
  color: #999;
}

.chat-pg .chats-wrapper .single-chat .card_b {
  -webkit-padding-end: 20px;
          padding-inline-end: 20px;
  position: relative;
}

.chat-pg .chats-wrapper .single-chat .card_b .sm-msg {
  font-size: 14px;
  color: #888;
}

.chat-pg .chats-wrapper .single-chat .card_b .num {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  background-color: #181C2F;
  color: #fff;
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 11px;
  font-weight: bold;
}

.chat-pg .chats-wrapper .single-chat.active {
  -webkit-box-shadow: 0 0 25px 0 #eee;
          box-shadow: 0 0 25px 0 #eee;
}

.chat-pg .chats-wrapper .single-chat.active::before {
  background-color: #33C5F3;
}

.chat-pg .chat-inner {
  overflow: hidden;
}

.chat-pg .chat-inner .chat_t {
  background-color: #fff;
  padding: 30px 15px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 10px 20px 0 #ccc;
          box-shadow: 0 10px 20px 0 #ccc;
  position: relative;
  z-index: 2;
}

.chat-pg .chat-inner .chat_t .img-box {
  width: 70px;
  height: 70px;
  position: relative;
}

.chat-pg .chat-inner .chat_t .img-box .avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.chat-pg .chat-inner .chat_t .img-box .active-status {
  position: absolute;
  top: 0;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: block;
  border: 2px solid #fff;
  background-color: #CBD8CE;
}

.chat-pg .chat-inner .chat_t .img-box .active-status.active {
  background-color: #34D859;
}

.chat-pg .chat-inner .chat_t .text-content {
  width: calc(100% - 100px);
}

.chat-pg .chat-inner .chat_t .text-content .p {
  font-size: 12px;
  color: #999;
}

.chat-pg .chat-inner .chat_t .buttons .chat-butn {
  background-color: transparent;
  border: none;
  color: #888;
  margin: 0 3px;
}

.chat-pg .chat-inner .chat_t .buttons .chat-butn:hover {
  color: #33C5F3;
}

.chat-pg .chat-inner .chat-body {
  padding: 2rem 1.25rem;
  position: relative;
  height: 500px;
  background-color: #f1f1f1;
  overflow: hidden;
  overflow-y: auto;
}

.chat-pg .chat-inner .chat-body .my-msg .msg {
  -webkit-box-shadow: 0 0 25px 0 #ccc;
          box-shadow: 0 0 25px 0 #ccc;
  background-color: #091D2F;
  color: #fff;
  border-radius: 25px;
  padding: .7rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: .3rem;
  position: relative;
  max-width: 70%;
}

.chat-pg .chat-inner .chat-body .my-msg .msg::after {
  content: '';
  width: 33px;
  height: 18px;
  background: url(../images/mymsg.png);
  background-size: cover;
  display: block;
  position: absolute;
  bottom: -5px;
  right: -3px;
}

.chat-pg .chat-inner .chat-body .other-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.chat-pg .chat-inner .chat-body .other-msg .msg {
  -webkit-box-shadow: 0 0 25px 0 #ccc;
          box-shadow: 0 0 25px 0 #ccc;
  background-color: #fff;
  color: #091D2F;
  border-radius: 25px;
  padding: .7rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: .3rem;
  position: relative;
  max-width: 70%;
}

.chat-pg .chat-inner .chat-body .other-msg .msg::after {
  content: '';
  width: 33px;
  height: 18px;
  background: url(../images/mymsg.png);
  background-size: cover;
  display: block;
  position: absolute;
  bottom: -5px;
  left: -3px;
  -webkit-filter: invert(0) sepia(0%) saturate(7487%) hue-rotate(37deg) brightness(290%) contrast(222%);
          filter: invert(0) sepia(0%) saturate(7487%) hue-rotate(37deg) brightness(290%) contrast(222%);
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.chat-pg .chat-inner .chat-body .time {
  font-size: 10px;
  color: #888;
  padding: 0 15px;
}

.chat-pg .chat-inner .chat-body .chat-img {
  width: 100px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin: 3px;
}

.chat-pg .chat-inner .chat-body .captioned_img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin: 3px;
}

.chat-pg .chat-inner .chat_b {
  background-color: #fff;
  padding: 25px 20px;
}

.chat-pg .chat-inner .chat_b .form-group {
  position: relative;
}

.chat-pg .chat-inner .chat_b .form-group .form-control {
  border: 1px solid #F1EDED;
  background-color: #F1EDED;
  border-radius: 25px;
  height: 50px;
  font-size: 15px;
  resize: none;
  padding: .75rem 4rem .75rem 3rem;
}

.chat-pg .chat-inner .chat_b .form-group .send-butn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #33C5F3;
  border: 1px solid #33C5F3;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}

.chat-pg .chat-inner .chat_b .form-group .send-butn:hover {
  background-color: #091D2F;
  border: 1px solid #091D2F;
}

.chat-pg .chat-inner .chat_b .form-group .upload_img {
  position: absolute;
  left: 15px;
  top: 9px;
  cursor: pointer;
}

.chat-pg .chat-inner .chat_b .form-group .upload_img .uploadImgInput {
  position: absolute;
  opacity: 0;
  left: 0;
  width: 30px;
  cursor: pointer;
}

.chat-pg .chat-inner .chat_b .form-group .upload_img .img-butn {
  color: #999;
  background-color: transparent;
  border: transparent;
  font-size: 20px;
  cursor: pointer;
}

.chat-pg .chat-inner .chat_b .form-group .upload_img .img-butn:hover {
  color: #33C5F3;
}

/**********************************************
    Start Edit questionnaire Page 
**********************************************/
.questionnaire-pg {
  padding: 70px 0;
  position: relative;
}

.questionnaire-pg .questionnaire_card {
  background-color: #fff;
  border-radius: 15px;
  padding: 1rem;
  position: relative;
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  margin-bottom: 20px;
}

.questionnaire-pg .questionnaire_card .card_t {
  border-bottom: 1px dashed #ddd;
  padding: 1.25rem 1.25rem 2rem 1.25rem;
  position: relative;
}

.questionnaire-pg .questionnaire_card .card_t .date {
  text-align: end;
  font-size: 14px;
  color: #888;
  margin-bottom: .3rem;
}

.questionnaire-pg .questionnaire_card .card_t::after, .questionnaire-pg .questionnaire_card .card_t::before {
  content: '';
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #F5F6F8;
  display: block;
  position: absolute;
  bottom: -18px;
}

.questionnaire-pg .questionnaire_card .card_t::after {
  right: -32px;
}

.questionnaire-pg .questionnaire_card .card_t::before {
  left: -32px;
}

.questionnaire-pg .questionnaire_card .card-body {
  padding: 1.25rem 2rem;
}

.questionnaire-pg .questionnaire_card .card-body .custom-control {
  margin-bottom: 1rem;
}

.questionnaire-pg .questionnaire_card .card-body .custom-control .custom-control-label {
  color: #666;
}

.questionnaire-pg .questionnaire_card .card-body .file-input-group .wrap {
  background-color: transparent !important;
  border: 1px solid #eee;
  border-radius: 10px;
}

.questionnaire-pg .questionnaire_card .card-body .file-input-group .wrap .file__input {
  background-color: transparent !important;
}

.questionnaire-pg .questionnaire_card .card-body .form-control {
  border-radius: 10px;
}

.questionnaire-pg .questionnaire_card .card-body textarea {
  background: transparent;
  border: 1px solid #ddd;
}

.questionnaire-pg .questionnaire_card .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(9, 29, 47, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(9, 29, 47, 0.2);
}

.questionnaire-pg .questionnaire_card .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #091D2F;
  background-color: #091D2F;
}

.questionnaire-pg .active-butn {
  border: 1px solid #33C5F3;
  background-color: #33C5F3;
  color: #fff;
}

.questionnaire-pg .active-butn::before, .questionnaire-pg .active-butn::after {
  background-color: #091D2F;
}

.questionnaire-pg .active-butn:hover {
  border: 1px solid #33C5F3;
}

/**********************************************
    Start Edit Package details Page 
**********************************************/
.package-det {
  position: relative;
  padding: 70px 0;
}

.package-det .custom-control {
  padding-right: 0rem;
}

.package-det .custom-control .custom-control-label::before,
.package-det .custom-control .custom-control-label::after {
  display: none;
}

.package-det .custom-control .pkg_card {
  padding: 0 !important;
  border-radius: 15px !important;
  overflow: hidden;
}

.package-det .custom-control .pkg_card::before {
  top: 110px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.package-det .custom-control .pkg_card .card-body {
  position: relative;
  z-index: 5;
}

.package-det .custom-control .custom-control-input {
  width: 100%;
  height: 100%;
}

.package-det .custom-control .custom-control-input:checked ~ .custom-control-label .package-det-card {
  background-color: #091D2F;
}

.package-det .custom-control .custom-control-input:checked ~ .custom-control-label .package-det-card .card-body .list .li {
  color: #ccc;
}

.package-det .custom-control .custom-control-input:checked ~ .custom-control-label .package-det-card .text-dark {
  color: #fff !important;
}

.package-det .custom-control .custom-control-input:checked ~ .custom-control-label .package-det-card .det {
  color: #33C5F3 !important;
}

.package-det .label {
  font-weight: bold !important;
  color: #555;
}

.package-det .box_wrapper {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
}

.package-det .package-det-card {
  padding: 30px 2vw;
  text-align: center;
  cursor: pointer;
}

.package-det .badge {
  background-image: -webkit-gradient(linear, left top, right top, from(#9F2B31), color-stop(#CB2228), to(#A32B31));
  background-image: linear-gradient(to right, #9F2B31, #CB2228, #A32B31);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: .7rem 1.5rem;
  position: relative;
  border-radius: 25px 0;
  font-size: 19px;
  color: #fff;
  margin: 0 auto 20px 0;
}

.package-det .badge small {
  font-size: 70%;
}

.package-det-card {
  padding: 55px 6vw;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}

.package-det-card::before {
  content: '';
  width: 100%;
  height: 90%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  background: url(../images/pattern-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.package-det-card .content {
  position: relative;
  z-index: 2;
}

.package-det-card .content i {
  color: #139dc7;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.package-det-card.dark-bg {
  background-color: #091D2F !important;
}

/**********************************************
    Start Edit Package checkout Page 
**********************************************/
.checkout-pg {
  position: relative;
  padding: 0 0 70px 0;
}

.checkout-pg .pkg-header {
  position: relative;
  padding: 50px 0 90px 0;
}

.checkout-pg .pkg-header .bg, .checkout-pg .pkg-header::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.checkout-pg .pkg-header::before {
  content: '';
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.checkout-pg .pkg-header .content {
  position: relative;
  z-index: 3;
}

.checkout-pg .pkg-header .content .badge {
  background-image: -webkit-gradient(linear, left top, right top, from(#9F2B31), color-stop(#CB2228), to(#A32B31));
  background-image: linear-gradient(to right, #9F2B31, #CB2228, #A32B31);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2.5rem;
  position: relative;
  top: 10px;
  right: 10px;
  border-radius: 25px 0;
  font-size: 25px;
  color: #fff;
}

.checkout-pg .pkg-header .content .badge small {
  font-size: 70%;
}

.checkout-pg .package-det-card {
  margin-top: -40px;
}

.checkout-pg .pay-wrapper .custom-control {
  position: relative;
  margin-bottom: 25px;
}

.checkout-pg .pay-wrapper .custom-control .custom-control-label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background-color: #fff;
  border: 1px solid #33C5F3;
  padding: 30px 15px;
  border-radius: 10px;
}

.checkout-pg .pay-wrapper .custom-control .custom-control-label::after, .checkout-pg .pay-wrapper .custom-control .custom-control-label::before {
  display: none;
}

.checkout-pg .pay-wrapper .custom-control .custom-control-label .icon {
  width: 90px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 5px;
}

.checkout-pg .pay-wrapper .custom-control .custom-control-label .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  border: 1px solid #ccc;
  background-color: #fff;
  position: relative;
}

.checkout-pg .pay-wrapper .custom-control .custom-control-label .circle::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #139dc7;
  position: absolute;
  top: 4.5px;
  left: 4.5px;
  display: block;
  border-radius: 50%;
  opacity: 0;
}

.checkout-pg .pay-wrapper .custom-control .custom-control-input:checked ~ .custom-control-label {
  background-color: #091D2F;
}

.checkout-pg .pay-wrapper .custom-control .custom-control-input:checked ~ .custom-control-label .circle::after {
  opacity: 1;
}

.checkout-pg .pay-wrapper .custom-control .custom-control-input:checked ~ .custom-control-label .title {
  color: #fff;
  font-weight: bold;
}

.checkout-pg .pay-wrapper .discount-code {
  position: relative;
}

.checkout-pg .pay-wrapper .discount-code .form-group {
  position: relative;
}

.checkout-pg .pay-wrapper .discount-code .form-control {
  height: 55px;
  background-color: transparent;
}

.checkout-pg .pay-wrapper .discount-code .disc-butn {
  height: 45px;
  width: 100px;
  background-color: #091D2F;
  border: 1px solid #091D2F;
  color: #fff;
  border-radius: 5px;
  position: absolute;
  left: 5px;
  top: 5px;
}

.checkout-pg .pay-wrapper .discount-code .disc-butn:hover {
  border: 1px solid #33C5F3;
  background-color: #33C5F3;
}

.checkout-pg .pay-wrapper .active-butn {
  border: 1px solid #33C5F3;
  background-color: #33C5F3;
  color: #fff;
}

.checkout-pg .pay-wrapper .active-butn::before, .checkout-pg .pay-wrapper .active-butn::after {
  background-color: #091D2F;
}

.checkout-pg .pay-wrapper .active-butn:hover {
  border: 1px solid #33C5F3;
}

.file-input-group .wrap {
  background-color: #eee;
}

.file-input-group .file {
  position: relative;
  font-weight: 600;
}

.file-input-group .file__input,
.file-input-group .file__value {
  background-color: #eee;
  border-radius: 0px;
  color: #666;
  padding: 0.475rem 1.0625rem;
}

.file-input-group .file__input--file {
  position: absolute;
  opacity: 0;
}

.file-input-group .file__input--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}

.file-input-group .file__input--label:after {
  content: attr(data-text-btn);
  border-radius: 0px;
  background-color: #091D2F;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
  padding: 0.5375rem 1.0625rem;
  color: #fff;
  cursor: pointer;
}

.file-input-group .file__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555;
}

.file-input-group .file__value:hover:after {
  color: #B39465;
}

.file-input-group .file__value:after {
  content: "X";
  cursor: pointer;
}

.file-input-group .file__value:after:hover {
  color: #000;
}

.file-input-group .file__remove {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #33C5F3;
}

/**********************************************
    Start Edit Package schedule Page 
**********************************************/
.schedule-sec .table-responsive {
  border-radius: 25px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 25px 0 rgba(51, 197, 243, 0.3);
          box-shadow: 0 0 25px 0 rgba(51, 197, 243, 0.3);
}

.schedule-sec .table-responsive::-webkit-scrollbar {
  height: 5px;
}

.schedule-sec .table {
  margin-bottom: 0;
}

.schedule-sec .table td {
  padding: 0;
  text-align: center;
  border: none;
  min-width: 100px;
}

.schedule-sec .table .day-label {
  background-color: #f8f8f8;
  border: 1px solid #eee !important;
  display: block;
  padding: 2rem 1rem;
  color: #666;
  height: 100%;
  font-weight: bold;
  font-size: 15px;
}

.schedule-sec .table .day-label:hover {
  background-color: #33C5F3 !important;
  color: #fff !important;
}

.schedule-sec .table .day-label.disable-td {
  color: #888;
  background-color: #f5f5f5;
}

.schedule-sec .table .day-label.disable-td:hover {
  color: #888 !important;
  background-color: #f5f5f5 !important;
}

/**********************************************
    Start Edit Package exercise Page 
**********************************************/
.exercise-sec {
  position: relative;
  padding: 70px 0;
}

.exercise-sec .exercise_card {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.exercise-sec .exercise_card .video-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.exercise-sec .exercise_card .more-butn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #33C5F3;
  color: #fff;
  font-size: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  border-radius: 10px;
  opacity: .6;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.exercise-sec .exercise_card .more-butn:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.exercise-sec .exercise_card .overlay-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  padding: 0 15px 6px;
  -webkit-transform: perspective(500px) rotateX(90deg);
          transform: perspective(500px) rotateX(90deg);
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  z-index: 1;
  height: 110px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #091D2F;
}

.exercise-sec .exercise_card .overlay-text .subtitle {
  color: #ccc;
  font-size: 15px;
}

.exercise-sec .exercise_card .overlay-text .title {
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
  margin-top: .5rem;
}

.exercise-sec .exercise_card::before {
  content: "";
  bottom: 0;
  position: absolute;
  max-width: 100%;
  height: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.exercise-sec .exercise_card:hover .video-img {
  -webkit-animation: imagemove 3s ease-out alternate infinite running;
          animation: imagemove 3s ease-out alternate infinite running;
}

.exercise-sec .exercise_card:hover .more-butn {
  opacity: 1;
  margin-top: -20px;
}

.exercise-sec .exercise_card:hover::before {
  opacity: 1;
  z-index: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  height: 100%;
}

.exercise-sec .exercise_card:hover .overlay-text {
  -webkit-transform: perspective(500px) rotateX(0);
          transform: perspective(500px) rotateX(0);
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact-sec {
  position: relative;
  padding: 70px 0;
}

.contact-sec .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .form-container {
  padding: 25px 0;
}

.contact-sec .form-container .label {
  font-weight: bold;
  font-size: 13px;
  color: #888;
}

.contact-sec .form-container .form-control {
  font-size: 13px;
  background-color: #f3f3f3;
  border: 1px solid #eee;
}

.contact-sec .form-container .form-control:focus {
  border: 1px solid #33C5F3 !important;
}

.contact-sec .form-container select, .contact-sec .form-container input {
  height: 55px;
}

.contact-sec .contact_item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact-sec .contact_item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 15px;
  text-align: center;
  background-color: #33C5F3;
  color: #Fff;
  position: relative;
  z-index: 2;
}

.contact-sec .contact_item .icon::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-color: rgba(51, 197, 243, 0.2);
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: -1;
}

.contact-sec .contact_item .text-box {
  padding: 0 10px;
}

.contact-sec .contact_item .text-box .title {
  font-weight: bold;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about-pg {
  position: relative;
  padding: 70px 0;
}

.about-pg .play-btn {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.about-pg .play-btn:before, .about-pg .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0587B8;
}

.about-pg .play-btn:hover:before {
  background-color: #091D2F;
}

.about-pg .play-btn:before {
  z-index: 1;
}

.about-pg .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

.about-pg .play-btn i {
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-pg .about_card .box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 100%;
  margin-bottom: 35px;
}

.about-pg .about_card .box-item .flip-box {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.about-pg .about_card .box-item .flip-box-front,
.about-pg .about_card .box-item .flip-box-back {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.about-pg .about_card .box-item .flip-box-front {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  background-color: #b0e4f5;
}

.about-pg .about_card .box-item .flip-box:hover .flip-box-front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.about-pg .about_card .box-item .flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.about-pg .about_card .box-item .flip-box:hover .flip-box-back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.about-pg .about_card .box-item .flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 35px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
          transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}

.about-pg .about_card .text-box {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

.about-pg .about_card .text-box .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 15px;
  display: block;
  margin: auto;
  background-color: #33C5F3;
}

.about-pg .about_card .text-box .icon img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(75deg) brightness(108%) contrast(105%);
          filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(75deg) brightness(108%) contrast(105%);
}

.about-pg .about_card .text-box .content {
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
  -webkit-transition: all 0.1s cubic-bezier(0.5, 0.12, 0.46, 0.88) 0.2s;
  transition: all 0.1s cubic-bezier(0.5, 0.12, 0.46, 0.88) 0.2s;
}

.about-pg .about_card .text-box .content .title {
  font-weight: bold;
  color: #333;
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

.about-pg .about_card .text-box .content .p {
  margin-bottom: 0;
  color: #333;
  font-size: 12px;
  line-height: 2rem;
}

.about-pg .about_card .back_inner::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
}

.about-pg .about_card .back_inner .content {
  position: relative;
  z-index: 2;
}

.about-pg .about_card .back_inner .content .title {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
}

.about-pg .about_card .back_inner .content .p {
  color: #ddd;
  font-size: 12px;
}

.about-pg .about_card .back_inner .content .more-butn {
  text-align: center;
  display: block;
  color: #33C5F3;
  font-weight: bold;
}

.about-pg .about_card .back_inner .content .more-butn:hover {
  color: #0A7499;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content-sec {
  position: relative;
  padding: 70px 0;
}

.content-sec .inner {
  padding: 50px 40px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 25px 0 rgba(51, 197, 243, 0.3);
          box-shadow: 0 0 25px 0 rgba(51, 197, 243, 0.3);
  background-color: #fff;
}

.content-sec .inner .p {
  line-height: 2.3rem;
  font-size: 14px;
  color: #888;
}

.content-sec::before {
  content: '';
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #091D2F;
  display: block;
}

/**********************************************
    Start Edit notifications Page 
**********************************************/
.notifications-pg {
  position: relative;
  padding: 70px 0;
}

.notifications-pg .inner {
  padding: 50px;
  background-color: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 25px 0 #ddd;
          box-shadow: 0 0 25px 0 #ddd;
}

.noti-item {
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 15px 0px #ddfdfc;
          box-shadow: 0px 5px 15px 0px #ddfdfc;
  padding: 25px 20px;
  background-color: #F8F8F8;
  margin-bottom: 25px;
  position: relative;
}

.noti-item .deleteButton {
  background-color: transparent;
  border: transparent;
  color: #ccc;
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 20px;
}

.noti-item .deleteButton:hover {
  color: #ce3b3b;
}

.noti-item .dateTime p {
  margin: 0 10px;
  display: inline-block;
}

.noti-item .dateTime p i {
  color: #33C5F3;
  margin: 0 5px;
}

.noti-item .noti-body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.noti-item .noti-body .icon {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.noti-item .noti-body .text {
  margin: 0 20px;
}

.noti-item .noti-body .text .title {
  font-weight: bold;
}

.noti-item .noti-body .text .p {
  margin-bottom: 0;
}

.noti-item.alertItem {
  background-color: #E5EFFA;
  -webkit-box-shadow: 0px 5px 15px 0px #e6eef7;
          box-shadow: 0px 5px 15px 0px #e6eef7;
}

.noti-item.canceledItem {
  background-color: #FCEDEA;
  -webkit-box-shadow: 0px 5px 15px 0px #ffecec;
          box-shadow: 0px 5px 15px 0px #ffecec;
}


/*  Collapse */
.weekCard .card-header {
  background-color: #f9f9f9;
}

.weekCard .card-header .btn-link {
  color: #202020;
  font-weight: bold;
  text-decoration: none !important;
}

.weekCard .card-header .btn-link:hover {
  color: #33C5F3;
}

.dayCard {
  padding: 10px 0;
  border: 1px solid #eee !important;
  border-radius: 10px !important;
  margin-bottom: 10px;
}

.dayCard .card-header {
  background: transparent !important;
  padding: 0rem 1.25rem;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}

.dayCard .card-header .btn-link {
  color: #444;
}

/**********************************************
    Start Edit Dark Theme 
**********************************************/
.themeToggler {
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 31px;
  margin: 0 15px 0 0;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler .slider:before {
  position: absolute;
  content: "Dark";
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  left: -10px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #33C5F3;
  background-color: #0F0F08;
  color: #33C5F3;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #E8BA27;
          box-shadow: 0 0 1px #E8BA27;
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  content: "Light";
  background-color: #33C5F3;
  border: 1px solid #33C5F3;
  color: #fff;
}

.themeToggler .slider.round {
  border-radius: 10px;
}

.themeToggler .slider.round:before {
  border-radius: 10px;
}

.theme-dark {
  /************* Start Edit Home Page *************/
  /************* Start Edit Chat Page *************/
  /************* Start Edit checkout Page *************/
  /************* Start Edit Package details Page *************/
  /************* Start Edit profile Page *************/
  /************* Start Edit questionnaire Page *************/
  /************* Start Edit register Page *************/
  /************* Start Edit schedule Page *************/
  /************* Start Edit content Page *************/
  /************* Start Edit contact Page *************/
  /************* Start Edit about Page *************/
  /************* Start Edit notifications Page *************/
}

.theme-dark body {
  background-color: #101010;
}

.theme-dark p {
  color: #999;
}

.theme-dark .modal-content {
  background-color: #091D2F;
}

.theme-dark .navbar {
  background-color: #05121d;
}

.theme-dark .navbar .logo-white {
  display: block !important;
}

.theme-dark .navbar .logo-dark {
  display: none;
}

.theme-dark .navbar .nav-link {
  color: #ddd;
}

.theme-dark .navbar .nav-link .icon {
  -webkit-filter: invert(40%) sepia(49%) saturate(66%) hue-rotate(383deg) brightness(227%) contrast(143%);
          filter: invert(40%) sepia(49%) saturate(66%) hue-rotate(383deg) brightness(227%) contrast(143%);
}

.theme-dark .navbar .links,
.theme-dark .navbar .sign_butn,
.theme-dark .navbar .lang_butn {
  color: #ccc;
}

.theme-dark .navbar .links .noti_butn .icon {
  -webkit-filter: invert(87%) sepia(0%) saturate(2522%) hue-rotate(18deg) brightness(98%) contrast(86%);
          filter: invert(87%) sepia(0%) saturate(2522%) hue-rotate(18deg) brightness(98%) contrast(86%);
}

.theme-dark .navbar .dropdown .dropdown-menu {
  background-color: #091D2F;
  -webkit-box-shadow: 0 0 15px 0 #092036;
          box-shadow: 0 0 15px 0 #092036;
}

.theme-dark .navbar .dropdown .dropdown-menu .title,
.theme-dark .navbar .dropdown .dropdown-menu .more-noti {
  color: #fff;
}

.theme-dark .navbar .dropdown .dropdown-menu .noti-item {
  background-color: #05121d;
  -webkit-box-shadow: 0px 5px 15px 0px #092036;
          box-shadow: 0px 5px 15px 0px #092036;
}

.theme-dark .about-sec .text-box .subitlte {
  color: #eee;
}

.theme-dark .about-sec .text-box .title {
  color: #fff;
}

.theme-dark .pkg_card {
  background-color: #000;
}

.theme-dark .pkg_card .card-body .list {
  color: #888;
}

.theme-dark .pkg_card:hover {
  -webkit-box-shadow: 0 20px 25px 0 #202020;
          box-shadow: 0 20px 25px 0 #202020;
}

.theme-dark .feedback-sec .item .main-img {
  border: 4px solid #000;
}

.theme-dark .feedback-sec .item .feedback_inner {
  background-color: #000;
}

.theme-dark .feedback-sec .item .feedback_inner .name {
  color: #fff;
}

.theme-dark .calorie-calculator .cal-result {
  background-color: #02070c;
}

.theme-dark .calorie-calculator .cal-result .content .title {
  color: #999;
}

.theme-dark .calorie-calculator .cal-result .result {
  color: #fff;
}

.theme-dark .footer .content .links a,
.theme-dark .footer .content .social-links a {
  color: #ccc;
}

.theme-dark .footer .copyright {
  border-top: 1px solid #555;
  color: #eee;
}

.theme-dark .chat-pg .chats-wrapper {
  background-color: #000;
}

.theme-dark .chat-pg .chats-wrapper .search-form .form-control {
  background-color: #333;
  border: 1px solid #333;
}

.theme-dark .chat-pg .chats-wrapper .single-chat .card_t .text-content .name {
  color: #fff;
}

.theme-dark .chat-pg .chats-wrapper .single-chat.active {
  -webkit-box-shadow: 0 0 25px 0 #202020;
          box-shadow: 0 0 25px 0 #202020;
}

.theme-dark .chat-pg .chat-inner .chat_t {
  background-color: #000;
  -webkit-box-shadow: 0 10px 20px 0 #101010;
          box-shadow: 0 10px 20px 0 #101010;
}

.theme-dark .chat-pg .chat-inner .chat_t .text-content .name {
  color: #fff;
}

.theme-dark .chat-pg .chat-inner .chat-body {
  background-color: #202020;
}

.theme-dark .chat-pg .chat-inner .chat-body .my-msg .msg,
.theme-dark .chat-pg .chat-inner .chat-body .other-msg .msg {
  -webkit-box-shadow: 0 0 25px 0 #000;
          box-shadow: 0 0 25px 0 #000;
}

.theme-dark .chat-pg .chat-inner .chat_b {
  background-color: #000;
}

.theme-dark .chat-pg .chat-inner .chat_b .form-group .form-control {
  border: 1px solid #202020;
  background-color: #202020;
}

.theme-dark .checkout-pg .sec-heading .title {
  color: #fff;
}

.theme-dark .checkout-pg .pay-wrapper .custom-control .custom-control-label {
  background-color: #202020;
}

.theme-dark .checkout-pg .pay-wrapper .custom-control .custom-control-label .title {
  color: #ddd;
}

.theme-dark .checkout-pg .pay-wrapper .label,
.theme-dark .checkout-pg .pay-wrapper .disc {
  color: #ddd;
}

.theme-dark .checkout-pg .pay-wrapper .file-input-group .file__input,
.theme-dark .checkout-pg .pay-wrapper .file-input-group .file__value {
  color: #888;
  background-color: #202020;
}

.theme-dark .package-det-card {
  background-color: #202020;
}

.theme-dark .package-det-card .content .text-dark {
  color: #fff !important;
}

.theme-dark .package-det .label {
  color: #fff;
}

.theme-dark .package-det .box_wrapper {
  border: 1px solid #333;
}

.theme-dark .profile-pg {
  background-color: #101010;
}

.theme-dark .profile-pg .sec-heading .title {
  color: #fff;
}

.theme-dark .profile-pg .nav-link::after,
.theme-dark .profile-pg .nav-link::before {
  -webkit-filter: invert(7%) sepia(2%) saturate(0%) hue-rotate(350deg) brightness(8%) contrast(87%);
          filter: invert(7%) sepia(2%) saturate(0%) hue-rotate(350deg) brightness(8%) contrast(87%);
}

.theme-dark .profile-pg .nav-link.active {
  color: #33C5F3 !important;
  background-color: #212121 !important;
}

.theme-dark .profile-pg .tab-wrapper {
  background-color: #212121;
}

.theme-dark .profile-pg .tab-wrapper.data-tab .data-group .data {
  background-color: #101010;
  color: #ddd;
}

.theme-dark .profile-pg .tab-wrapper.data-tab .data-group .label {
  color: #eee;
}

.theme-dark .profile-pg .tab-wrapper.data-tab .form-wrapper .form-control {
  border: 1px solid #000;
  color: #fff;
  background-color: #101010;
}

.theme-dark .profile-pg .tab-wrapper.pkg-tab .pkg_card {
  border: 1px solid #091D2F;
}

.theme-dark .logoutModal .title {
  color: #fff;
}

.theme-dark .questionnaire-pg .questionnaire_card {
  background-color: #000;
  -webkit-box-shadow: 0 0 15px 0 #101010;
          box-shadow: 0 0 15px 0 #101010;
}

.theme-dark .questionnaire-pg .questionnaire_card .card_t {
  border-bottom: 1px dashed #333;
}

.theme-dark .questionnaire-pg .questionnaire_card .card_t .title {
  color: #fff;
}

.theme-dark .questionnaire-pg .questionnaire_card .card_t::after, .theme-dark .questionnaire-pg .questionnaire_card .card_t::before {
  background-color: #101010;
}

.theme-dark .questionnaire-pg .questionnaire_card .card-body .form-control {
  background: transparent;
  border: 1px solid #444;
}

.theme-dark .questionnaire-pg .questionnaire_card .card-body .custom-control .custom-control-label {
  color: #ccc;
}

.theme-dark .questionnaire-pg .questionnaire_card .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #33C5F3;
  background-color: #33C5F3;
}

.theme-dark .register-pg .inner .form-wrapper .submit-butn::before,
.theme-dark .register-pg .inner .form-wrapper .submit-butn::after {
  background-color: #091D2F;
}

.theme-dark .register-pg .inner .form-wrapper .submit-butn:hover {
  color: #fff !important;
}

.theme-dark .schedule-sec .table-responsive {
  border: 1px solid #333;
}

.theme-dark .schedule-sec .day-label {
  background-color: #091D2F;
  color: #fff;
  border: 1px solid #333 !important;
}

.theme-dark .schedule-sec .day-label.disable-td {
  color: #888;
  background-color: #020f1b;
}

.theme-dark .schedule-sec .day-label.disable-td:hover {
  color: #888 !important;
  background-color: #020f1b !important;
}

.theme-dark .content-sec .inner {
  background-color: #040d14;
}

.theme-dark .content-sec .inner .p {
  color: #ccc;
}

.theme-dark .contact-sec .sec-heading .title {
  color: #fff;
}

.theme-dark .contact-sec .form-container .form-control {
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff;
}

.theme-dark .contact-sec .form-container .form-control::-webkit-input-placeholder {
  color: #888;
}

.theme-dark .contact-sec .form-container .form-control:-ms-input-placeholder {
  color: #888;
}

.theme-dark .contact-sec .form-container .form-control::-ms-input-placeholder {
  color: #888;
}

.theme-dark .contact-sec .form-container .form-control::placeholder {
  color: #888;
}

.theme-dark .contact-sec .contact_item .text-box .title {
  color: #fff;
}

.theme-dark .about-pg .about_card .box-item .flip-box-front {
  background-color: #091D2F;
}

.theme-dark .about-pg .about_card .text-box .content .title {
  color: #fff;
}

.theme-dark .about-pg .about_card .text-box .content .p {
  color: #ccc;
}

.theme-dark .notifications-pg .inner {
  background-color: #202020;
  -webkit-box-shadow: 0 0 25px 0 #000;
          box-shadow: 0 0 25px 0 #000;
}

.theme-dark .notifications-pg .inner .sec-heading .title {
  color: #fff;
}

.theme-dark .notifications-pg .inner .noti-item {
  -webkit-box-shadow: 0px 5px 15px 0px #202020;
          box-shadow: 0px 5px 15px 0px #202020;
  background-color: #333;
}

.theme-dark .notifications-pg .inner .noti-item .noti-body .text .title {
  color: #fff;
}

.theme-dark .notifications-pg .inner .noti-item .noti-body .text .p {
  color: #ddd;
}
/*# sourceMappingURL=style.css.map */