@font-face {
  font-family: "light";
  src: url(../Fonts/tajawal/Tajawal-Light.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/tajawal/Tajawal-Regular.ttf);
}

@font-face {
  font-family: "medium";
  src: url(../Fonts/tajawal/Tajawal-Medium.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/tajawal/Tajawal-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: rtl;
  text-decoration: none;
  font-family: "light";
}

::-moz-selection {
  color: #fff;
  background-color: #F39C74;
}

::selection {
  color: #fff;
  background-color: #F39C74;
}

.main_color {
  color: #f16f5c !important;
}

.section-padding {
  padding: 80px 0;
}

.bg-gray {
  background-color: #f9f9f9;
}

/* ----------- datepicker ----------- */
.ui-widget.ui-widget-content {
  border-radius: 10px;
  min-width: 315px;
}

.ui-widget-header {
  background: linear-gradient(170deg, #9b438d 35%, #f16f5c 100%);
  border: 0;
  font-weight: 100;
  color: #fff;
  border-radius: 15px;
}

.ui-widget-header .ui-icon {
  -webkit-filter: brightness(1000%);
          filter: brightness(1000%);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 0;
  font-size: 12px;
  padding: 5px;
  border-radius: 5px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background: #f16f5c;
}

/***************************** Global Style *****************************/
h1,
h2,
h3 {
  font-family: "bold";
}

h4,
h5,
h6 {
  font-family: "medium";
}

p {
  font-size: 12px;
  font-family: 'regular';
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

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 #F39C74;
}

.butn {
  width: 150px;
  height: 55px;
  line-height: 55px;
  border: 1px solid #F39C74;
  color: #F39C74;
  background-color: #fff;
  font-weight: bold;
  font-weight: bold;
  border-radius: 15px;
  text-align: center;
}

.butn.active {
  background-color: #F39C74;
  color: #fff;
}

/***************************** Animations *****************************/
@-webkit-keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@-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 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@-webkit-keyframes flip-in-ver-right {
  0% {
    -webkit-transform: rotateY(-80deg);
            transform: rotateY(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 1;
  }
}

@keyframes flip-in-ver-right {
  0% {
    -webkit-transform: rotateY(-80deg);
            transform: rotateY(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 1;
  }
}

.flip-in-ver-right {
  -webkit-animation: flip-in-ver-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: flip-in-ver-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-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);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container {
  position: relative;
  z-index: 9;
}

.navs-container .navbar {
  background-color: #fff;
}

.navs-container .navbar .navbar-brand img {
  width: 118px;
  height: 83px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  margin: 0px 5px;
  padding: .5rem 1.2rem;
  text-align: center;
  position: relative !important;
}

.navs-container .navbar .nav-link::after, .navs-container .navbar .nav-link::before {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.navs-container .navbar .nav-link.active, .navs-container .navbar .nav-link:hover {
  font-weight: bold;
  color: #F39C74;
}

.navs-container .navbar .nav-link.active::after, .navs-container .navbar .nav-link:hover::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
}

.navs-container .navbar .nav-link.active::before, .navs-container .navbar .nav-link:hover::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/icons/left-nav2-active.svg);
  background-position: left;
  background-size: contain;
  display: inline-block;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
}

.navs-container .navbar .nav-link.active::after, .navs-container .navbar .nav-link.active::before, .navs-container .navbar .nav-link:hover::after, .navs-container .navbar .nav-link:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .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);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #F39C74;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #F39C74;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  background-color: #fff;
  padding: 80px 0px 0px 0px;
  border-top: 1px solid #cccc;
}

footer .content {
  margin-bottom: 20px;
}

footer .content.middle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

footer .content .logo {
  width: 180px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

footer .content p {
  color: #555;
  line-height: 1.5rem;
}

footer .content .icons a {
  color: #333;
  margin-left: 10px;
}

footer .content .icons a:hover {
  color: #9B438D;
}

footer .content h6 {
  color: #202020;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

footer .content h6::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #9B438D;
  position: relative;
  right: 0;
  top: 20px;
  display: block;
}

footer .content .links {
  display: -ms-grid;
  display: grid;
}

footer .content .links a {
  display: block;
  font-size: 13px;
  color: #222;
  margin: 5px 0px;
}

footer .content .links a:hover {
  color: #9B438D;
  font-weight: bold;
}

footer .content .form-group {
  position: relative;
}

footer .content .form-group .form-control {
  font-size: 12px;
  padding-right: 120px;
  height: 50px;
}

footer .content .form-group .submit-btn {
  width: 100px;
  height: 50px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(180deg, #9b438d 35%, #f16f5c 100%);
  border: 1px solid #F39C74;
  position: absolute;
  top: 0;
  right: 0;
}

footer .copyright {
  background-color: #222222;
  padding: 40px 0px 20px 0px;
  position: relative;
  margin-top: 30px;
}

footer .copyright .scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  color: #fff;
  text-align: center;
  line-height: 45px;
  position: absolute;
  bottom: 55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

footer .copyright .scroll-top-btn:hover {
  border-radius: 50%;
}

footer .copyright p {
  color: #888;
}

/***************************** Start Home Page *****************************/
header {
  padding-bottom: 50px;
  overflow: hidden;
  position: relative;
}

header img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}

header .header-cards {
  margin-top: -50px;
}

header .header-cards .card {
  border-radius: 25px 25px 0px 0px;
  border: none;
  text-align: center;
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

header .header-cards .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

header .header-cards .card .inner {
  padding: 3.75rem 2.75rem;
  width: 100%;
  position: relative;
  z-index: 9;
}

header .header-cards .card .inner .icon {
  width: 100px;
  height: 70px;
  margin: 0px auto 10px auto;
  -webkit-transition: all .4s;
  transition: all .4s;
  -o-object-fit: contain;
     object-fit: contain;
}

header .header-cards .card .inner p {
  -webkit-transition: all .4s;
  transition: all .4s;
  line-height: 1.8rem;
}

header .header-cards .card .inner .more-btn {
  color: #DF857E;
  width: 160px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #df857e;
  border-radius: 25px;
  margin: auto;
  font-size: 14px;
  display: block;
  -webkit-transition: all .4s;
  transition: all .4s;
}

header .header-cards .card .inner .more-btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header .header-cards .card .flip-front {
  -webkit-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
  margin-bottom: 0;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  -webkit-transition: all .3s linear .1s;
  transition: all .3s linear .1s;
  -webkit-transform: perspective(500px) rotateX(0deg);
          transform: perspective(500px) rotateX(0deg);
}

header .header-cards .card .flip-back {
  position: absolute;
  top: 0;
  left: 0;
  bottom: inherit;
  width: 100%;
  background-color: #0e0e0e;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  -webkit-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
  opacity: 0;
  -webkit-transform: perspective(500px) rotateX(-90deg);
          transform: perspective(500px) rotateX(-90deg);
}

header .header-cards .card .flip-back .text-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 2rem 0rem;
  background-color: #000;
  opacity: .8;
}

header .header-cards .card .flip-back .text-wrapper .icon {
  width: 100px;
  height: 70px;
  margin: 0px auto 10px auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(100%) sepia(0%) saturate(7473%) hue-rotate(144deg) brightness(203%) contrast(119%);
          filter: invert(100%) sepia(0%) saturate(7473%) hue-rotate(144deg) brightness(203%) contrast(119%);
}

header .header-cards .card .flip-back .text-wrapper h5 {
  margin-bottom: 0;
  color: #fff;
  margin-bottom: 20px;
}

header .header-cards .card .flip-back .text-wrapper .icon-more img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

header .header-cards .card .flip-back .text-wrapper .icon-more:hover img {
  -webkit-animation: rotate-in-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: rotate-in-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

header .header-cards .card:hover .flip-front {
  opacity: 0;
  -webkit-transform: perspective(500px) rotateX(-90deg);
          transform: perspective(500px) rotateX(-90deg);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}

header .header-cards .card:hover .flip-back {
  opacity: 1;
  -webkit-transform: perspective(500px) rotateX(0deg);
          transform: perspective(500px) rotateX(0deg);
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.about {
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}

.about .about-img {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  right: -100px;
}

.about .text-inner {
  padding: 1.275rem;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about .text-inner h4 {
  margin: 1.3rem 0rem;
}

.about .text-inner h5 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  font-family: 'bold';
}

.about .text-inner h5::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.about .text-inner p {
  margin-top: 1.5rem;
  line-height: 1.8rem;
  font-size: 13px;
}

.about .text-inner .more-butn {
  color: #fff;
  width: 160px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #df857e;
  background-color: #F39C74;
  border-radius: 25px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin-top: 25px;
}

.about .text-inner .more-butn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.about .text-inner .more-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.consultation {
  padding: 50px 0px;
}

.consultation .card {
  position: relative;
  border: none;
  background: transparent;
}

.consultation .card .card-img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.consultation .card .text {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  color: #fff;
  margin: auto;
  width: 90%;
  padding: 2.75rem 1.375rem;
  border-radius: 20px;
  position: relative;
  top: -100px;
}

.consultation .card .text p {
  color: #fff;
  margin: 1rem 0rem .8rem 0rem;
}

.consultation .card .text .price b {
  font-size: 25px;
}

.consultation .card .more-btn {
  width: 0px;
  height: 0px;
  line-height: 60px;
  border: 1px solid #F39C74;
  color: #F39C74;
  font-weight: bold;
  background-color: #fff;
  margin: auto;
  display: block;
  position: absolute;
  bottom: -25px;
  border-radius: 18px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 0;
}

.consultation .card:hover .more-btn {
  opacity: 1;
  width: 200px;
  height: 60px;
}

.ways {
  padding-top: 70px;
  background-color: #000000;
}

.ways .ways-inner {
  background-color: #fff;
  position: relative;
  padding: 3.75rem 2.375rem;
  border-radius: 20px;
  margin-bottom: -50px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.ways .ways-inner .card {
  width: 200px;
  border: 2px solid #F08B80;
  text-align: center;
  border-radius: 10px;
  padding: 3.375rem 0rem;
  background-color: #fff;
  margin: 0px auto 20px auto;
}

.ways .ways-inner .card img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px auto 10px auto;
}

.ways .ways-inner .card h6 {
  margin-bottom: 0;
}

.ways .ways-inner .card::after {
  content: '';
  background: url(../images/ways-pattern.png);
  width: 100%;
  height: 100%;
  position: absolute;
  left: -54px;
  background-repeat: no-repeat;
  background-size: contain;
}

.ways .ways-inner .card.last::after {
  display: none;
}

.ways .ways-inner .card:hover img {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

.calories {
  padding: 150px 0px 80px 0px;
  background-color: #333333;
  position: relative;
  overflow: hidden;
}

.calories .text-heading h4 {
  color: #fff;
}

.calories .text-heading p {
  margin-top: 15px;
  color: #ddd;
}

.calories .form-wrapper {
  position: relative;
  z-index: 9;
}

.calories .form-wrapper .form-group {
  margin-bottom: 30px;
}

.calories .form-wrapper .form-group.custom-radios {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-radius: 25px;
  margin-bottom: 40px;
}

.calories .form-wrapper .form-group.custom-radios .card-input-element {
  display: none;
}

.calories .form-wrapper .form-group.custom-radios label {
  margin-bottom: 0;
}

.calories .form-wrapper .form-group.custom-radios .single-select {
  padding: .9rem 2.375rem;
  border-radius: 25px;
  cursor: pointer;
}

.calories .form-wrapper .form-group.custom-radios .single-select img {
  width: 25px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(33%) sepia(4%) saturate(12%) hue-rotate(359deg) brightness(49%) contrast(80%);
          filter: invert(33%) sepia(4%) saturate(12%) hue-rotate(359deg) brightness(49%) contrast(80%);
}

.calories .form-wrapper .form-group.custom-radios .card-input-element:checked + .single-select {
  background-color: #F39C74;
  color: #fff;
  font-weight: bold;
}

.calories .form-wrapper .form-group.custom-radios .card-input-element:checked + .single-select img {
  -webkit-filter: invert(0%) sepia(94%) saturate(0%) hue-rotate(231deg) brightness(118%) contrast(100%);
          filter: invert(0%) sepia(94%) saturate(0%) hue-rotate(231deg) brightness(118%) contrast(100%);
}

.calories .form-wrapper .form-group .form-control {
  height: 60px;
  background-color: #eee;
  opacity: .95;
}

.calories .form-wrapper .form-group .submit-btn {
  width: 100%;
  height: 60px;
  border-radius: 20px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-weight: bold;
}

.calories .form-wrapper .form-group .submit-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-color: transparent;
}

.calories .form-wrapper .table {
  border: 1px solid #ddd;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.calories .form-wrapper .table th,
.calories .form-wrapper .table td {
  text-align: center;
  background-color: #333333;
  border: 1px solid #dee2e6;
  font-size: 15px;
  padding: 1.2rem .75rem;
}

.calories .form-wrapper .butn {
  color: #fff;
  width: 160px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #df857e;
  background-color: #F39C74;
  border-radius: 25px;
  font-size: 14px;
  display: block;
  margin: auto;
  text-align: center;
  margin-top: 25px;
}

.calories .form-wrapper .butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.calories .form-wrapper .calories-result {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 0rem;
  text-align: center;
}

.calories .form-wrapper .calories-result p {
  font-size: 14px;
  margin-bottom: 0;
  color: #000;
}

.calories .form-wrapper .calories-result p b {
  color: #F39C74;
}

.calories .form-wrapper .all-result p {
  margin-bottom: 0;
  color: #fff;
  line-height: 83px;
  font-size: 14px;
}

.calories .form-wrapper .all-result p i {
  color: #F39C74;
  font-size: 12px;
}

.calories .calories-l {
  position: absolute;
  right: -15px;
  bottom: 0;
  height: 92%;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  pointer-events: none;
}

.application {
  padding: 80px 0px;
  background: url(../images/app-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.application .text-heading {
  position: relative;
  z-index: 9;
  margin-bottom: 20px;
}

.application .text-heading h4 {
  margin: unset;
}

.application .text-inner {
  position: relative;
  z-index: 9;
}

.application .text-inner h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.application .text-inner p {
  color: #ddd;
  margin-bottom: 2.5rem;
}

.application .text-inner .buttons a {
  width: 200px;
  height: 75px;
  margin-left: 10px;
}

.application .text-inner .buttons a img {
  width: 200px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}

.application .text-inner .buttons a:hover img {
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.application .text-inner .note {
  font-size: 13px;
  margin-bottom: 1rem;
}

.application .text-inner .note i {
  color: #F39C74;
}

.application .text-inner h5 {
  color: #fff;
}

.application .app-r {
  position: absolute;
  bottom: 0;
  right: 0;
}

.partners {
  padding: 70px 0px;
}

.partners .swiper-button-next,
.partners .swiper-button-prev {
  background-size: 15px 30px;
  -webkit-filter: invert(80%) sepia(6%) saturate(6775%) hue-rotate(312deg) brightness(106%) contrast(91%);
          filter: invert(80%) sepia(6%) saturate(6775%) hue-rotate(312deg) brightness(106%) contrast(91%);
}

.partners img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.partners img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/***************************** Start Trainer Page *****************************/
body .heading-pg {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  padding: 120px 0px;
  position: relative;
  text-align: center;
}

body .heading-pg h4 {
  color: #fff;
  position: relative;
  z-index: 9;
  font-size: 3vw;
}

body .heading-pg::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: .7;
  position: absolute;
  top: 0;
  right: 0;
}

body .heading-pg .breadcrumb {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 9;
}

body .heading-pg .breadcrumb .breadcrumb-item {
  font-size: 20px;
}

body .heading-pg .breadcrumb .breadcrumb-item a {
  color: #fff;
}

body .heading-pg .breadcrumb .breadcrumb-item.active {
  color: #F08B80;
  font-weight: bold;
}

body .heading-pg .breadcrumb .breadcrumb-item::before {
  color: #999;
  content: "|";
}

body .heading-pg .breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}

body section .circle-card .progress {
  width: 100%;
  height: 225px;
  background-color: #fff;
}

body section .circle-card .progress .track,
body section .circle-card .progress .fill {
  fill: #fff;
  stroke-width: 3;
  -webkit-transform: rotate(90deg) translate(0px, -80px);
          transform: rotate(90deg) translate(0px, -80px);
}

body section .circle-card .progress .track {
  stroke: #eee;
}

body section .circle-card .progress .fill {
  stroke: white;
  stroke-dasharray: 219.99078369140625;
  stroke-dashoffset: -219.99078369140625;
  -webkit-transition: stroke-dashoffset 1s;
  transition: stroke-dashoffset 1s;
}

body section .circle-card .progress.blue .fill {
  stroke: #F39C74;
}

body section .circle-card .progress .value,
body section .circle-card .progress .text {
  fill: #F39C74;
  text-anchor: middle;
  font-family: monospace;
  font-weight: bold;
}

body section .circle-card .progress .text {
  font-size: 11px;
  fill: #222;
}

body section .circle-card .noselect {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
}

body section .contact-links-sec {
  margin-top: 15px;
}

body section .contact-links-sec .item {
  margin-bottom: 30px;
  display: block;
}

body section .contact-links-sec .item .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 75px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  background-color: #F08B80;
  background-image: linear-gradient(-72deg, #F08B80 0%, #9B438D 99%);
  position: relative;
  border-radius: 5px;
}

body section .contact-links-sec .item .icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fcf4f3;
  top: -10px;
  right: -10px;
  z-index: -1;
  border-radius: 5px;
}

body section .contact-links-sec .item .text {
  padding: 0px 15px;
  display: inline-block;
  position: relative;
  top: 10px;
}

body section .contact-links-sec .item .text p {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 15px;
  color: #999;
}

body section .contact-links-sec .item .text a {
  font-weight: bold;
  font-size: 15px;
  color: #999;
  margin: 0px 4px;
}

body section .contact-links-sec .item .text a:hover {
  color: #F39C74;
}

body section .text-heading {
  height: 55px;
  margin-bottom: 40px;
}

body section .text-heading h4 {
  position: relative;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2.5rem;
  color: #F39C74;
}

body section .text-heading h4::after {
  content: '';
  width: 35px;
  height: 35px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.trainer-pg {
  padding: 70px 0px;
}

.trainer-pg .image-content {
  width: 100%;
  height: 400px;
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid #f16f5c;
  padding: 5px;
}

.trainer-pg .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}

.trainer-pg .text-content {
  padding: 10px 0px;
}

.trainer-pg .text-content h3 {
  font-size: 3vw;
}

.trainer-pg .text-content h6 {
  color: #F08B80;
  font-size: 1.5vw;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trainer-pg .text-content p {
  font-size: 14px;
  line-height: 1.8rem;
}

.cert img {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.exper .img {
  border: 1px solid #9993;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.exper .img img {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.exper .info {
  padding: 20px 15px;
  background-color: #fafafa;
}

.reviews-wrapper {
  padding: 50px 0px;
}

.reviews-wrapper .reviews-inner {
  padding: 25px;
  border-radius: 25px;
  border: 1px solid #ddd;
}

.reviews-wrapper .reviews-inner .reviews-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
  position: relative;
}

.reviews-wrapper .reviews-inner .reviews-header .reviews-inner-nav .nav {
  border-bottom: 0px;
}

.reviews-wrapper .reviews-inner .reviews-header .reviews-inner-nav .nav .nav-link {
  border: none;
  text-align: end;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.reviews-wrapper .reviews-inner .reviews-header .reviews-inner-nav .nav .nav-link.active {
  background-color: transparent;
  font-weight: bold;
  color: #F39C74;
}

.reviews-wrapper .reviews-inner .rate {
  margin-top: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.reviews-wrapper .reviews-inner .rate i {
  color: #ccc;
  margin: 0px 2px;
  font-size: 18px;
  line-height: 24px;
}

.reviews-wrapper .reviews-inner .rate i.active {
  color: #e4de27;
}

.reviews-wrapper .reviews-inner .rate p {
  margin-right: 10px;
  margin-bottom: 0;
  font-size: 17px;
  font-family: 'regular';
}

.reviews-wrapper .reviews-inner .reviews-card {
  padding: 35px 0px;
  border-bottom: 1px solid #ddd;
}

.reviews-wrapper .reviews-inner .reviews-card .heading {
  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;
}

.reviews-wrapper .reviews-inner .reviews-card .heading .details {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.reviews-wrapper .reviews-inner .reviews-card .heading .details .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-wrapper .reviews-inner .reviews-card .heading .details .profile-info {
  padding: 0px 10px;
}

.reviews-wrapper .reviews-inner .reviews-card .heading .date {
  font-size: 15px;
  margin-bottom: 0;
}

.reviews-wrapper .reviews-inner .reviews-card .review-body {
  padding-right: 70px;
}

.reviews-wrapper .reviews-inner .reviews-card:last-child {
  border-bottom: 1px solid transparent;
  padding-bottom: 10px;
}

.reviews-wrapper .reviews-inner .reviews-card h6 {
  font-weight: bold;
  color: #777;
}

.reviews-wrapper .reviews-inner .reviews-card .rate i {
  font-size: 12px;
}

.reviews-wrapper .reviews-inner .reviews-card .title {
  margin-bottom: .4rem;
  font-size: 15px;
  font-weight: bold;
  margin-top: .5rem;
}

.reviews-wrapper .reviews-inner .form-container {
  margin-top: 30px;
}

.reviews-wrapper .reviews-inner .form-container .form-group {
  margin-bottom: 20px;
}

.reviews-wrapper .reviews-inner .form-container .form-group label {
  font-weight: bold;
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.reviews-wrapper .reviews-inner .form-container .form-group input,
.reviews-wrapper .reviews-inner .form-container .form-group textarea {
  background-color: transparent;
  font-size: 12px;
}

.reviews-wrapper .reviews-inner .form-container .form-group input {
  height: 50px;
}

.reviews-wrapper .reviews-inner .form-container .form-group .stars-content .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 1.5rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 .2em;
  text-align: center;
  width: 5em;
}

.reviews-wrapper .reviews-inner .form-container .form-group .stars-content .star-rating input {
  display: none;
}

.reviews-wrapper .reviews-inner .form-container .form-group .stars-content .star-rating label {
  color: #ccc;
  cursor: pointer;
  font-size: 25px;
}

.reviews-wrapper .reviews-inner .form-container .form-group .stars-content .star-rating :checked ~ label {
  color: #e4de27;
}

.reviews-wrapper .reviews-inner .form-container .form-group .stars-content .star-rating label:hover,
.reviews-wrapper .reviews-inner .form-container .form-group .stars-content .star-rating label:hover ~ label {
  color: #F39C74;
}

.reviews-wrapper .reviews-inner .form-container .submit-btn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: auto;
  text-align: center;
}

.reviews-wrapper .reviews-inner .form-container .submit-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.consultation-sec {
  background: url(../images/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 70px 0px;
  position: relative;
}

.consultation-sec::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  opacity: .92;
}

.consultation-sec .skills-text {
  padding-left: 30px;
  position: relative;
  z-index: 9;
}

.consultation-sec .skills-text h4 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  margin-bottom: 1rem;
  line-height: 2.3rem;
}

.consultation-sec .skills-text h4::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.consultation-sec .skills-text span {
  font-size: 120px;
  line-height: 96px;
  font-weight: 600;
  font-family: "Teko", sans-serif;
  -webkit-text-stroke-width: 2px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #29282d;
  position: absolute;
  left: 0;
  top: -52px;
  opacity: 0.1;
  z-index: -1;
  text-align: center;
}

.consultation-sec .skills-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.8rem;
}

.consultation-sec .butn-wrapper {
  position: relative;
  z-index: 9;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.consultation-sec .butn-wrapper .main-butn {
  width: 200px;
  height: 45px;
  line-height: 45px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: auto;
  text-align: center;
}

.consultation-sec .butn-wrapper .main-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

/***************************** Start About Page *****************************/
.about-pg {
  padding: 70px 0px;
  position: relative;
}

.about-pg .single-item {
  margin-top: 150px;
}

.about-pg .single-item:first-child {
  margin-top: 0;
}

.about-pg .text {
  padding: 15px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-pg .text h4 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  font-family: 'bold';
}

.about-pg .text h4::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.about-pg .text p {
  margin-top: 1.5rem;
  line-height: 1.8rem;
  font-size: 13px;
}

.about-pg .text .more-butn {
  color: #fff;
  width: 160px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #df857e;
  background-color: #F39C74;
  border-radius: 25px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin-top: 25px;
}

.about-pg .text .more-butn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.about-pg .text .more-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.about-pg .image-content {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.about-pg .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.about-pg .image-content.lg {
  height: 400px;
}

.about-pg .image-content.sm {
  height: 330px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  vertical-align: middle;
}

.about-pg .image-content:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.about-pg .image-content.video {
  height: 350px;
}

.about-pg .image-content.video::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0%;
  border: 10px solid #F08B80;
  top: 0px;
  right: 0px;
  border-left: none;
  border-bottom: none;
  opacity: 0;
  z-index: 99;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.about-pg .image-content.video::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 0%;
  border: 10px solid #F08B80;
  top: 0px;
  left: 0px;
  border-left: none;
  border-bottom: none;
  opacity: 0;
  z-index: 99;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.about-pg .image-content.video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 999;
  text-align: center;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.about-pg .image-content.video:hover::before {
  opacity: 1;
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
  border: none;
  background-color: rgba(240, 139, 128, 0.4);
}

.about-pg .image-content.video:hover::after {
  opacity: 1;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  border: none;
  background-color: rgba(240, 139, 128, 0.4);
}

.about-pg .image-content.video:hover .play-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  color: #F08B80;
}

.teamwork {
  padding: 50px 0px;
}

.teamwork .team-carousel.owl-theme .owl-dots {
  display: block;
}

.teamwork .team-carousel.owl-theme .owl-dots .owl-dot span {
  width: 60px;
  height: 5px;
  margin: 25px 5px 0px 5px;
  background-color: #ddd;
}

.teamwork .team-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #F39C74;
}

.teamwork .team-carousel .card {
  height: 315px;
  position: relative;
}

.teamwork .team-carousel .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.teamwork .team-carousel .card .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 9;
  color: #fff;
  padding: 1.375rem 1rem;
}

.teamwork .team-carousel .card .text h5 {
  font-family: 'bold';
}

.teamwork .team-carousel .card .text p {
  color: #fff;
  font-size: 17px;
}

.teamwork .team-carousel .card .text .links {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.teamwork .team-carousel .card .text .links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  z-index: 1;
  margin: 0 5px;
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.teamwork .team-carousel .card .text .links a:hover {
  background-color: #F39C74;
}

.teamwork .team-carousel .card::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0.5;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.teamwork .team-carousel .card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F08B80;
  background-image: linear-gradient(-72deg, #F08B80 0%, #9B438D 99%);
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.teamwork .team-carousel .card:hover::after {
  visibility: visible;
  opacity: 0.7;
}

.teamwork .team-carousel .card:hover .links {
  margin-top: 15px;
  visibility: visible;
  opacity: 1;
  height: 40px;
}

.feedback {
  padding: 70px 0px;
  position: relative;
  overflow: hidden;
}

.feedback .swiper-container {
  width: 100%;
  height: 100%;
}

.feedback .swiper-container .swiper-slide img {
  width: 70%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0px 0px 10px 0px #ddd;
          box-shadow: 0px 0px 10px 0px #ddd;
}

.feedback .swiper-container .swiper-slide .text-inner {
  background-color: #1C1C1C;
  color: #fff;
  position: absolute;
  bottom: 0;
  padding: 2.375rem 4.375rem;
}

.feedback .swiper-container .swiper-slide .text-inner p {
  color: #ddd;
  margin-top: .8rem;
  line-height: 1.5rem;
}

.feedback .swiper-container .swiper-slide .text-inner .right-quotes-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  opacity: .5;
}

.feedback .swiper-container .swiper-slide .text-inner .left-quotes-icon {
  position: absolute;
  bottom: 15px;
  left: 30px;
  font-size: 25px;
  opacity: .3;
}

.feedback .swiper-container .swiper-button-next,
.feedback .swiper-container .swiper-button-prev {
  width: 170px;
  height: 70px;
  background: unset;
  background-color: #3A3A3A;
  text-align: center;
  color: #fff;
  line-height: 70px;
  text-align: center;
  font-weight: bold;
  top: 90%;
}

.feedback .swiper-container .swiper-button-next:hover,
.feedback .swiper-container .swiper-button-prev:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
}

.feedback .swiper-container .swiper-button-next {
  right: 168px;
}

.feedback .swiper-container .swiper-button-prev {
  right: 0;
}

.feedback .swiper-container .swiper-container-horizontal > .swiper-pagination-bullets,
.feedback .swiper-container .swiper-pagination-custom,
.feedback .swiper-container .swiper-pagination-fraction {
  top: 10px;
  left: 27%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(-73%);
          transform: translateX(-73%);
  font-weight: bold;
}

.feedback .swiper-slide-active .text-inner p,
.feedback .swiper-slide-active .text-inner .right-quotes-icon,
.feedback .swiper-slide-active .text-inner .left-quotes-icon,
.feedback .swiper-slide-active .text-inner h6,
.feedback .swiper-slide-active .text-inner span {
  -webkit-animation: text-focus-in 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.feedback .thumbs-l {
  position: absolute;
  top: 216px;
  left: -25px;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.feedback .thumbs-r {
  position: absolute;
  top: 216px;
  right: -125px;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

/***************************** Start Contact Page *****************************/
.contact-pg {
  padding: 70px 0px;
}

.contact-pg .contact-links-sec .item .text p {
  font-size: 18px;
  color: #9B438D;
}

.contact-pg .text-content h4 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #F39C74;
  padding: 0rem 2rem 0rem 0rem;
  line-height: 2.5rem;
  font-size: 1.2rem;
  font-family: 'bold';
}

.contact-pg .text-content h4::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 7px;
  background-repeat: no-repeat;
}

.contact-pg .text-content p {
  font-size: 13px;
  line-height: 1.8rem;
  margin-top: .6rem;
}

.contact-pg .form-container {
  padding: 5px 15px;
}

.contact-pg .form-container .form-group {
  position: relative;
}

.contact-pg .form-container .form-group .icon {
  position: absolute;
  font-weight: 400;
  top: 18px;
  color: #F39C74;
  left: 20px;
  pointer-events: none;
}

.contact-pg .form-container .form-group .form-control {
  border: 2px solid #ddd;
  height: 60px;
  font-size: 14px;
  padding-left: 40px;
}

.contact-pg .form-container .form-group textarea {
  height: 200px !important;
  resize: none;
}

.contact-pg .form-container .form-group .form-control ~ .focus-border:before,
.contact-pg .form-container .form-group .form-control ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #F39C74;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.contact-pg .form-container .form-group .form-control ~ .focus-border:after {
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.contact-pg .form-container .form-group .form-control ~ .focus-border i:before,
.contact-pg .form-container .form-group .form-control ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: #F39C74;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.contact-pg .form-container .form-group .form-control ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.contact-pg .form-container .form-group .form-control:focus ~ .focus-border:before,
.contact-pg .form-container .form-group .form-control:focus ~ .focus-border:after {
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.contact-pg .form-container .form-group .form-control:focus ~ .focus-border:after {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.contact-pg .form-container .form-group .form-control:focus ~ .focus-border i:before,
.contact-pg .form-container .form-group .form-control:focus ~ .focus-border i:after {
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.contact-pg .form-container .form-group .form-control:focus ~ .focus-border i:after {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.contact-pg .form-container .cv-wrapper {
  position: relative;
  display: none;
}

.contact-pg .form-container .cv-wrapper .btn-cv {
  width: 200px;
  height: 45px;
  margin-bottom: 25px;
  background-color: #9b438d;
  color: #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid transparent;
}

.contact-pg .form-container .cv-wrapper .btn-cv:hover {
  background-color: #F08B80;
}

.contact-pg .form-container .cv-wrapper .file-input {
  width: 200px;
  height: 45px;
  position: absolute;
  opacity: 0;
}

.contact-pg .form-container .submit-btn {
  width: 200px;
  height: 45px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: auto;
}

.contact-pg .form-container .submit-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

/***************************** Start FAQ Page *****************************/
.faq-pg {
  padding: 70px 0px;
}

.faq-pg .accordion {
  padding: 0px 10px;
}

.faq-pg .accordion .card {
  -webkit-box-shadow: 0px 3px 4px 0px rgba(28, 26, 31, 0.1);
          box-shadow: 0px 3px 4px 0px rgba(28, 26, 31, 0.1);
  margin-bottom: 20px;
  border: none;
}

.faq-pg .accordion .card .card-header {
  padding: 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eaeaea;
  border-radius: 5px 5px 0px 0px;
}

.faq-pg .accordion .card .card-header .btn-link {
  padding: 15px 20px;
  border-radius: 5px 5px 0px 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  width: 100%;
  text-align: right;
}

.faq-pg .accordion .card .card-header .btn-link.active {
  background-color: #F39C74;
}

.faq-pg .accordion .card .card-header .btn-link.active p {
  color: #fff;
}

.faq-pg .accordion .card .card-header .btn-link.active i {
  color: #fff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-pg .accordion .card .card-header .btn-link p {
  margin-bottom: 0;
  font-size: 15px;
  color: #F39C74;
  font-weight: bold;
}

.faq-pg .accordion .card .card-header .btn-link i {
  font-size: 18px;
  color: #F39C74;
  line-height: 23px;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.faq-pg .accordion .card .card-body p {
  font-size: 13px;
  line-height: 1.8rem;
}

.faq-pg .card-question {
  -webkit-box-shadow: 0px 3px 4px 0px rgba(28, 26, 31, 0.1);
          box-shadow: 0px 3px 4px 0px rgba(28, 26, 31, 0.1);
  margin-bottom: 50px;
  border: none;
}

.faq-pg .card-question .card-header {
  padding: 25px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eaeaea;
}

.faq-pg .card-question .card-header h6 {
  margin-bottom: 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  font-family: 'bold';
}

.faq-pg .card-question .card-header h6::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: -3px;
  background-repeat: no-repeat;
}

.faq-pg .card-question .card-body .form-container input {
  font-size: 12px;
  height: calc(1.5em + 1.75rem + 2px);
}

.faq-pg .card-question .card-body .form-container textarea {
  font-size: 12px;
  height: calc(1.5em + 1.75rem + 2px);
}

.faq-pg .card-question .card-body .form-container .submit-btn {
  width: 170px;
  height: 45px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: auto;
}

.faq-pg .card-question .card-body .form-container .submit-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.faq-pg .card-contact {
  -webkit-box-shadow: 0px 3px 4px 0px rgba(28, 26, 31, 0.1);
          box-shadow: 0px 3px 4px 0px rgba(28, 26, 31, 0.1);
  margin-bottom: 50px;
  border: none;
}

.faq-pg .card-contact .card-header {
  padding: 25px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eaeaea;
}

.faq-pg .card-contact .card-header h6 {
  margin-bottom: 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  font-family: 'bold';
}

.faq-pg .card-contact .card-header h6::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: -3px;
  background-repeat: no-repeat;
}

.faq-pg .card-contact .contact-links-sec .item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}

.faq-pg .card-contact .contact-links-sec .item .text h6 {
  font-size: .8rem;
}

/***************************** Start Services Page *****************************/
.services-pg {
  padding: 70px 0px;
  position: relative;
}

.services-pg .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.services-pg .text h4 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  font-family: 'bold';
}

.services-pg .text h4::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.services-pg .text p {
  margin-top: 1.5rem;
  line-height: 1.8rem;
  font-size: 13px;
}

.services-pg .text .more-butn {
  color: #fff;
  width: 160px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #df857e;
  background-color: #F39C74;
  border-radius: 25px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin-top: 25px;
}

.services-pg .text .more-butn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.services-pg .text .more-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.services-pg .thumbs-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

.packages {
  background-color: #f9f9f9;
  padding: 70px 0px;
}

.packages .text-heading {
  height: auto;
}

.packages .text-heading p {
  margin-top: 1rem;
  font-size: 13px;
  line-height: 1.6rem;
}

.packages .card {
  background: url(../images/packages-card.jpg);
  background-size: cover;
  border: none;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 25px;
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin-bottom: 20px;
  overflow: hidden;
}

.packages .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.packages .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-radius: 25px;
  background: #333;
  opacity: .8;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.packages .card .card-header {
  position: relative;
  z-index: 9;
  text-align: center;
  padding: 2.2rem 1.75rem 1.5rem 1.75rem;
  -webkit-clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 90%);
          clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 90%);
}

.packages .card .card-header .icon {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0px auto 20px auto;
}

.packages .card .card-header .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.packages .card .card-header h4 {
  color: #F08B80;
  font-family: 'bold';
}

.packages .card .card-header h3 {
  color: #fff;
  margin-bottom: 0;
}

.packages .card .card-header h3 span {
  font-size: 15px;
  color: #ddd;
  font-weight: bold;
}

.packages .card .card-body {
  position: relative;
  z-index: 9;
  background-color: #fff;
  -webkit-clip-path: polygon(0 10%, 100% 3%, 100% 100%, 0% 100%);
          clip-path: polygon(0 10%, 100% 3%, 100% 100%, 0% 100%);
  padding: 3.5rem 2rem 3rem 2rem;
}

.packages .card .card-body p {
  font-size: 14px;
  color: #999;
}

.packages .card .card-body p i {
  margin-left: 5px;
}

.packages .card .card-body p.active {
  color: #333;
  font-weight: bold;
}

.packages .card .card-body p.active i {
  color: #F39C74;
}

.packages .card .card-body .more-butn {
  width: 160px;
  height: 50px;
  line-height: 50px;
  display: block;
  position: relative;
  margin: auto;
  margin-top: 25px;
}

.packages .card .card-body .more-butn span {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #333;
  background-color: #F39C74;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.packages .card .card-body .more-butn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-style: solid;
  border-width: 6px;
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
  z-index: -2;
  border: 1px solid #333;
  background-color: #333;
  border-radius: 10px;
}

.packages .card .card-body .more-butn:hover span, .packages .card .card-body .more-butn.active span {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}

.packages .card:hover .icon {
  -webkit-filter: invert(100%) sepia(0%) saturate(7473%) hue-rotate(144deg) brightness(203%) contrast(119%);
          filter: invert(100%) sepia(0%) saturate(7473%) hue-rotate(144deg) brightness(203%) contrast(119%);
}

.packages .premium .card-body,
.packages .premium .card-header {
  background-color: transparent;
}

.packages .premium .card-body .more-butn span {
  border: 1px solid #fff;
  background-color: #292D2C;
  color: #F39C74;
}

.packages .premium .card-body .more-butn::before {
  background-color: #fff;
}

.packages .premium .card-body .more-butn:hover span {
  color: #fff;
}

.packages .premium .inner::before {
  content: '';
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  display: block;
  position: absolute;
  top: 220px;
  right: 0;
  -webkit-transform: skewY(3.9deg);
  transform: skewY(-3.9deg);
  opacity: .3;
}

.packages .premium .card-body p.active {
  color: #fff;
}

/***************************** Start Register Page *****************************/
.register {
  padding: 70px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8f8f8;
}

.register .register-container {
  -webkit-box-shadow: 0px 0px 50px 0px #ddd;
          box-shadow: 0px 0px 50px 0px #ddd;
  background-color: #f9f9f9;
  margin: 10px 0px;
  border-radius: 25px;
}

.register .register-container .register-inner {
  padding: 50px 70px;
}

.register .register-container .register-inner h4 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  margin: 0px auto 25px auto;
  font-family: 'bold';
}

.register .register-container .register-inner h4::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.register .register-container .register-inner .icons-container {
  margin: 25px 0px;
}

.register .register-container .register-inner .icons-container a {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #555;
  color: #555;
  text-align: center;
  display: inline-block;
  margin: 0px 3px;
  text-align: center;
  line-height: 40px;
  font-size: 13px;
}

.register .register-container .register-inner .icons-container a:hover {
  border: 1px solid #F39C74;
  background-color: #F39C74;
  color: #f5f5f5;
}

.register .register-container .register-inner p {
  color: #999;
}

.register .register-container .register-inner form {
  padding-top: 15px;
}

.register .register-container .register-inner form .form-group {
  position: relative;
}

.register .register-container .register-inner form .form-group .form-control {
  padding-left: 37px;
  height: 60px;
  background-color: #fff;
  border: 2px solid #ddd;
  font-size: 14px;
  border-radius: 0;
  padding-left: 40px;
}

.register .register-container .register-inner form .form-group .form-control ~ .focus-border:before,
.register .register-container .register-inner form .form-group .form-control ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #F39C74;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.register .register-container .register-inner form .form-group .form-control ~ .focus-border:after {
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.register .register-container .register-inner form .form-group .form-control ~ .focus-border i:before,
.register .register-container .register-inner form .form-group .form-control ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: #F39C74;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.register .register-container .register-inner form .form-group .form-control ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.register .register-container .register-inner form .form-group .form-control:focus ~ .focus-border:before,
.register .register-container .register-inner form .form-group .form-control:focus ~ .focus-border:after {
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.register .register-container .register-inner form .form-group .form-control:focus ~ .focus-border:after {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.register .register-container .register-inner form .form-group .form-control:focus ~ .focus-border i:before,
.register .register-container .register-inner form .form-group .form-control:focus ~ .focus-border i:after {
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.register .register-container .register-inner form .form-group .form-control:focus ~ .focus-border i:after {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.register .register-container .register-inner form .form-group .icon i {
  position: absolute;
  left: 15px;
  bottom: 18px;
  color: #F39C74;
  font-weight: 400;
}

.register .register-container .register-inner form .form-group .icon i.fa-eye {
  cursor: pointer;
}

.register .register-container .register-inner form .form-group .forgot-pass {
  color: #999;
  font-size: 12px;
  float: left;
  padding: 10px 0px;
}

.register .register-container .register-inner form .form-group .sign-button {
  width: 200px;
  height: 45px;
  line-height: 45px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: auto;
}

.register .register-container .register-inner form .form-group .sign-button:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.register .register-container .text {
  height: 100%;
  padding: 30px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#9B438D), to(#F39C74));
  background: linear-gradient(#9B438D 0%, #F39C74 100%);
  position: relative;
  border-radius: 0px 25px 25px 0px;
}

.register .register-container .text .content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

.register .register-container .text .content .logo {
  margin: 20px auto;
  -webkit-filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(94deg) brightness(270%) contrast(130%);
          filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(94deg) brightness(270%) contrast(130%);
}

.register .register-container .text .content p {
  color: #ddd;
  margin-bottom: 2rem;
}

.register .register-container .text .content .sign-button {
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 14px;
  width: 200px;
  height: 45px;
  line-height: 45px;
  display: block;
  margin: auto;
}

.register .register-container .text .content .sign-button:hover {
  color: #fff;
  border: 1px solid #F39C74;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.register .register-container .text-content {
  text-align: start;
}

.register .register-container .counting span {
  color: #888;
}

/***************************** Start Trainer-Profile Page *****************************/
.trainer-profile {
  padding: 50px 0px;
  background-color: #f9f9f9;
  /*start the connection icons*/
}

.trainer-profile .side-menu {
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(247, 123, 189, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(247, 123, 189, 0.2);
  padding: 1.5rem 0rem;
  margin-bottom: 25px;
}

.trainer-profile .side-menu .profile-img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}

.trainer-profile .side-menu .profile-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trainer-profile .side-menu .profile-img h6 {
  margin: 1.2rem 0rem .5rem 0rem;
}

.trainer-profile .side-menu .profile-img .username {
  color: #F39C74;
  font-weight: bold;
  direction: ltr;
}

.trainer-profile .side-menu .profile-img .copy-butn {
  display: inline-block;
  background-color: transparent;
  border: transparent;
  color: #9b438d;
  font-size: 13px;
}

.trainer-profile .side-menu .profile-img .copy-butn:hover {
  color: #F39C74;
}

.trainer-profile .side-menu .links {
  margin-top: 25px;
}

.trainer-profile .side-menu .links .nav-link {
  border-left: 1px solid transparent;
  border-radius: 0;
  font-size: 15px;
  padding: .75rem 1.375rem;
}

.trainer-profile .side-menu .links .nav-link i {
  margin-left: 10px;
  color: #777;
}

.trainer-profile .side-menu .links .nav-link.active {
  border-left: 2px solid #F39C74;
  background-color: #f9f9f9;
  color: #F39C74;
  font-weight: bold;
}

.trainer-profile .side-menu .links .nav-link.active i {
  color: #F39C74;
}

.trainer-profile .side-menu-back {
  width: 100%;
  display: block;
  background: #F29778;
  padding: 15px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
}

.trainer-profile .tab-wrapper {
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(247, 123, 189, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(247, 123, 189, 0.2);
  padding: 2.5rem 2rem;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.trainer-profile .tab-wrapper .heading h5 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  font-family: 'bold';
  margin: 10px auto 45px auto;
}

.trainer-profile .tab-wrapper .heading h5::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.trainer-profile .tab-wrapper.personal .calendar .fc-button-primary {
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  color: #333;
  padding: 0.4em 1em;
}

.trainer-profile .tab-wrapper.personal .calendar .fc-button-active {
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
}

.trainer-profile .tab-wrapper.personal .calendar .fc-toolbar-title {
  font-size: 1.2em;
}

.trainer-profile .tab-wrapper.personal .calendar .fc .fc-button-primary:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.trainer-profile .tab-wrapper.personal .responsive-table {
  overflow-x: auto;
}

.trainer-profile .tab-wrapper.personal .responsive-table table thead tr {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
}

.trainer-profile .tab-wrapper.personal .responsive-table table thead tr th {
  padding: 20px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  border: 0;
}

.trainer-profile .tab-wrapper.personal .responsive-table table tbody tr h4 {
  font-size: 1rem;
}

.trainer-profile .tab-wrapper.personal .responsive-table table tbody tr td {
  position: relative;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #E2EDF8;
  color: #666565;
  font-weight: 500;
  padding: 20px;
}

.trainer-profile .tab-wrapper.personal .responsive-table table tbody tr td.day {
  font-size: 16px;
  font-weight: 600;
  color: #29282d;
  background-color: #f9f9f9;
  border: 1px solid #F1F8FF;
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.trainer-profile .tab-wrapper.personal .responsive-table table tbody tr td.day:hover {
  background: #29282D;
  color: #fff;
  border: 1px solid #29282D;
}

.trainer-profile .tab-wrapper.personal .responsive-table table tbody tr td .hover {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
  background: #fff;
  z-index: 99;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-radius: 10px;
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  color: #fff;
}

.trainer-profile .tab-wrapper.personal .responsive-table table tbody tr td .hover p {
  color: #eee;
  margin-bottom: .5rem;
}

.trainer-profile .tab-wrapper.personal .responsive-table table tbody tr td:hover .hover {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  visibility: visible;
  opacity: 1;
}

.trainer-profile .tab-wrapper.personal .responsive-table table tbody tr td img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.trainer-profile .tab-wrapper.personal .img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border: 1px dashed #f16f5c;
}

.trainer-profile .tab-wrapper.packages-tab .packages {
  padding: 0;
  background-color: transparent;
}

.trainer-profile .tab-wrapper.packages-tab .packages .card {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

.trainer-profile .tab-wrapper.packages-tab .packages .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.trainer-profile .tab-wrapper.packages-tab .packages .text i {
  margin: 0px 5px;
  color: #f16f5c;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper {
  margin-bottom: 50px;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-outer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-outer .add-more {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: #F39C74;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-outer .add-more:hover {
  background-color: #9B438D;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-outer .edit-btn {
  color: #F39C74;
  cursor: pointer;
  margin-right: 15px;
  line-height: 30px;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-inner {
  margin: 25px 0px;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-inner img {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-inner h5 {
  margin-bottom: 1rem;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-inner p {
  line-height: 2rem;
  font-size: 15px;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-inner .btn-cv {
  width: 150px;
  height: 45px;
  margin-bottom: 25px;
  background-color: #F39C74;
  color: #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid transparent;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-inner .btn-cv:hover {
  background-color: #9b438d;
}

.trainer-profile .tab-wrapper.certificate .adding-wrapper .adding-inner .file-input {
  width: 180px;
  position: absolute;
  opacity: 0;
}

.trainer-profile .tab-wrapper.programs .card {
  border: none;
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
}

.trainer-profile .tab-wrapper.programs .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trainer-profile .tab-wrapper.programs .card .text-inner {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  color: #fff;
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  padding: 0rem 1.375rem;
  -webkit-transform: translateY(205px);
          transform: translateY(205px);
  -webkit-transition: all .5s;
  transition: all .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: .9;
}

.trainer-profile .tab-wrapper.programs .card .text-inner h6 {
  margin-bottom: 0;
  height: 80px;
  line-height: 80px;
}

.trainer-profile .tab-wrapper.programs .card .text-inner p {
  color: #eee;
  line-height: 1.5rem;
}

.trainer-profile .tab-wrapper.programs .card .text-inner a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 5px auto 0px auto;
}

.trainer-profile .tab-wrapper.programs .card .text-inner a img:hover {
  -webkit-animation: rotate-in-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: rotate-in-center 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.trainer-profile .tab-wrapper.programs .card:hover .text-inner {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.trainer-profile .tab-wrapper.info-container .text {
  margin-bottom: 20px;
  padding: 0px 10px;
}

.trainer-profile .tab-wrapper.info-container .text .content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.trainer-profile .tab-wrapper.info-container .text .content span {
  text-transform: uppercase;
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
}

.trainer-profile .tab-wrapper.info-container .text .content .edit-btn {
  cursor: pointer;
  color: #4f4e4e;
  font-size: 12px;
}

.trainer-profile .tab-wrapper.info-container .text .form-control {
  background-color: #f5f5f5;
  border: 1px solid transparent;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
}

.trainer-profile .tab-wrapper.info-container .text .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #F39C74;
}

.trainer-profile .tab-wrapper.info-container .text .enable-input {
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
  background-color: #fff;
  border: 1px solid #ddd;
}

.trainer-profile .tab-wrapper.info-container .text .enable-input:focus {
  border: 1px solid #F39C74;
}

.trainer-profile .tab-wrapper.info-container .save-btn {
  color: #fff;
  width: 160px;
  height: 40px;
  border: 1px solid #df857e;
  background-color: #F39C74;
  border-radius: 25px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin: 0px auto 0px auto;
}

.trainer-profile .tab-wrapper.info-container .save-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.trainer-profile .tab-wrapper.info-container .modal .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #F39C74;
  margin: auto;
  position: relative;
}

.trainer-profile .tab-wrapper.info-container .modal .image-container img {
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 7px solid #ddd;
}

.trainer-profile .tab-wrapper.info-container .modal .image-container input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
}

.trainer-profile .tab-wrapper.info-container .modal .image-container button {
  width: 35px;
  height: 35px;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  background-color: #F39C74;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #ddd;
  position: absolute;
  right: 10px;
  bottom: 0px;
}

.trainer-profile .tab-wrapper.info-container .modal .image-container button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

.trainer-profile .tab-wrapper.info-container .modal .btn-primary {
  background-color: #F39C74;
  border: 1px solid #F39C74;
}

.trainer-profile .tab-wrapper.workout .card {
  position: relative;
  padding: 0px 25px 25px;
  border: 1px solid #ddd;
  margin-bottom: 25px;
  border-radius: 25px;
}

.trainer-profile .tab-wrapper.workout .card .image-container {
  width: 100%;
  height: 200px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.trainer-profile .tab-wrapper.workout .card .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.trainer-profile .tab-wrapper.workout .card .text {
  padding: 1.375rem .5rem;
  position: relative;
}

.trainer-profile .tab-wrapper.workout .card .text .icon {
  width: 60px;
  height: 60px;
  line-height: 65px;
  border-radius: 50%;
  background-color: #fff;
  color: #F39C74;
  -webkit-box-shadow: 0px 3px 4px 0px #ddd;
          box-shadow: 0px 3px 4px 0px #ddd;
  display: block;
  text-align: center;
  z-index: 99;
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.trainer-profile .tab-wrapper.workout .card .text .title {
  color: #F39C74;
}

.trainer-profile .tab-wrapper.workout .card .text h6 {
  margin: .7rem 0rem 1rem 0rem;
}

.trainer-profile .tab-wrapper.workout .card .text p {
  line-height: 1.8rem;
  font-size: 13px;
  color: #999;
}

.trainer-profile .tab-wrapper.workout .card .text .more-btn {
  color: #fff;
  width: 160px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #df857e;
  background-color: #F39C74;
  border-radius: 20px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin-top: 25px;
}

.trainer-profile .tab-wrapper.workout .card .text .more-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.trainer-profile .tab-wrapper.workout .card:hover .text .icon {
  background-color: #F39C74;
  color: #fff;
}

.trainer-profile .tab-wrapper.workout .card:hover .image-container img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.trainer-profile .tab-wrapper.copun {
  padding: 1.5rem 1rem 4rem 1rem;
}

.trainer-profile .tab-wrapper.copun .add-new {
  background-color: transparent;
  border: transparent;
  color: #f16f5c;
  margin-right: auto;
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

.trainer-profile .tab-wrapper.copun .create-copun {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 3rem 2rem;
}

.trainer-profile .tab-wrapper.copun .create-copun .text-content {
  margin-bottom: 25px;
}

.trainer-profile .tab-wrapper.copun .create-copun .text-content p {
  margin-top: 1rem;
  font-size: 18px;
  color: #df857e;
}

.trainer-profile .tab-wrapper.copun .create-copun .buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.trainer-profile .tab-wrapper.copun .create-copun .buttons .butn {
  width: 150px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #F39C74;
  color: #F39C74;
  background-color: #fff;
  font-weight: bold;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: 25px 3px 0px 3px;
  text-align: center;
}

.trainer-profile .tab-wrapper.copun .create-copun .buttons .butn.active {
  background-color: #F39C74;
  color: #fff;
}

.trainer-profile .tab-wrapper.copun .create-copun .buttons .butn.inactive {
  background-color: #707070;
  color: #fff;
  border: 1px solid #707070;
}

.trainer-profile .tab-wrapper.copun .create-copun .buttons .butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
  color: #fff;
}

.trainer-profile .tab-wrapper.consultation-tab .inner .form-group {
  position: relative;
  margin-bottom: 0.5rem;
}

.trainer-profile .tab-wrapper.consultation-tab .inner .form-group .form-control {
  height: 40px;
  font-size: 13px;
  border-radius: 10px;
  margin-top: 0.5rem;
  padding-left: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.trainer-profile .tab-wrapper.consultation-tab .inner .form-group i {
  position: absolute;
  left: 15px;
  top: 20px;
  pointer-events: none;
  color: #888;
}

.trainer-profile .tab-wrapper.consultation-tab .inner .buttons {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.trainer-profile .tab-wrapper.consultation-tab .inner .buttons .butn {
  color: #fff;
  width: 160px;
  height: 50px;
  line-height: 50px;
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 15px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin: 25px 4px 0px 4px;
  color: #F39C74;
  display: inline-block;
  font-weight: bold;
}

.trainer-profile .tab-wrapper.consultation-tab .inner .buttons .butn i {
  margin: 0px 3px;
}

.trainer-profile .tab-wrapper.consultation-tab .inner .buttons .butn.active {
  border: 1px solid #F39C74;
  background-color: #F39C74;
  color: #fff;
}

.trainer-profile .tab-wrapper.consultation-tab .inner .buttons .butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
  color: #fff;
}

.trainer-profile .tab-wrapper.consultation-tab .day_tabs_head {
  width: 100%;
  margin-top: 50px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.trainer-profile .tab-wrapper.consultation-tab .day_tabs_head .nav-item a {
  color: #DF857E;
  font-weight: bold;
  font-size: 16px;
  margin: 15px 30px;
}

.trainer-profile .tab-wrapper.consultation-tab .day_tabs_head .week_select select {
  background-color: #fafafa;
  margin: 10px;
  height: 35px;
  border: 1px solid #9993;
  font-size: 13px;
}

.trainer-profile .tab-wrapper.table-log .responsive-table {
  overflow-x: auto;
}

.trainer-profile .tab-wrapper.table-log .responsive-table table {
  width: 100%;
}

.trainer-profile .tab-wrapper.table-log .responsive-table table td,
.trainer-profile .tab-wrapper.table-log .responsive-table table th {
  padding: .875rem 1rem;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 12px;
}

.trainer-profile .tab-wrapper.table-log .responsive-table table td .btn,
.trainer-profile .tab-wrapper.table-log .responsive-table table th .btn {
  font-size: 10px;
}

.trainer-profile .tab-wrapper.table-log .responsive-table table td img,
.trainer-profile .tab-wrapper.table-log .responsive-table table th img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.trainer-profile .tab-wrapper.consulting-reservations .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: 1px solid #ddd;
  border-radius: 25px;
  margin-bottom: 35px;
}

.trainer-profile .tab-wrapper.consulting-reservations .nav .nav-link {
  border-radius: 25px;
  padding: .5rem 2.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, white), to(white));
  background: linear-gradient(90deg, white 35%, white 100%);
}

.trainer-profile .tab-wrapper.consulting-reservations .nav .nav-link.active {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  font-weight: bold;
}

.trainer-profile .tab-wrapper.consulting-reservations .card {
  position: relative;
  border-radius: 0;
  padding: 4rem 2rem 4rem 2rem;
  margin-bottom: 55px;
}

.trainer-profile .tab-wrapper.consulting-reservations .card .badge {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffff;
  border-radius: 0px 0px 0px 20px;
  padding: 1rem 2rem;
  font-size: 13px;
  font-weight: bold;
  background-color: #707070;
}

.trainer-profile .tab-wrapper.consulting-reservations .card .badge.active {
  background-color: #9B438D;
}

.trainer-profile .tab-wrapper.consulting-reservations .card table td {
  font-size: 14px;
  padding: .575rem 0rem;
  font-family: 'regular';
}

.trainer-profile .tab-wrapper.consulting-reservations .card table td.active {
  font-family: 'bold';
  font-weight: bold;
  color: #9B438D;
}

.trainer-profile .tab-wrapper.consulting-reservations .card .buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto -90px auto;
}

.trainer-profile .tab-wrapper.consulting-reservations .card .buttons .butn {
  width: 130px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #F39C74;
  color: #F39C74;
  background-color: #fff;
  font-weight: bold;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: 25px 3px 0px 3px;
  text-align: center;
  font-size: 13px;
}

.trainer-profile .tab-wrapper.consulting-reservations .card .buttons .butn.active {
  background-color: #F39C74;
  color: #fff;
}

.trainer-profile .tab-wrapper.consulting-reservations .card .buttons .butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
  color: #fff;
}

.trainer-profile .tab-wrapper.subscription-reservations .card {
  padding: 0 0 25px 0px;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-header {
  position: relative;
  background-color: #fff;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-header .date {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  color: #888;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-header .content {
  text-align: center;
  margin: 35px 0px 15px 0px;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-header .content .profile-pic {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: block;
  margin: auto;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-header .content h5 {
  margin: 1rem 0rem;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-header .content .chat-link {
  font-weight: 600;
  color: #F08B80;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-header .content .chat-link i {
  margin: 0px 3px;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-header .content .chat-link:hover {
  color: #9B438D;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .card-body table {
  width: 70%;
  margin: auto;
}

.trainer-profile .tab-wrapper.subscription-reservations .card .buttons .butn {
  margin: 25px 3px 40px 3px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .conversations {
  margin-bottom: 25px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .conversations .swiper-slide {
  text-align: center;
  position: relative;
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 20px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .conversations .swiper-slide img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trainer-profile .tab-wrapper.chat-tab .inner .conversations .swiper-slide .number {
  width: 20px;
  height: 20px;
  background-color: #9B438D;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 0;
  display: block;
  right: 40%;
  -webkit-transform: translateX(60%);
          transform: translateX(60%);
}

.trainer-profile .tab-wrapper.chat-tab .inner .conversations .swiper-slide h6 {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.trainer-profile .tab-wrapper.chat-tab .inner .conversations .swiper-slide .date {
  color: #999;
  font-size: 12px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .conversations .swiper-slide .date i {
  margin: 0px 3px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box {
  background-color: #f9f9f9;
  padding: 50px 40px;
  position: relative;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #f9f9f9 transparent;
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .person-name h2 {
  font-size: 30px;
  color: #2e2e2e;
  margin-bottom: 40px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages {
  height: 600px;
  padding: 0 20px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages::-webkit-scrollbar {
  width: 8px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages::-webkit-scrollbar-track {
  background-color: #ddd;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages::-webkit-scrollbar-thumb {
  background-color: #F39C74;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .another-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 40px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .another-person .pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: -30px;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .another-person .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .another-person p {
  padding: 30px 40px;
  line-height: 30px;
  border-radius: 10px;
  background-color: #eaeaea;
  font-size: 16px;
  color: #545454;
  margin-bottom: 5px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .another-person span {
  font-size: 15px;
  color: #545454;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .your-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 40px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .your-message .pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: -30px;
  margin-left: 20px;
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .your-message .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .your-message p {
  padding: 30px 40px;
  line-height: 30px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .messages .your-message span {
  font-size: 15px;
  color: #545454;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .add-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f3f3f3;
  width: 100%;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .add-comment .form-group {
  position: relative;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .add-comment .form-group textarea {
  width: 100%;
  height: 55px;
  resize: none;
  background-color: transparent;
  border-radius: 15px;
  margin-top: 25px;
  padding: 10px 10px 10px 100px;
  font-size: 15px;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .add-comment .form-group .send {
  position: absolute;
  top: 10px;
  left: 55px;
  border: 1px solid transparent;
  color: #888;
  background-color: transparent;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #f5f5f5;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .add-comment .form-group .send:hover {
  background-color: #F39C74;
  color: #fff;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .add-comment .form-group label {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid transparent;
  color: #888;
  background-color: transparent;
  border-radius: 5px;
  width: 35px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  background-color: #f5f5f5;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .add-comment .form-group label input {
  position: absolute;
  opacity: 0;
  display: none;
}

.trainer-profile .tab-wrapper.chat-tab .inner .chat-box .add-comment .form-group label:hover {
  background-color: #F39C74;
  color: #fff;
}

.trainer-profile .share {
  position: fixed;
  top: 50%;
  left: 20px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 50px;
  height: 50px;
  z-index: 9999;
  cursor: pointer;
}

.trainer-profile .share ul {
  position: relative;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  list-style: none;
}

.trainer-profile .share ul.active li {
  opacity: .9;
}

.trainer-profile .share ul.active li:first-child {
  top: -100%;
  left: 0%;
}

.trainer-profile .share ul.active li:nth-child(2) {
  top: -100%;
  left: 100%;
}

.trainer-profile .share ul.active li:nth-child(3) {
  top: 0%;
  left: 100%;
}

.trainer-profile .share ul.active li:nth-child(4) {
  top: 100%;
  left: 100%;
}

.trainer-profile .share ul.active li:nth-child(5) {
  top: 100%;
  left: 0%;
}

.trainer-profile .share ul li {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-transition: .5s;
  transition: .5s;
  overflow: hidden;
  border-radius: 50%;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  text-align: center;
}

.trainer-profile .share ul li a {
  color: #fff;
}

.trainer-profile .share .toggle {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #F39C74;
  z-index: 9999;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  overflow: hidden;
  border-radius: 50%;
  text-align: center;
}

.trainer-profile .share .toggle i {
  color: #fff;
}

.trainer-profile .share i {
  position: relative;
  font-size: 20px;
  line-height: 50px;
}

/***************************** Start User-Profile Page *****************************/
.user-profile .tab-wrapper.personal .text {
  margin-bottom: 20px;
  padding: 0px 10px;
}

.user-profile .tab-wrapper.personal .text span {
  text-transform: uppercase;
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
}

.user-profile .tab-wrapper.personal .text .inner {
  background-color: #f5f5f5;
  border: 1px solid transparent;
  height: 45px;
  line-height: 35px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
  margin-bottom: 0;
  margin-top: 1rem;
  width: calc(100% - 70px);
}

.user-profile .tab-wrapper.personal .s_img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid #9994;
  margin-left: 10px;
  position: relative;
  top: 5px;
  overflow: hidden;
}

.user-profile .tab-wrapper.personal .s_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper {
  position: relative;
  z-index: 9;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group {
  margin-bottom: 30px;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group.custom-radios {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-radius: 25px;
  margin-bottom: 40px;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group.custom-radios .card-input-element {
  display: none;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group.custom-radios label {
  margin-bottom: 0;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group.custom-radios .single-select {
  padding: .9rem 2.375rem;
  border-radius: 25px;
  cursor: pointer;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group.custom-radios .single-select img {
  width: 25px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(33%) sepia(4%) saturate(12%) hue-rotate(359deg) brightness(49%) contrast(80%);
          filter: invert(33%) sepia(4%) saturate(12%) hue-rotate(359deg) brightness(49%) contrast(80%);
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group.custom-radios .card-input-element:checked + .single-select {
  background-color: #F39C74;
  color: #fff;
  font-weight: bold;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group.custom-radios .card-input-element:checked + .single-select img {
  -webkit-filter: invert(0%) sepia(94%) saturate(0%) hue-rotate(231deg) brightness(118%) contrast(100%);
          filter: invert(0%) sepia(94%) saturate(0%) hue-rotate(231deg) brightness(118%) contrast(100%);
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group .form-control {
  height: 60px;
  background-color: #eee;
  opacity: .95;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group .submit-btn {
  width: 100%;
  height: 60px;
  border-radius: 20px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-weight: bold;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .form-group .submit-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-color: transparent;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .calories-result {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  display: block;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .calories-result p {
  font-size: 14px;
  margin-bottom: 0;
  color: #000;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .calories-result p b {
  color: #F39C74;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .diet-butn {
  width: 200px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #F39C74;
  background-color: #F39C74;
  color: #ffffff;
  font-weight: bold;
  margin: 20px auto 0 auto;
  display: block;
  border-radius: 18px;
  opacity: 1;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .diet-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-color: #f16f5c;
  color: #fff;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .all-result p {
  margin-bottom: 0;
  color: #333;
  font-size: 14px;
}

.user-profile .tab-wrapper.calc-calories .form-wrapper .all-result p i {
  color: #F39C74;
  font-size: 12px;
}

.user-profile .tab-wrapper.subscription .card {
  height: 315px;
  position: relative;
}

.user-profile .tab-wrapper.subscription .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user-profile .tab-wrapper.subscription .card .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 9;
  color: #fff;
  padding: 1.375rem 1rem;
}

.user-profile .tab-wrapper.subscription .card .text h5 {
  font-family: 'bold';
}

.user-profile .tab-wrapper.subscription .card .text p {
  color: #fff;
  font-size: 17px;
}

.user-profile .tab-wrapper.subscription .card .text .links {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.user-profile .tab-wrapper.subscription .card .text .links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  z-index: 1;
  margin: 0 5px;
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.user-profile .tab-wrapper.subscription .card .text .links a:hover {
  background-color: #F39C74;
}

.user-profile .tab-wrapper.subscription .card::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0.5;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.user-profile .tab-wrapper.subscription .card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F08B80;
  background-image: linear-gradient(-72deg, #F08B80 0%, #9B438D 99%);
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.user-profile .tab-wrapper.subscription .card:hover::after {
  visibility: visible;
  opacity: 0.7;
}

.user-profile .tab-wrapper.subscription .card:hover .links {
  margin-top: 15px;
  visibility: visible;
  opacity: 1;
  height: 40px;
}

.user-profile .tab-wrapper.subscription .buttons {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.user-profile .tab-wrapper.subscription .buttons .main-btn {
  color: #fff;
  width: 160px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #df857e;
  background-color: #F39C74;
  border-radius: 25px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin: 25px 4px 0px 4px;
}

.user-profile .tab-wrapper.subscription .buttons .main-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.reason_popup .modal-content {
  border: 0;
  border-radius: 20px;
}

.reason_popup .modal-header {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.reason_popup .modal-header h5,
.reason_popup .modal-header .close {
  color: #fff;
}

.reason_popup .form-control {
  min-height: 55px;
  border-radius: 15px;
  border: 1px solid #9993;
  background-color: #fafafa;
}

/***************************** Start Trainers Page *****************************/
.trainers-pg {
  padding: 70px 0px;
}

.trainers-pg .sec-heading {
  background-color: #f9f9f9;
  padding: 25px 25px 10px 25px;
  -webkit-box-shadow: 0px 3px 4px 0px #eee;
          box-shadow: 0px 3px 4px 0px #eee;
  margin-bottom: 25px;
  border-radius: 45px;
}

.trainers-pg .sec-heading h5 {
  line-height: 50px;
  margin-bottom: 0;
  position: relative;
  padding: 0rem 2.5rem;
  color: #F39C74;
}

.trainers-pg .sec-heading h5::after {
  content: '';
  width: 35px;
  height: 35px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
  background-repeat: no-repeat;
}

.trainers-pg .sec-heading .form-control {
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 12px;
  height: 45px;
  border-radius: 20px;
}

.trainers-pg .item {
  position: relative;
  height: 400px;
  border-radius: 15px;
  margin-bottom: 35px;
  overflow: hidden;
}

.trainers-pg .item .trainer-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.trainers-pg .item .text-inner {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: 10px;
  width: 90%;
  border-radius: 25px;
  text-align: center;
  padding: 1.5rem 0rem;
  overflow: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.trainers-pg .item .text-inner h5 {
  color: #fff;
  margin-bottom: 0;
}

.trainers-pg .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  opacity: .8;
  -webkit-transform: translateY(400px);
          transform: translateY(400px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.trainers-pg .item .text {
  width: 100%;
  position: absolute;
  text-align: center;
  z-index: 9;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.trainers-pg .item .text h5 {
  color: #fff;
}

.trainers-pg .item .text span {
  color: #ddd;
}

.trainers-pg .item .text .rate {
  margin-top: 5px;
}

.trainers-pg .item .text .rate i {
  color: #ddd;
  margin: 0px 1px;
}

.trainers-pg .item .text .rate i.active {
  color: #fbfb39;
}

.trainers-pg .item .text .links {
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: 15px;
}

.trainers-pg .item .text .links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  z-index: 1;
  margin: 0 5px;
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.trainers-pg .item .text .links a:hover {
  background-color: #F39C74;
}

.trainers-pg .item:hover .text-inner {
  opacity: 0;
}

.trainers-pg .item:hover .text {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.trainers-pg .item:hover::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/***************************** Start Offers Page *****************************/
.offers-pg {
  padding: 70px 0px;
}

.offers-pg .card {
  margin-bottom: 55px;
  text-align: center;
  border-radius: 25px;
  position: relative;
}

.offers-pg .card .img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 30px;
  position: relative;
}

.offers-pg .card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.offers-pg .card .img .logo {
  width: 100px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
  border-top-left-radius: 25px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-bottom: 1px dashed #f16f5c20;
}

.offers-pg .card .img a.zoom {
  position: absolute;
  left: 0;
  top: 0;
  padding: 15px 20px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  color: #f16f5c;
  -webkit-transform: translate(-110%, -110%);
          transform: translate(-110%, -110%);
  opacity: 0;
}

.offers-pg .card p {
  margin: 5px 0 50px;
  font-size: 14px;
  font-weight: bold;
  color: #f16f5c;
}

.offers-pg .card p span {
  letter-spacing: 2px;
}

.offers-pg .card .more-btn {
  width: 160px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #F39C74;
  color: #F39C74;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #fff), to(#fff));
  background: linear-gradient(90deg, #fff 35%, #fff 100%);
  margin: auto;
  display: block;
  position: absolute;
  bottom: -25px;
  border-radius: 18px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 1;
}

.offers-pg .card .more-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-color: #f16f5c;
  color: #fff;
}

.offers-pg .card:hover a.zoom {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/***************************** Start Single Offers Page *****************************/
.single-offer {
  padding: 70px 0px;
}

.single-offer .item {
  text-align: center;
  background-color: #f7f7f7;
  padding: 25px;
  border-radius: 5px;
}

.single-offer .item .img {
  width: 300px;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.single-offer .item h4 {
  margin: .9rem 0rem;
}

.single-offer .text {
  padding: 10px 25px;
}

.single-offer .text h4 {
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0rem 2.5rem;
  color: #F39C74;
}

.single-offer .text h4::after {
  content: '';
  width: 35px;
  height: 35px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0px;
  background-repeat: no-repeat;
}

.single-offer .text p {
  font-size: 15px;
  line-height: 2rem;
}

/***************************** Start consultation Page *****************************/
.consultation-details {
  padding: 70px 0px;
}

.consultation-details .inner h4 {
  position: relative;
  padding: 0rem 2.5rem;
  color: #F39C74;
  margin-bottom: 2rem;
}

.consultation-details .inner h4::after {
  content: '';
  width: 35px;
  height: 35px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.consultation-details .inner h6 {
  font-family: 'bold';
}

.consultation-details .inner .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  padding: 5px;
  border: 2px dashed #f16f5c;
}

.consultation-details .inner .time-selection {
  border: 1px solid #ddd;
  padding: 25px 15px 15px 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  overflow-y: hidden;
  margin: 25px 0px 30px 0px;
  border-radius: 15px;
}

.consultation-details .inner .time-selection label {
  width: 100%;
}

.consultation-details .inner .time-selection label .time-input-element {
  opacity: 0;
  position: absolute;
}

.consultation-details .inner .time-selection label .time-input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px 8px 30px;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 25px;
}

.consultation-details .inner .time-selection label .time-input .panel-heading {
  direction: ltr !important;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.consultation-details .inner .time-selection .time-input-element:checked + .time-input {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  color: #fff;
  font-weight: bold;
}

.consultation-details .inner .date {
  height: 55px;
  font-size: 15px;
  border-radius: 15px;
  margin-top: 1.5rem;
  padding-left: 20px;
}

.consultation-details .inner p {
  font-size: 15px;
  line-height: 2rem;
  margin: .9rem 0rem 1.5rem 0rem;
}

.consultation-details .inner .form-group {
  position: relative;
}

.consultation-details .inner .form-group i {
  position: absolute;
  left: 15px;
  top: 20px;
  pointer-events: none;
  color: #888;
}

.consultation-details .inner .price {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 0.9rem 3.375rem;
  border-radius: 20px;
  direction: ltr !important;
  margin-bottom: 0;
  font-size: 20px;
  margin-top: 25px;
}

.consultation-details .inner .price b {
  font-size: 25px;
  margin-right: 3px;
}

.consultation-details .inner .main-butn {
  width: 200px;
  height: 65px;
  line-height: 65px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: 25px auto 0px auto;
  text-align: center;
}

.consultation-details .inner .main-butn i {
  margin: 0px 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.consultation-details .inner .main-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.consultation-details .inner .modal .modal-content {
  border-radius: 25px;
  padding: 20px;
}

.consultation-details .inner .modal .pay-selection {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.consultation-details .inner .modal .pay-selection label {
  width: 100%;
}

.consultation-details .inner .modal .pay-selection label .time-input-element {
  opacity: 0;
  position: absolute;
}

.consultation-details .inner .modal .pay-selection label .time-input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 25px;
}

.consultation-details .inner .modal .pay-selection label .time-input .panel-heading img {
  width: 100px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.consultation-details .inner .modal .pay-selection label .time-input-element:checked + .time-input {
  border: 1px solid #F39C74;
}

.consultation-details .inner .modal .main-butn {
  width: 300px;
  height: 55px;
  line-height: 55px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
}

.consultation-details .inner .modal .main-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #f16f5c), to(#f16f5c));
  background: linear-gradient(90deg, #f16f5c 35%, #f16f5c 100%);
}

.consultation-details .inner .copon {
  padding: 30px;
  border-radius: 20px;
  background-color: #f9f9f9;
  margin: 50px 0;
}

.consultation-details .inner .copon input {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  border: 0;
  margin: 15px 0;
}

.consultation-details .inner .copon h6 {
  margin-top: 10px;
}

.consultation-details .inner .copon h6 strong {
  color: #f16f5c;
  margin: 0 10px;
}

.copon {
  padding: 30px;
  border-radius: 20px;
  background-color: #f9f9f9;
  margin: 50px 0;
}

.copon input {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  border: 0;
  margin: 15px 0;
}

.copon h6 {
  margin-top: 10px;
}

.copon h6 strong {
  color: #f16f5c;
  margin: 0 10px;
}

.subscription-details {
  padding: 70px 0px;
}

.subscription-details .form-group {
  margin-bottom: 2.5rem;
}

.subscription-details .form-group .form-control {
  height: 70px;
}

.subscription-details .text p {
  font-size: 15px;
  color: #000;
}

.subscription-details .text p b {
  color: #9b438d;
  font-size: 18px;
}

.subscription-details .custom-control {
  text-align: center;
  margin: 15px 0px;
}

.subscription-details .custom-control a {
  color: #F39C74;
  font-weight: bold;
}

.subscription-details .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #F39C74;
  background-color: #F39C74;
}

.subscription-details .main-butn {
  width: 200px;
  height: 65px;
  line-height: 65px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: 25px auto 0px auto;
  text-align: center;
}

.subscription-details .main-butn i {
  margin: 0px 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.subscription-details .main-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.subscription-details .cont .items {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 20px;
  background-color: #f5f5f5;
}

.subscription-details .cont .items h5 {
  color: #f16f5c;
  margin-top: 15px;
}

.subscription-details .copon {
  padding: 30px;
  border-radius: 20px;
  background-color: #f9f9f9;
  height: 100%;
}

.subscription-details .copon input {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  border: 0;
  margin: 15px 0;
}

.subscription-details .copon h6 {
  margin-top: 10px;
}

.subscription-details .copon h6 strong {
  color: #f16f5c;
  margin: 0 10px;
  font-size: 20px;
}

.subscription-details .copon .date {
  position: relative;
}

.subscription-details .copon .date i {
  position: absolute;
  left: 15px;
  bottom: 35px;
  color: #888;
}

.subscription-details .modal .modal-content {
  border-radius: 25px;
  padding: 20px;
}

.subscription-details .modal .pay-selection {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.subscription-details .modal .pay-selection label {
  width: 100%;
}

.subscription-details .modal .pay-selection label .time-input-element {
  opacity: 0;
  position: absolute;
}

.subscription-details .modal .pay-selection label .time-input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 25px;
}

.subscription-details .modal .pay-selection label .time-input .panel-heading img {
  width: 100px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.subscription-details .modal .pay-selection label .time-input-element:checked + .time-input {
  border: 1px solid #F39C74;
}

.subscription-details .modal .main-butn {
  width: 300px;
  height: 55px;
  line-height: 55px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
}

.subscription-details .modal .main-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #f16f5c), to(#f16f5c));
  background: linear-gradient(90deg, #f16f5c 35%, #f16f5c 100%);
}

.consultation-log {
  padding: 70px 0px;
}

.consultation-log .train_img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto -135px;
}

.consultation-log .train_img img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 10px solid #9995;
  position: relative;
  z-index: 5;
}

.consultation-log .train_img .info {
  padding: 30px 80px;
  background-color: #f5f5f5;
  border-radius: 100px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-width: 300px;
  margin-right: -60px;
  margin-top: 15px;
}

.consultation-log .train_img .info small {
  font-size: 14px;
  color: #000;
}

.consultation-log .train_img .info h6 {
  color: #f16f5c;
  font-size: 21px;
}

.consultation-log .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: 1px solid #ddd;
  border-radius: 25px;
}

.consultation-log .nav .nav-link {
  border-radius: 25px;
  padding: .5rem 2.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, white), to(white));
  background: linear-gradient(90deg, white 35%, white 100%);
}

.consultation-log .nav .nav-link.active {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  font-weight: bold;
}

.consultation-log .card {
  position: relative;
  border-radius: 0;
  padding: 4rem 2rem 4rem 2rem;
  margin-bottom: 55px;
}

.consultation-log .card .badge {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffff;
  border-radius: 0px 0px 0px 20px;
  padding: 1rem 2rem;
  font-size: 13px;
  font-weight: bold;
  background-color: #707070;
}

.consultation-log .card .badge.active {
  background-color: #9B438D;
}

.consultation-log .card table {
  text-align: center;
}

.consultation-log .card table td {
  font-size: 14px;
  padding: .575rem 0rem;
  font-family: 'regular';
}

.consultation-log .card table td.active {
  font-family: 'bold';
  font-weight: bold;
  color: #9B438D;
}

.consultation-log .card table td img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #9995;
}

.consultation-log .card .buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto -85px auto;
}

.consultation-log .card .buttons .butn {
  width: 110px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #F39C74;
  color: #F39C74;
  background-color: #fff;
  font-weight: bold;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: 25px 3px 0px 3px;
  text-align: center;
  font-size: 12px;
}

.consultation-log .card .buttons .butn.active {
  background-color: #F39C74;
  color: #fff;
}

.consultation-log .card .buttons .butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
  color: #fff;
}

.consultation-second-log .buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  margin: 50px auto 0px auto;
}

.consultation-second-log .buttons .butn {
  width: 150px;
  height: 55px;
  line-height: 55px;
  border: 1px solid #F39C74;
  color: #F39C74;
  background-color: #fff;
  font-weight: bold;
  display: block;
  font-weight: bold;
  border-radius: 15px;
  margin: 25px 3px 0px 3px;
  text-align: center;
}

.consultation-second-log .buttons .butn.active {
  background-color: #F39C74;
  color: #fff;
}

.consultation-second-log .buttons .butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
  color: #fff;
}

.consultation-second-log .trainer-card {
  text-align: center;
}

.consultation-second-log .trainer-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin: 0px auto 25px auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.consultation-second-log .trainer-card .rate i {
  color: #D3DAE1;
  margin: 0px 1px;
}

.consultation-second-log .trainer-card .rate i.active {
  color: #FFA800;
}

.chat-sec {
  padding: 70px 0px;
}

.chat-sec .conversations {
  margin-bottom: 25px;
}

.chat-sec .conversations .swiper-slide {
  text-align: center;
  position: relative;
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 20px;
}

.chat-sec .conversations .swiper-slide img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.chat-sec .conversations .swiper-slide .number {
  width: 20px;
  height: 20px;
  background-color: #9B438D;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 0;
  display: block;
  right: 40%;
  -webkit-transform: translateX(60%);
          transform: translateX(60%);
}

.chat-sec .conversations .swiper-slide h6 {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.chat-sec .conversations .swiper-slide .date {
  color: #999;
  font-size: 12px;
}

.chat-sec .conversations .swiper-slide .date i {
  margin: 0px 3px;
}

.chat-sec .chat-box {
  background-color: #F7F9FA;
  padding: 50px 40px;
  position: relative;
}

.chat-sec .chat-box:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #F7F9FA transparent;
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
}

.chat-sec .chat-box .person-name h2 {
  font-size: 30px;
  color: #2e2e2e;
  margin-bottom: 40px;
}

.chat-sec .chat-box .messages {
  height: 600px;
  padding: 0 20px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.chat-sec .chat-box .messages::-webkit-scrollbar {
  width: 8px;
}

.chat-sec .chat-box .messages::-webkit-scrollbar-track {
  background-color: #ddd;
}

.chat-sec .chat-box .messages::-webkit-scrollbar-thumb {
  background-color: #F39C74;
}

.chat-sec .chat-box .messages .another-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 40px;
}

.chat-sec .chat-box .messages .another-person .pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: -30px;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.chat-sec .chat-box .messages .another-person .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.chat-sec .chat-box .messages .another-person p {
  padding: 30px 40px;
  line-height: 30px;
  border-radius: 10px;
  background-color: #eaeaea;
  font-size: 16px;
  color: #545454;
  margin-bottom: 5px;
}

.chat-sec .chat-box .messages .another-person span {
  font-size: 15px;
  color: #545454;
}

.chat-sec .chat-box .messages .your-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 40px;
}

.chat-sec .chat-box .messages .your-message .pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: -30px;
  margin-left: 20px;
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.chat-sec .chat-box .messages .your-message .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.chat-sec .chat-box .messages .your-message p {
  padding: 30px 40px;
  line-height: 30px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.chat-sec .chat-box .messages .your-message span {
  font-size: 15px;
  color: #545454;
}

.chat-sec .chat-box .add-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f3f3f3;
  width: 100%;
}

.chat-sec .chat-box .add-comment .form-group {
  position: relative;
}

.chat-sec .chat-box .add-comment .form-group textarea {
  width: 100%;
  height: 55px;
  resize: none;
  background-color: transparent;
  border-radius: 15px;
  margin-top: 25px;
  padding: 10px 10px 10px 100px;
  font-size: 15px;
}

.chat-sec .chat-box .add-comment .form-group .send {
  position: absolute;
  top: 10px;
  left: 55px;
  border: 1px solid transparent;
  color: #888;
  background-color: transparent;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #f5f5f5;
}

.chat-sec .chat-box .add-comment .form-group .send:hover {
  background-color: #F39C74;
  color: #fff;
}

.chat-sec .chat-box .add-comment .form-group label {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid transparent;
  color: #888;
  background-color: transparent;
  border-radius: 5px;
  width: 35px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  background-color: #f5f5f5;
}

.chat-sec .chat-box .add-comment .form-group label input {
  position: absolute;
  opacity: 0;
  display: none;
}

.chat-sec .chat-box .add-comment .form-group label:hover {
  background-color: #F39C74;
  color: #fff;
}

.daily-routine {
  padding: 70px 0px;
}

.daily-routine .heading h5 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2rem;
  color: #F39C74;
  font-family: 'bold';
  margin: 10px auto 45px auto;
}

.daily-routine .heading h5::after {
  content: '';
  width: 27px;
  height: 27px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.daily-routine .text-heading {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.daily-routine .text-heading .user_img {
  margin-bottom: 20px;
  padding: 10px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-radius: 15px;
  display: inline-block;
}

.daily-routine .text-heading .user_img img {
  width: 200px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  border: 3px solid #fff;
}

.daily-routine .text-heading h4::after {
  display: none;
}

.daily-routine .inner {
  border: 1px solid #ddd;
  padding: 50px 35px;
}

.daily-routine .inner .daily-heading {
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
}

.daily-routine .inner .daily-heading .item-info {
  margin-bottom: 15px;
}

.daily-routine .inner .daily-heading .item-info .progressbr .progress {
  height: 30px;
  border-radius: 20px;
}

.daily-routine .inner .daily-heading .item-info .progressbr .progress .skill .val {
  float: right;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  font-style: normal;
  margin: 0 20px 0 0;
}

.daily-routine .inner .daily-heading .item-info .progressbr .progress-bar {
  text-align: right;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-transition: all 1s ease !important;
  transition: all 1s ease !important;
}

.daily-routine .inner .daily-heading .item-info .progressbr .progress-bar span {
  font-weight: bold;
  padding: 0px 20px;
}

.daily-routine .inner .daily-heading .item-info .date {
  font-family: 'medium';
  font-size: 18px;
  color: #9B438D;
  margin-bottom: 0;
}

.daily-routine .inner .daily-heading .item-info .butn {
  padding: 8px 15px;
  font-size: 14px;
  height: 45px;
  line-height: 5px;
}

.daily-routine .inner .daily-heading .item-info .butn i {
  margin-left: 3px;
}

.daily-routine .inner .daily-diet {
  padding: 35px 0px 0px 0px;
}

.daily-routine .inner .daily-diet h4 {
  color: #EC8E7C;
  margin-bottom: 1.5rem;
}

.daily-routine .inner .daily-diet p {
  font-size: 15px;
  line-height: 2rem;
}

.daily-routine .inner .daily-diet .daily-item {
  margin: 50px 0px;
}

.daily-routine .inner .daily-diet .daily-item:last-child {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  margin-bottom: 0;
}

.daily-routine .inner .daily-diet .daily-item h5 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

.daily-routine .inner .daily-diet .daily-item p {
  font-size: 13px;
}

.daily-routine .inner .daily-diet .daily-item .point {
  color: #000;
  font-size: 14px;
}

.daily-routine .inner .daily-diet .daily-item .point i {
  color: #F39C74;
  margin: 0px 5px;
}

.daily-routine .inner .daily-diet .daily-item .point b {
  color: #666;
  font-family: 'bold';
}

.daily-routine .inner .daily-diet .daily-item .image-content {
  width: 100%;
  height: 180px;
}

.daily-routine .inner .daily-diet .daily-item .image-content .daily-img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.daily-routine .inner .daily-diet .daily-item .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #F39C74;
  background-color: #F39C74;
}

.daily-routine .inner .daily-diet .daily-item .custom-control-label {
  cursor: pointer;
}

.daily-routine .inner .daily-diet .daily-item .custom-control-label::before {
  background-color: #f5f5f5;
}

.daily-routine .inner .daily-diet .daily-item .custom-control-label::before,
.daily-routine .inner .daily-diet .daily-item .custom-control-label::after {
  width: 2rem;
  height: 2rem;
}

.daily-routine .inner .daily-exercise .image-content {
  position: relative;
  overflow: hidden;
}

.daily-routine .inner .daily-exercise .image-content::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0%;
  border: 10px solid #F08B80;
  top: 0px;
  right: 0px;
  border-left: none;
  border-bottom: none;
  opacity: 0;
  z-index: 99;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.daily-routine .inner .daily-exercise .image-content::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 0%;
  border: 10px solid #F08B80;
  top: 0px;
  left: 0px;
  border-left: none;
  border-bottom: none;
  opacity: 0;
  z-index: 99;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.daily-routine .inner .daily-exercise .image-content .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 999;
  text-align: center;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.daily-routine .inner .daily-exercise .image-content:hover::before {
  opacity: 1;
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
  border: none;
  background-color: rgba(240, 139, 128, 0.4);
}

.daily-routine .inner .daily-exercise .image-content:hover::after {
  opacity: 1;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  border: none;
  background-color: rgba(240, 139, 128, 0.4);
}

.daily-routine .inner .daily-exercise .image-content:hover .play-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  color: #F08B80;
}

.daily-routine .inner .daily-exercise .daily-item:last-child {
  border-bottom: 1px solid transparent;
  padding-bottom: 0px;
  margin-bottom: 0;
}

.modal_dayes .choose_day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.modal_dayes .choose_day li {
  width: 31%;
  margin-bottom: 20px;
}

.modal_dayes .choose_day li a {
  width: 100%;
  text-align: center;
  padding: 12px 25px;
  border: 1px dashed #f16f5c50;
  border-radius: 20px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #777;
}

.modal_dayes .choose_day li a:hover {
  border: 1px solid #f16f5c;
}

.trainer-board {
  padding: 70px 0px;
}

.trainer-board .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: 1px solid #ddd;
  border-radius: 25px;
}

.trainer-board .nav .nav-link {
  border-radius: 25px;
  padding: .5rem 2.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, white), to(white));
  background: linear-gradient(90deg, white 35%, white 100%);
}

.trainer-board .nav .nav-link.active {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  font-weight: bold;
}

.trainer-board .tab-wrapper {
  padding: 70px 50px;
  background-color: #F7F9FA;
}

.trainer-board .tab-wrapper .adding-wrapper {
  margin-bottom: 50px;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-outer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-outer .add-more {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: #F39C74;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-outer .add-more:hover {
  background-color: #9B438D;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-outer .edit-btn {
  color: #F39C74;
  cursor: pointer;
  margin-right: 15px;
  line-height: 30px;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-inner {
  margin: 25px 0px;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-inner img {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-inner h5 {
  margin-bottom: 1rem;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-inner p {
  line-height: 2rem;
  font-size: 15px;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-inner .btn-cv {
  width: 150px;
  height: 45px;
  margin-bottom: 25px;
  background-color: #F39C74;
  color: #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid transparent;
}

.trainer-board .tab-wrapper .adding-wrapper .adding-inner .btn-cv:hover {
  background-color: #9b438d;
}

.trainer-board .tab-wrapper .create-copun {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 3rem 2rem;
}

.trainer-board .tab-wrapper .create-copun .text-content {
  margin-bottom: 25px;
}

.trainer-board .tab-wrapper .create-copun .text-content p {
  margin-top: 1rem;
  font-size: 18px;
  color: #df857e;
}

.trainer-board .tab-wrapper .create-copun .buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.trainer-board .tab-wrapper .create-copun .buttons .butn {
  width: 150px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #F39C74;
  color: #F39C74;
  background-color: #fff;
  font-weight: bold;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: 25px 3px 0px 3px;
  text-align: center;
}

.trainer-board .tab-wrapper .create-copun .buttons .butn.active {
  background-color: #F39C74;
  color: #fff;
}

.trainer-board .tab-wrapper .create-copun .buttons .butn.inactive {
  background-color: #707070;
  color: #fff;
  border: 1px solid #707070;
}

.trainer-board .tab-wrapper .create-copun .buttons .butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
  color: #fff;
}

.create-form .inner .form-group {
  position: relative;
}

.create-form .inner .form-group .form-control {
  height: 55px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 1.5rem;
  padding-left: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.create-form .inner .form-group i {
  position: absolute;
  left: 15px;
  top: 20px;
  pointer-events: none;
  color: #888;
}

.create-form .inner .buttons {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.create-form .inner .buttons .butn {
  color: #fff;
  width: 160px;
  height: 50px;
  line-height: 50px;
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 15px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin: 25px 4px 0px 4px;
  color: #F39C74;
  display: inline-block;
  font-weight: bold;
}

.create-form .inner .buttons .butn i {
  margin: 0px 3px;
}

.create-form .inner .buttons .butn.active {
  border: 1px solid #F39C74;
  background-color: #F39C74;
  color: #fff;
}

.create-form .inner .buttons .butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
  color: #fff;
}

.consultation-creating .card table {
  text-align: start;
}

.consultation-creating .card table td {
  padding: .775rem .5rem;
}

.consultation-creating .card .buttons .butn {
  width: 170px;
  border-radius: 20px;
}

.consultation-creating .card .buttons .butn.inactive {
  background-color: #3B3B3B;
  border: 1px solid #3B3B3B;
  color: #fff;
}

.create-subscription .heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 25px 0px;
}

.create-subscription .heading .add-more {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  border: 1px solid #F39C74;
  background-color: #F39C74;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
}

.create-subscription .heading .add-more:hover {
  background-color: #9B438D;
}

.create-subscription .single-item {
  margin-bottom: 25px;
}

.create-subscription .single-item .adding-input {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  padding: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.create-subscription .single-item .adding-input .icon {
  width: 60px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.create-subscription .single-item .adding-input label {
  margin-top: 15px;
  margin-bottom: 0;
  display: block;
}

.create-subscription .single-item .adding-input label input {
  position: absolute;
  opacity: 0;
  display: none;
}

.create-subscription .single-item .adding-input label:hover {
  color: #F08B80;
}

.create-subscription .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #F39C74;
  background-color: #F39C74;
}

.adding-input {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  padding: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adding-input .icon {
  width: 60px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.adding-input label {
  margin-top: 15px;
  margin-bottom: 0;
  display: block;
}

.adding-input label input {
  position: absolute;
  opacity: 0;
  display: none;
}

.adding-input label:hover {
  color: #F08B80;
}

.subscription-log .card {
  padding: 0 0 25px 0px;
}

.subscription-log .card .card-header {
  position: relative;
  background-color: #fff;
}

.subscription-log .card .card-header .date {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  color: #888;
}

.subscription-log .card .card-header .content {
  text-align: center;
  margin: 35px 0px 15px 0px;
}

.subscription-log .card .card-header .content .profile-pic {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: block;
  margin: auto;
}

.subscription-log .card .card-header .content h5 {
  margin: 1rem 0rem;
}

.subscription-log .card .card-header .content .chat-link {
  font-weight: 600;
  color: #F08B80;
}

.subscription-log .card .card-header .content .chat-link i {
  margin: 0px 3px;
}

.subscription-log .card .card-header .content .chat-link:hover {
  color: #9B438D;
}

.subscription-log .card .card-body table {
  width: 70%;
  margin: auto;
}

.subscription-log .card .buttons .butn {
  margin: 25px 3px 40px 3px;
}

.content-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  min-width: 100%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-top: 50px;
}

.content-table thead tr {
  background-color: #F39C74;
  color: white;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
  font-weight: bold;
}

.content-table td {
  color: #666;
}

.content-table td i {
  margin-left: 5px;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #F39C74;
}

.points {
  padding: 10px 15px;
  border: 1px dashed #f16f5c;
  color: #f16f5c;
  font-size: 13px;
  font-weight: bold;
}

/* ---------- rate --------- */
.stars {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.stars input {
  border-radius: 0;
  visibility: hidden;
  width: 30px;
  cursor: pointer;
}

.stars input:after {
  content: '\f005';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px;
  color: #EEE;
  visibility: visible;
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-shadow: 0px 2px 4px RGBA(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.stars input:hover:after {
  opacity: 0.8;
}

.rate-stars {
  color: #fc0;
}

.stars input:checked:after {
  color: #fc0;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.stars input:checked ~ input:after {
  color: #fc0;
}

.stars input:not(:checked):after {
  color: #eee;
}

/***************************** Start trainer-packages Page *****************************/
.trainer-packages .card-body {
  padding: 4.5rem 1rem 3rem 1rem !important;
}

.trainer-packages table td,
.trainer-packages table th {
  font-size: 15px;
  padding: .5rem 1rem;
}

.trainer-packages .premium table td,
.trainer-packages .premium table th {
  color: #fff;
}

/***************************** Start checkout Page *****************************/
.checkout-pg .checkout-inner {
  padding: 30px 0px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.checkout-pg .checkout-inner .text-heading {
  margin-bottom: 50px;
}

.checkout-pg .checkout-inner .text-heading h4 {
  margin: unset;
}

.checkout-pg .checkout-inner .pay .form-group {
  position: relative;
  margin-bottom: 30px;
}

.checkout-pg .checkout-inner .pay .form-group .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #F39C74;
  background-color: #F39C74;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkout-pg .checkout-inner .pay .form-group .custom-control-input:checked ~ .custom-control-label p {
  color: #9b438d;
}

.checkout-pg .checkout-inner .pay .form-group .custom-control-label::after, .checkout-pg .checkout-inner .pay .form-group .custom-control-label::before {
  right: -.5rem;
}

.checkout-pg .checkout-inner .pay .form-group img {
  width: 60px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: -10px;
}

.checkout-pg .checkout-inner .pay .form-group img span {
  font-size: 17px;
}

.checkout-pg .checkout-inner .pay .form-group input {
  display: inline-block;
  width: auto;
  margin-left: 10px;
}

.checkout-pg .checkout-inner .pay .form-group label {
  display: contents;
}

.checkout-pg .checkout-inner .pay .form-group label p {
  position: relative;
  top: 9px;
  margin: 0 5px;
  font-weight: bold;
}

.checkout-pg .checkout-inner .pay .submit-btn {
  width: 200px;
  height: 45px;
  border-radius: 20px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-weight: bold;
  display: block;
  margin: auto;
}

.checkout-pg .checkout-inner .pay .submit-btn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-color: transparent;
}

.drag_div .exercises-inner {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 30px;
  border: 1px solid #9993;
  background-color: #fafafa;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
}

.drag_div2 .food_system {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 30px;
  border: 1px solid #9993;
  background-color: #fafafa;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
}

.add-more {
  position: relative;
}

.add-more::after {
  position: absolute;
  content: "\f067";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  left: 50%;
  top: 50%;
  font-size: 15px;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cls {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-bottom-right-radius: 5px;
  color: #fff;
  background-color: #F39C74;
  cursor: pointer;
}

/* ---------- testimonials --------- */
.testimonials {
  position: relative;
  z-index: 8;
  padding: 50px 0;
}

.testimonials .item {
  text-align: center;
  padding: 80px 30px;
}

.testimonials .item .box {
  position: relative;
}

.testimonials .item .box:before {
  content: '';
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: #1f2229;
  border-radius: 30px;
  z-index: 3 !important;
}

.testimonials .item .box .bx-bg {
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  border-radius: 30px;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
  z-index: -1 !important;
}

.testimonials .item .box .rate i {
  color: #fc0;
}

.testimonials .item .img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  margin: auto;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonials .item .img:after {
  content: '';
  position: absolute;
  width: 98px;
  height: 98px;
  top: -4px;
  left: -4px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 50%;
}

.testimonials .item .text {
  margin: 0 auto 30px;
  width: 92%;
  color: #eee;
  opacity: .9;
}

.testimonials .item .info span {
  display: block;
  color: #fa941e;
  margin-bottom: 10px;
}

.testimonials .item .info h6 {
  font-size: 20px;
  display: inline-block;
  padding: 10px 70px;
  background: rgba(255, 255, 255, 0.05);
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.1)), to(transparent));
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.testimonials .text-heading {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-bottom: 30px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #9992;
}

.testimonials .text-heading h4 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 2.5rem;
  color: #F39C74;
  display: inline-block;
}

.testimonials .text-heading h4::after {
  content: '';
  width: 35px;
  height: 35px;
  background: url(../images/icons/right-nav-active.svg);
  background-position: right;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.testimonials .text-heading a h4::after {
  right: unset;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.testimonials .swiper_clients {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.testimonials .swiper-pagination-bullet-active {
  background: #f16f5c;
}

.swiper_clients {
  overflow: hidden;
}

.testimonials .item .box .img,
.testimonials .item .box .cont {
  position: relative;
  z-index: 5;
}

.testimonials .slick-dots li {
  background: #eee;
}

.testimonials .slide-arrow {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 0;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  background: #fff;
  color: #fa941e;
  position: absolute;
  top: 50%;
  outline: none !important;
  z-index: 3;
}

.testimonials .slide-arrow:hover {
  color: #fff;
  background: #fa941e;
}

.testimonials .slide-arrow.prev-arrow {
  left: 0;
}

.testimonials .slide-arrow.next-arrow {
  right: 0;
}

.butn-wrapper {
  position: relative;
  z-index: 9;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.butn-wrapper .main-butn {
  width: 200px;
  height: 45px;
  line-height: 45px;
  background-color: #F39C74;
  border: 1px solid #F39C74;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 25px;
  margin: auto;
  text-align: center;
}

.butn-wrapper .main-butn:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #9b438d), to(#f16f5c));
  background: linear-gradient(90deg, #9b438d 35%, #f16f5c 100%);
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

/* ---------- testimonials --------- */
/* ---------- rate --------- */
.stars {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  direction: ltr;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.stars input {
  border-radius: 0;
  visibility: hidden;
  width: 30px;
  cursor: pointer;
}

.stars input:after {
  content: '\f005';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px;
  color: #EEE;
  visibility: visible;
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-shadow: 0px 2px 4px RGBA(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.stars input:hover:after {
  opacity: 0.8;
}

.rate-stars {
  color: #fc0;
}

.stars input:checked:after {
  color: #fc0;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.stars input:checked ~ input:after {
  color: #fc0;
}

.stars input:not(:checked):after {
  color: #eee;
}
/*# sourceMappingURL=style.css.map */