@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: 'Tajawal', sans-serif;
}

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

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

/***************************** 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;
}

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

a:focus {
  outline: 0;
}

button {
  border: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

form .form-group {
  position: relative;
}

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

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

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

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

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

form .form-group .form-control:focus ~ .focus-border:before,
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;
}

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

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

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

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: linear-gradient(-135deg, #755C98, #CB2262);
  color: #fff;
  text-align: center;
  line-height: 45px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  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.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #fff;
}

.scroll-top-btn:hover i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.dir-l {
  direction: ltr;
}

.text-left {
  text-align: left;
}

.h-100 {
  height: 100%;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: transparent;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Start Edit Modal */
.modal-content {
  border-radius: 45px;
  padding: 25px;
}

.modal-content button.close {
  text-align: end;
}

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

@-webkit-keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}

@keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container {
  position: absolute;
  z-index: 9;
  width: 100%;
}

.navs-container .navbar {
  background-color: transparent;
}

.navs-container .navbar.navbar-fixed-top {
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.navs-container .navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  opacity: .97;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  background-color: #333;
  -webkit-box-shadow: 0px 4px 15px 0px #333;
          box-shadow: 0px 4px 15px 0px #333;
}

.navs-container .navbar.navbar-fixed-top.scrolled .nav-link.active {
  color: #CB2262;
}

.navs-container .navbar.navbar-fixed-top.scrolled .navbar-brand img {
  width: 95px;
  height: auto;
}

.navs-container .navbar.navbar-fixed-top.scrolled .links .lang .lang-btn.active {
  color: #CB2262;
}

.navs-container .navbar .navbar-brand img {
  width: 220px;
  padding: 10px 0;
}

.navs-container .navbar .nav-link {
  margin: 0px 15px;
  font-size: 15px;
  color: #fff;
  text-align: center;
}

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

.navs-container .navbar .links .main-butn {
  width: 120px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #755C98, #CB2262);
  color: #fff;
  border: 1px solid transparent;
  display: inline-block;
  border-radius: 25px;
  text-align: center;
  margin-left: 15px;
}

.navs-container .navbar .links .main-butn:hover {
  background: transparent;
  color: #CB2262;
  border: 1px solid #CB2262;
}

.navs-container .navbar .links .lang {
  direction: ltr;
  display: inline-block;
  color: #ccc;
}

.navs-container .navbar .links .lang .lang-btn {
  color: #fff;
  margin: 0px 5px;
}

.navs-container .navbar .links .lang .lang-btn.active {
  color: #CB2262;
}

.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: #CB2262;
  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: #CB2262;
  -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 {
  padding: 70px 0px 0px 0px;
  background-color: #202020;
  position: relative;
  overflow: hidden;
}

footer .content {
  text-align: center;
  margin-bottom: 30px;
}

footer .content .logo {
  width: 250px;
}

footer .content .links {
  margin-top: 25px;
}

footer .content .links .nav-link {
  font-weight: 500;
  margin: 0px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #ddd;
}

footer .copyright {
  padding: 15px 0px;
}

footer .copyright p {
  text-align: left;
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
}

footer .copyright .social-links a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #eee;
  display: inline-block;
  text-align: center;
  margin: 0px 3px;
}

footer .copyright .social-links a:hover {
  border: 1px solid #CB2262;
  color: #333;
  background-color: #CB2262;
}

footer .logo-l {
  position: absolute;
  top: 0;
  right: 0px;
}

/***************************** Start Edit Home Page *****************************/
header {
  position: relative;
  background: url(../images/header-bg.png) no-repeat;
  background-size: cover;
}

header::after {
  content: '';
  background-color: #202020;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .5;
}

header .swiper-container {
  padding: 70px 0px 175px 0px;
}

header .swiper-container .text h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 3vw;
}

header .swiper-container .text p {
  color: #eee;
  line-height: 2rem;
  font-size: 14px;
  margin: 1.5rem 0rem;
}

header .swiper-container .text .more-butn {
  width: 150px;
  height: 45px;
  display: block;
  text-align: center;
  margin: 15px 2px;
  line-height: 45px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 25px;
  position: relative;
}

header .swiper-container .text .more-butn::before {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  opacity: 0;
  background: rgba(211, 228, 62, 0.1);
  -webkit-transform: scale(0.1, 0.1);
          transform: scale(0.1, 0.1);
  border-radius: 50%;
}

header .swiper-container .text .more-butn::after {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

header .swiper-container .text .more-butn:hover {
  color: #CB2262;
}

header .swiper-container .text .more-butn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  border-radius: 25px;
}

header .swiper-container .text .more-butn:hover::after {
  opacity: 0;
}

header .swiper-container .swiper-pagination {
  position: absolute;
  right: 50px;
  color: #fff;
  left: unset;
  direction: ltr !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  bottom: 40px;
}

header .swiper-container .swiper-pagination span {
  font-family: 'bold';
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  padding: 0 5px;
}

header .swiper-container .swiper-pagination .swiper-pagination-current {
  font-size: 50px;
  -webkit-text-stroke-color: #CB2262;
}

header .swiper-container .swiper-button-next {
  height: 74px;
  left: unset;
  right: 165px;
  bottom: 40px;
  top: unset;
  background-size: 31px 25px;
  -webkit-filter: invert(198%) sepia(93%) saturate(2681%) hue-rotate(580deg) brightness(284%) contrast(138%);
          filter: invert(198%) sepia(93%) saturate(2681%) hue-rotate(580deg) brightness(284%) contrast(138%);
}

header .swiper-container .swiper-button-prev {
  height: 74px;
  bottom: 40px;
  right: 0;
  top: unset;
  background-size: 31px 25px;
  -webkit-filter: invert(198%) sepia(93%) saturate(2681%) hue-rotate(580deg) brightness(284%) contrast(138%);
          filter: invert(198%) sepia(93%) saturate(2681%) hue-rotate(580deg) brightness(284%) contrast(138%);
}

header .swiper-container .social-links {
  position: absolute;
  left: 0;
  bottom: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  direction: ltr !important;
}

header .swiper-container .social-links a {
  text-align: center;
  margin: 0px 10px;
  color: #fff;
  font-family: 'bold';
  text-transform: uppercase;
}

header .swiper-container .social-links a img {
  width: 25px;
  height: 25px;
  margin: 0px auto 15px auto;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .swiper-container .social-links a:hover {
  color: #CB2262;
}

header .swiper-container .social-links a:hover img {
  -webkit-filter: invert(38%) sepia(24%) saturate(888%) hue-rotate(223deg) brightness(95%) contrast(87%);
          filter: invert(38%) sepia(24%) saturate(888%) hue-rotate(223deg) brightness(95%) contrast(87%);
}

section {
  padding: 70px 0px;
}

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

section .text-heading h3 {
  margin-bottom: .8rem;
  font-family: "bold";
  font-size: 2rem;
}

section .text-heading p {
  font-size: 13px;
}

section .text-heading .sub-title {
  font-size: 18px;
  line-height: 33.75px;
  font-weight: 700;
  position: relative;
  padding-right: 65px;
}

section .text-heading .sub-title::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-color: #CB2262;
}

section .text-heading .sub-title::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #CB2262;
}

section .border-butn {
  width: 150px;
  height: 45px;
  display: block;
  text-align: center;
  margin: 15px 2px;
  line-height: 45px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 25px;
  position: relative;
}

section .border-butn::before {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  opacity: 0;
  background: rgba(211, 228, 62, 0.1);
  -webkit-transform: scale(0.1, 0.1);
          transform: scale(0.1, 0.1);
  border-radius: 50%;
}

section .border-butn::after {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

section .border-butn:hover {
  color: #CB2262;
}

section .border-butn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  border-radius: 25px;
}

section .border-butn:hover::after {
  opacity: 0;
}

section .bg-butn {
  width: 150px;
  height: 45px;
  display: block;
  text-align: center;
  margin: 15px 2px;
  line-height: 45px;
  color: #fff;
  background: linear-gradient(-135deg, #755C98, #CB2262);
  border-radius: 25px;
  position: relative;
  font-weight: bold;
}

section .bg-butn::before {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  opacity: 0;
  background: #333333;
  -webkit-transform: scale(0.1, 0.1);
          transform: scale(0.1, 0.1);
  border-radius: 50%;
}

section .bg-butn::after {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

section .bg-butn span {
  position: relative;
  z-index: 5;
}

section .bg-butn span i {
  margin-left: .25rem;
}

section .bg-butn:hover {
  color: #fff;
}

section .bg-butn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  border-radius: 25px;
}

section .bg-butn:hover::after {
  opacity: 0;
}

.about-sec {
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
}

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

.about-sec .text h6 {
  color: #444;
  font-size: .9rem;
  margin: 1.5rem 0rem 1rem;
}

.about-sec .text p {
  font-size: 14px;
  line-height: 1.8rem;
}

.about-sec .text .bg-butn {
  margin-top: 20px;
}

.about-sec .image-content {
  position: relative;
  height: 453px;
}

.about-sec .image-content::after {
  content: '';
  width: 80%;
  height: 80%;
  border: 2px solid #CB2262;
  background-color: transparent;
  display: block;
  position: absolute;
  top: 12%;
  right: 18%;
  z-index: 1;
  -webkit-animation: rotate-center 4000ms ease-in-out infinite alternate both;
          animation: rotate-center 4000ms ease-in-out infinite alternate both;
}

.about-sec .image-content img {
  width: 85%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}

.about-sec .image-content img.back-img {
  height: 250px;
  margin-right: auto;
  float: left;
}

.about-sec .image-content img.front-img {
  position: absolute;
  top: 200px;
  height: 250px;
  right: 0;
}

.about-sec .logo-l {
  position: absolute;
  top: 0;
  right: -20px;
}

.services-sec {
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
}

.services-sec .card {
  position: relative;
  border: none;
  z-index: 2;
  background-color: transparent;
  margin-bottom: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.services-sec .card .image-content {
  width: 100%;
  height: 250px;
  position: relative;
}

.services-sec .card .image-content::after {
  content: '';
  width: 50px;
  height: 120px;
  position: absolute;
  top: -15px;
  left: -15px;
  display: block;
  border-top: 1px solid #CB2262;
  border-left: 1px solid #CB2262;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.services-sec .card .image-content::before {
  content: '';
  width: 50px;
  height: 120px;
  position: absolute;
  bottom: -15px;
  right: -15px;
  display: block;
  border-right: 1px solid #CB2262;
  border-bottom: 1px solid #CB2262;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.services-sec .card .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-sec .card .card-body {
  text-align: center;
  background-color: #f8f8f8;
}

.services-sec .card .card-body h6 {
  direction: ltr !important;
  margin-top: 1rem;
  font-family: 'medium';
}

.services-sec .card .card-body h6 span {
  font-family: 'bold';
  color: #CB2262;
  font-size: 1.5rem;
  margin-right: 8px;
}

.services-sec .card:hover {
  -webkit-box-shadow: 0px 4px 15px 0px #ddd;
          box-shadow: 0px 4px 15px 0px #ddd;
}

.services-sec .card:hover .image-content::after {
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
  border: none;
  background-color: rgba(203, 34, 98, 0.4);
}

.services-sec .card:hover .image-content::before {
  bottom: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  border: none;
  background-color: rgba(203, 34, 98, 0.4);
}

.services-sec .dumble-img-r {
  width: 250px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  right: 0;
  top: 150px;
}

.services-sec .dumble-img-l {
  width: 250px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 0;
  bottom: 150px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.blog-sec {
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
  padding: 70px 0px 200px 0px;
}

.blog-sec .blog-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #CB2262;
}

.blog-sec .blog-carousel.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 15px 7px;
}

.blog-sec .card {
  border: none;
  border-radius: 20px;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.blog-sec .card .image-content {
  width: 100%;
  height: 270px;
  position: relative;
  overflow: hidden;
}

.blog-sec .card .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1.5s ease-in;
  transition: all 1.5s ease-in;
}

.blog-sec .card .card-body .date {
  color: #888;
  font-size: 14px;
  display: block;
}

.blog-sec .card .card-body .badge {
  background-color: #202020;
  color: #fff;
  font-size: 15px;
  padding: .5rem 1.2rem;
  margin: .5rem 0rem 1rem 0rem;
}

.blog-sec .card .card-body p {
  line-height: 1.8rem;
}

.blog-sec .card .card-body a {
  color: #CB2262;
}

.blog-sec .card .card-body a i {
  margin-left: 3px;
  margin-top: 1px;
}

.blog-sec .card .card-body a:hover {
  font-weight: bold;
}

.blog-sec .card:hover {
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
}

.blog-sec .card:hover img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.blog-sec .logo-pattern-r {
  position: absolute;
  top: -50px;
  right: -20px;
}

.feedback-sec {
  background-color: #171715;
  position: relative;
  padding: 0px 0px 70px 0px;
}

.feedback-sec .inner {
  position: relative;
  top: -150px;
}

.feedback-sec .inner .feedback-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #CB2262;
}

.feedback-sec .inner .feedback-carousel.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 20px 7px;
  background: #707070;
  opacity: .7;
}

.feedback-sec .inner .feedback-carousel .card {
  padding: 2.5rem 2rem;
  -webkit-transition: all .5s ease-in;
  transition: all .5s ease-in;
}

.feedback-sec .inner .feedback-carousel .card h6 {
  text-align: center;
  line-height: 2rem;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.feedback-sec .inner .feedback-carousel .card .client-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.feedback-sec .inner .feedback-carousel .card .client-info .profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feedback-sec .inner .feedback-carousel .card .client-info .text {
  padding-right: 15px;
}

.feedback-sec .inner .feedback-carousel .card .client-info .text p {
  margin-bottom: .4rem;
  font-weight: bold;
  font-size: 16px;
}

.feedback-sec .inner .feedback-carousel .card .client-info .text span {
  font-size: 15px;
}

.feedback-sec .inner .feedback-carousel .owl-item.center .card {
  background-color: #1C1C1C;
}

.feedback-sec .inner .feedback-carousel .owl-item.center .card h6 {
  color: #fff;
}

.feedback-sec .inner .feedback-carousel .owl-item.center .card .text p {
  color: #fff;
}

.feedback-sec .inner .feedback-carousel .owl-item.center .card .text span {
  color: #ddd;
}

.feedback-sec .newsletter {
  background-color: #F5F6F8;
  border-radius: 15px;
  padding: 3.5rem;
  margin-top: -100px;
}

.feedback-sec .newsletter .text {
  text-align: center;
}

.feedback-sec .newsletter .text h5 {
  font-family: 'bold';
}

.feedback-sec .newsletter .text p {
  margin-bottom: 0;
}

.feedback-sec .newsletter .form-group {
  margin-bottom: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
}

.feedback-sec .newsletter .form-group .form-control {
  height: 55px;
  border: 1px solid transparent;
  padding-right: 150px;
  border-radius: 10px;
  font-size: 13px;
}

.feedback-sec .newsletter .form-group .bg-butn {
  border-radius: 0px 10px 10px 0px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  height: 55px;
}

.feedback-sec .newsletter .form-group .bg-butn::after {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
}

.feedback-sec .newsletter .form-group .bg-butn::before {
  border-radius: 0px 10px 10px 0px;
}

.feedback-sec .logo-pattern-r {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0px;
}

.feedback-sec .logo-pattern-l {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
}

/***************************** Start Edit blog Page *****************************/
.page-heading {
  background: url(../images/page-heading.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

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

.page-heading .bread {
  position: relative;
  z-index: 5;
  padding: 150px 0px 50px;
}

.page-heading .bread h4 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
}

.page-heading .bread .breadcrumb {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}

.page-heading .bread .breadcrumb .breadcrumb-item a {
  color: #fff;
  font-size: 20px;
}

.page-heading .bread .breadcrumb .breadcrumb-item::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #CB2262;
  display: inline-block;
  margin: 0px 5px 0px 15px;
}

.page-heading .bread .breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}

.page-heading .bread .breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-size: 20px;
}

.blog-wrapper .text-heading h3 {
  color: #555;
  line-height: 2.9rem;
}

.blog-wrapper .card {
  margin-bottom: 30px;
}

/***************************** Start Edit single blog Page *****************************/
.single-blog {
  background-color: #f8f8f8;
}

.single-blog .single-blog-inner {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  border-radius: 10px;
}

.single-blog .single-blog-inner .blog-img {
  width: 100%;
  height: 350px;
  border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-blog .single-blog-inner .inner {
  padding: 0px 35px 35px 35px;
  border-radius: 0px 0px 10px 10px;
}

.single-blog .single-blog-inner .inner .details {
  margin: 15px 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.single-blog .single-blog-inner .inner .details .author p {
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  color: #555;
}

.single-blog .single-blog-inner .inner .details .date p {
  margin-bottom: 0;
  margin-right: 40px;
  font-weight: bold;
  font-size: 13px;
  color: #555;
}

.single-blog .single-blog-inner .inner .details i {
  margin-left: 5px;
  color: #CB2262;
}

.single-blog .single-blog-inner .inner h4 {
  margin: 0px 0px 15px 0px;
  position: relative;
  padding-right: 65px;
}

.single-blog .single-blog-inner .inner h4::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-color: #CB2262;
}

.single-blog .single-blog-inner .inner h4::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #CB2262;
}

.single-blog .single-blog-inner .inner .desc {
  font-size: 15px;
  line-height: 2rem;
}

/***************************** Start Edit Contact Page *****************************/
.contact-pg {
  position: relative;
  overflow: hidden;
}

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

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

.contact-pg .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: #CB2262;
  background-image: linear-gradient(-72deg, #CB2262 0%, #CB2262 99%);
  position: relative;
  border-radius: 5px;
}

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

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

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

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

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

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

.contact-pg .form-container .bg-butn {
  margin: 15px auto;
  border: 0;
}

.contact-pg .dumble-img-r {
  width: 250px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 150px;
}

.contact-pg .dumble-img-l {
  width: 250px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 0;
  top: 550px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}

/***************************** Start Edit Gallery Page *****************************/
.gallery-pg {
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
}

.gallery-pg .tabs {
  margin-bottom: 35px;
}

.gallery-pg .tabs .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
}

.gallery-pg .tabs .nav .nav-link {
  font-family: 'bold';
  color: #333;
  position: relative;
  padding: .5rem 1.5rem;
  font-size: 16px;
}

.gallery-pg .tabs .nav .nav-link::before {
  content: '\f060';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  right: -10px;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #CB2262;
}

.gallery-pg .tabs .nav .nav-link.active {
  background-color: transparent;
  color: #CB2262;
}

.gallery-pg .tabs .nav .nav-link.active::before {
  opacity: 1;
  right: 0;
}

.gallery-pg .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-pg .item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-pg .item .more-butn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #CB2262;
  color: #fff;
  font-size: 20px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.gallery-pg .item .overlay-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  padding: 0 15px 6px;
  -webkit-transform: perspective(500px) rotateX(90deg);
          transform: perspective(500px) rotateX(90deg);
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  z-index: 1;
  height: 110px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #CB2262;
}

.gallery-pg .item .overlay-text h5 {
  margin-bottom: 0;
  margin-top: .5rem;
}

.gallery-pg .item::before {
  content: "";
  bottom: 0;
  position: absolute;
  max-width: 100%;
  height: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.gallery-pg .item:hover img {
  -webkit-animation-name: imagemove;
          animation-name: imagemove;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.gallery-pg .item:hover .more-butn {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}

.gallery-pg .item:hover::before {
  opacity: 1;
  z-index: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  height: 100%;
}

.gallery-pg .item:hover .overlay-text {
  -webkit-transform: perspective(500px) rotateX(0);
          transform: perspective(500px) rotateX(0);
}

.gallery-pg .logo-pattern-r {
  position: absolute;
  top: 0;
  right: -20px;
}

/***************************** Start Edit About Page *****************************/
.about-wrapper h3 {
  position: relative;
  padding-right: 65px;
}

.about-wrapper h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-color: #CB2262;
}

.about-wrapper h3::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #CB2262;
}

.about-goals {
  overflow: hidden;
  background-color: #f8f8f8;
}

.about-goals .card {
  margin-bottom: 15px;
  padding: 1rem;
  border: none;
  border-radius: 15px;
  background-color: #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.about-goals .card img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  opacity: 0.5;
}

.about-goals .card h4 {
  margin: 1.3rem 0rem 1rem;
  color: #555;
}

.about-goals .card p {
  font-size: 13px;
  line-height: 1.5rem;
}

.about-goals .card:hover {
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
}

.about-goals .card:hover img {
  -webkit-animation-name: tada;
          animation-name: tada;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.certificates-sec {
  padding: 70px 0px 230px 0px;
  background-color: #f8f8f8;
}

.certificates-sec .text {
  margin-bottom: 30px;
}

.certificates-sec .text h3 {
  position: relative;
  padding-right: 65px;
}

.certificates-sec .text h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-color: #CB2262;
}

.certificates-sec .text h3::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #CB2262;
}

.certificates-sec .certificates-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #CB2262;
}

.certificates-sec .certificates-carousel.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 15px 7px;
}

.certificates-sec .certificates-carousel img {
  width: 100%;
  height: 285px;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************** Start Edit Form Page *****************************/
.diet-form {
  position: relative;
  background-color: #f8f8f8;
}

.diet-form .inner {
  background-color: #fff;
  padding: 50px 45px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  border-radius: 15px;
}

.diet-form .inner .text h3 {
  position: relative;
  padding-right: 65px;
}

.diet-form .inner .text h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-color: #CB2262;
}

.diet-form .inner .text h3::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #CB2262;
}

.diet-form .inner form label {
  font-weight: bold;
  color: #777;
  margin-bottom: .7rem;
}

.diet-form .inner form .example-link {
  color: #CB2262;
  float: left;
  font-weight: bold;
}

.diet-form .inner form .example-link:hover {
  color: #CB2262;
}

.diet-form .inner form .form-group {
  margin-bottom: 2rem;
}

.diet-form .inner form .form-group .form-control {
  height: 50px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 2px solid #eee;
}

.diet-form .inner form .form-group .form-control:focus {
  border: 2px solid #CB2262;
}

.diet-form .inner form .bg-butn {
  width: 200px;
  height: 55px;
  line-height: 55px;
  margin: 25px auto 0px auto;
}

/***************************** Start Edit calorie-calculator Page *****************************/
.calorie-calculator {
  background-color: #f8f8f8;
}

.calorie-calculator .inner {
  background-color: #fff;
  padding: 50px 45px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.calorie-calculator .inner .form-container {
  margin-bottom: 25px;
}

.calorie-calculator .inner .form-container h3 {
  position: relative;
  padding-right: 65px;
}

.calorie-calculator .inner .form-container h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-color: #CB2262;
}

.calorie-calculator .inner .form-container h3::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #CB2262;
}

.calorie-calculator .inner .form-container label {
  font-weight: bold;
  color: #666;
  line-height: 45px;
}

.calorie-calculator .inner .form-container .form-group {
  margin-bottom: 1rem;
}

.calorie-calculator .inner .form-container .form-group .form-control {
  height: 50px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 2px solid #eee;
}

.calorie-calculator .inner .form-container .form-group .form-control:focus {
  border: 2px solid #CB2262;
}

.calorie-calculator .inner .form-container .bg-butn {
  width: 255px;
  height: 55px;
  line-height: 55px;
  margin: 25px auto 0px auto;
}

.calorie-calculator .inner .calorie-result {
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
  padding: 50px 30px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 15px;
  background-color: #333;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.calorie-calculator .inner .calorie-result .calorie-span {
  color: #fff;
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.calorie-calculator .inner .calorie-result .calorie-result-span {
  padding: 40px 0 10px 0;
  font-size: 40px;
  color: #CB2262;
}

.calorie-calculator .inner .calorie-result .per-day {
  display: block;
  color: #fff;
  margin: 10px 0;
}

/***************************** Start Edit privacy-policy Page *****************************/
.privacy-policy {
  background-color: #f8f8f8;
}

.privacy-policy .inner {
  background-color: #fff;
  padding: 50px 45px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  border-radius: 15px;
}

.privacy-policy .inner .text h3 {
  margin-bottom: 30px;
  position: relative;
  padding-right: 65px;
}

.privacy-policy .inner .text h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-color: #CB2262;
}

.privacy-policy .inner .text h3::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #CB2262;
}

.privacy-policy .inner .text p {
  line-height: 2.2rem;
  font-size: 15px;
}

.privacy-policy .inner .text p i {
  color: #CB2262;
  margin: 0px 5px;
  font-size: 12px;
}

/***************************** Start Edit register Page *****************************/
.register-pg {
  padding: 70px 0;
  background-color: #F5F6F8;
}

.register-pg .inner {
  background-color: #fff;
}

.register-pg .inner .main-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.register-pg .inner .form-container {
  margin: 35px 0 0 35px;
  height: 100%;
}

.register-pg .inner .form-container .heading_t {
  padding: 20px 15px;
  background-color: #4C299F;
  -webkit-box-shadow: 0 5px 20px 0 #999;
          box-shadow: 0 5px 20px 0 #999;
  position: relative;
}

.register-pg .inner .form-container .heading_t .pattern {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
}

.register-pg .inner .form-container .heading_t .in-flex {
  position: relative;
  z-index: 1;
}

.register-pg .inner .form-container .heading_t .logo {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}

.register-pg .inner .form-container .heading_t .title {
  color: #fff;
  font-weight: bold;
}

.register-pg .inner .form-container .heading_t .another_opt {
  color: #ddd;
  font-size: 15px;
}

.register-pg .inner .form-container .heading_t .another_opt a {
  font-weight: bold;
  margin: 0 5px;
  color: #fff;
}

.register-pg .inner .form-container .heading_t .another_opt a:hover {
  color: #ec6a9c;
}

.register-pg .inner .form-container .forget-btn {
  font-size: 13px;
  color: #999;
  line-height: 45px;
}

.register-pg .inner .form-container .forget-btn:hover {
  color: #CB2262;
}

.register-pg .inner .form-container .custom-checkbox {
  margin-bottom: 35px;
}

.register-pg .inner .form-container .custom-checkbox a {
  color: #CB2262;
  font-weight: bold;
}

.register-pg .inner .form-container .custom-checkbox .custom-control-label::before {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.register-pg .inner .form-container .custom-checkbox .custom-control-label::after {
  top: .285rem;
  right: -1.45rem;
  width: 1.2rem;
  height: 1.2rem;
}

.register-pg .inner .form-container .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #CB2262;
  background-color: #CB2262;
}

.register-pg .inner .form-container .subTitle {
  font-weight: 600;
  color: #333;
}

.register-pg .inner .form-container .code-form-group {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.register-pg .inner .form-container .code-form-group input {
  width: 20%;
  display: inline-block;
  margin: auto 5px;
  text-align: center;
  margin-bottom: 5px;
}

.register-pg .inner .form-container .timer {
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  font-weight: bold;
}

.register-pg .inner .form-container .timer .countdown {
  margin: 0 5px;
  font-weight: bold;
  color: #CB2262;
}

.register-pg .inner .form-container .timer p,
.register-pg .inner .form-container .timer .countdown {
  font-size: 14px;
}

.register-pg .inner .form-container .resend-link {
  text-align: center;
  display: block;
  font-weight: bold;
  text-decoration: underline;
  color: #755C98;
  font-size: 14px;
}

.register-pg .inner .form-container .resend-link:hover {
  color: #CB2262;
  text-decoration: none;
}

.form-wrapper .form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-wrapper .form-group .form-control {
  font-size: 13px;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #000;
  font-weight: bold;
  border-radius: 0;
}

.form-wrapper .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #CB2262;
}

.form-wrapper .form-group .form-control::-webkit-input-placeholder {
  font-size: 13px;
  color: #999;
  font-family: "regular";
}

.form-wrapper .form-group .form-control:-ms-input-placeholder {
  font-size: 13px;
  color: #999;
  font-family: "regular";
}

.form-wrapper .form-group .form-control::-ms-input-placeholder {
  font-size: 13px;
  color: #999;
  font-family: "regular";
}

.form-wrapper .form-group .form-control::placeholder {
  font-size: 13px;
  color: #999;
  font-family: "regular";
}

.form-wrapper .form-group input,
.form-wrapper .form-group select {
  height: 55px;
}

.form-wrapper .floating-label {
  font-size: 13px;
  color: #999;
  position: absolute;
  pointer-events: none;
  top: 18px;
  right: 10px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  background-color: #fff;
  padding: 0 5px;
}

.form-wrapper .form-control:focus ~ .floating-label,
.form-wrapper .form-control:not(:focus):valid ~ .floating-label {
  top: -9px;
  bottom: 0px;
  font-size: 12px;
  opacity: 1;
  color: #CB2262;
  font-weight: 600;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.form-wrapper .togglePassword {
  color: #A5A5A5;
  position: absolute;
  left: 15px;
  top: 20px;
  cursor: pointer;
}

.form-wrapper .label {
  font-size: 12px;
  color: #CB2262;
  font-weight: 600;
}

.form-wrapper .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #f1f1f1;
  margin: auto;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.form-wrapper .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;
}

.form-wrapper .image-container button {
  width: 45px;
  height: 45px;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  background-color: #CB2262;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #ddd;
  position: absolute;
  right: 2px;
  bottom: 0px;
}

.form-wrapper .image-container button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

.form-wrapper .submit-btn {
  width: 150px;
  height: 45px;
  display: block;
  text-align: center;
  line-height: 45px;
  color: #fff;
  background: linear-gradient(-135deg, #4C299F, #544182);
  border-radius: 25px;
  position: relative;
  font-weight: bold;
}

.form-wrapper .submit-btn::before {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  opacity: 0;
  background: linear-gradient(-135deg, #755C98, #CB2262);
  -webkit-transform: scale(0.1, 0.1);
          transform: scale(0.1, 0.1);
  border-radius: 50%;
}

.form-wrapper .submit-btn::after {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-wrapper .submit-btn span {
  position: relative;
  z-index: 5;
}

.form-wrapper .submit-btn span i {
  margin-left: .25rem;
}

.form-wrapper .submit-btn:hover {
  color: #fff;
}

.form-wrapper .submit-btn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  border-radius: 25px;
}

.form-wrapper .submit-btn:hover::after {
  opacity: 0;
}

/***************************** Start Edit Packages Page *****************************/
.packages-pg {
  padding: 70px 0;
  background-color: #F5F6F8;
  position: relative;
}

.packages-pg .subscription_butn {
  width: 75%;
  height: 45px;
  display: block;
  margin: 20px auto 0 auto;
  text-align: center;
  line-height: 45px;
  color: #fff;
  background: linear-gradient(-135deg, #B82E6A, #cc145b);
  border-radius: 25px;
  position: relative;
  font-weight: bold;
  font-size: 13px;
}

.packages-pg .subscription_butn::before {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  opacity: 0;
  background: linear-gradient(-135deg, #755C98, #CB2262);
  -webkit-transform: scale(0.1, 0.1);
          transform: scale(0.1, 0.1);
  border-radius: 50%;
}

.packages-pg .subscription_butn::after {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.packages-pg .subscription_butn span {
  position: relative;
  z-index: 5;
}

.packages-pg .subscription_butn span i {
  margin-left: .25rem;
}

.packages-pg .subscription_butn:hover {
  color: #fff;
}

.packages-pg .subscription_butn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  border-radius: 25px;
}

.packages-pg .subscription_butn:hover::after {
  opacity: 0;
}

.packages-pg .popular_pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
}

.packages-pg .pay_choose {
  position: relative;
  z-index: 5;
  text-align: center;
  margin: 30px 0;
}

.packages-pg .pay_choose .custom-radio .custom-control-input ~ .custom-control-label::after,
.packages-pg .pay_choose .custom-control-input ~ .custom-control-label::before {
  display: none;
}

.packages-pg .pay_choose .custom-radio .custom-control-input:checked ~ .custom-control-label .butn {
  background: linear-gradient(-135deg, #755C98, #CB2262) !important;
  color: #fff;
}

.butn {
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 12px;
}

.pcg_card {
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.pcg_card .pcg_head {
  background-color: #A43672;
  border-radius: 10px 10px 0 0;
  padding: 1.25rem;
  text-align: center;
}

.pcg_card .pcg_head .name,
.pcg_card .pcg_head .price,
.pcg_card .pcg_head .period {
  color: #fff;
}

.pcg_card .card-body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  text-align: center;
}

.pcg_card .card-body .label {
  font-weight: 500;
  font-size: 14px;
}

.pcg_card .card-body .data {
  font-weight: bold;
  font-size: 14px;
  color: #CB2262;
}

.pcg_card.active_card {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.pcg_card.active_card::before {
  content: '';
  background: url(../images/nawal-pattern.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 150px;
  position: absolute;
  left: 25px;
  bottom: 0;
}

.pcg_card.active_card .pcg_head {
  background-color: #4C299F;
}

.pcg_card.active_card .card-body {
  background-color: #18283B;
}

.pcg_card.active_card .card-body .label,
.pcg_card.active_card .card-body .data {
  color: #fff;
}

/***************************** Start Edit Packages Details Page *****************************/
.package-details .inner {
  position: relative;
  border-radius: 15px;
}

.package-details .inner .pcg_det_head {
  border-radius: 15px 15px 0 0;
  background: url(../images/pkg-det-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  padding: 35px 15px;
  overflow: hidden;
}

.package-details .inner .pcg_det_head::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #4C299F;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.package-details .inner .pcg_det_head .text-box {
  position: relative;
  z-index: 1;
}

.package-details .inner .pcg_det_head .text-box .name,
.package-details .inner .pcg_det_head .text-box .price,
.package-details .inner .pcg_det_head .text-box .period {
  color: #fff;
}

.package-details .inner .card-body {
  background-color: #18283B;
  border-radius: 0 0 15px 15px;
}

.package-details .inner .card-body .text-box {
  background-color: #fff;
  padding: 1.25rem;
}

.package-details .inner .card-body .text-box .title {
  color: #cc145b;
}

.package-details .inner .card-body .text-box .p {
  font-size: 13px;
  line-height: 1.7rem;
}

.package-details .inner .card-body .pcg_det {
  padding: 1vw 5vw;
}

.package-details .inner .card-body .pcg_det p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.package-details .inner .subscription_butn {
  width: 200px;
}

.package-details .inner .form-wrapper {
  position: relative;
  z-index: 1;
}

.package-details .inner .form-wrapper .form-group .label {
  color: #fff;
}

.package-details .inner .form-wrapper .form-group .form-control {
  background-color: transparent;
  color: #cc145b;
  font-size: 15px;
}

.package-details .inner .form-wrapper .form-group input,
.package-details .inner .form-wrapper .form-group select {
  height: 45px;
}

.package-details .inner .form-wrapper .form-group .code-butn {
  padding: .375rem 1.375rem;
  background-color: #cc145b;
  border-radius: 25px;
  border: 1px solid #cc145b;
  color: #fff;
  display: block;
  position: absolute;
  left: 10px;
  top: 33px;
  font-size: 12px;
}

.package-details .inner .form-wrapper .form-group .code-butn:hover {
  background-color: #544182;
  border: 1px solid #544182;
}

.package-details .inner .form-wrapper .form-group .value {
  color: #fff;
  margin-top: 1rem;
  display: block;
}

.package-details .inner .form-wrapper .cards-radio-btn .title {
  color: #fff;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card {
  text-align: center;
  margin: 7px 0;
  position: relative;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card h6 {
  margin-top: .7rem;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card .pay-img {
  width: 80px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card .card-input-element {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card .card-input {
  border: 5px solid transparent;
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card label {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card .card-input-element:checked + .card-input {
  border: 5px solid #CB2262;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card .card-input-element:checked + .card-input h6 {
  color: #CB2262;
}

.package-details .inner .form-wrapper .cards-radio-btn .radio-card .card-input-element:checked + .card-input .circle::after {
  background-color: #CB2262;
}

/***************************** Start Edit Single Packages Page *****************************/
.single-package {
  padding: 70px 0;
  background-color: #F5F6F8;
  position: relative;
}

.single-package .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background-color: rgba(73, 98, 129, 0.1);
  border-radius: 25px;
}

.single-package .nav .nav-link {
  border-radius: 25px;
  font-size: 14px;
  padding: .9rem 1.7rem;
  font-weight: bold;
  color: #666;
}

.single-package .nav .nav-link.active {
  color: #fff;
  background-color: #4C299F;
}

.single-package .tab-wrapper {
  margin-top: 50px;
}

.single-package .tab-wrapper.videos-tab .table td {
  padding: 0;
  text-align: center;
  border: none;
}

.single-package .tab-wrapper.videos-tab .table .btr {
  border-radius: 0 25px 0 0;
}

.single-package .tab-wrapper.videos-tab .table .btl {
  border-radius: 25px 0 0 0;
}

.single-package .tab-wrapper.videos-tab .table .bbr {
  border-radius: 0 0 25px 0;
}

.single-package .tab-wrapper.videos-tab .table .bbl {
  border-radius: 0 0 0 25px;
}

.single-package .tab-wrapper.videos-tab .table .day-label {
  background-color: #1A0C3C;
  border: 1px solid #555 !important;
  display: block;
  padding: 2rem 1rem;
  color: #fff;
  height: 100%;
}

.single-package .tab-wrapper.videos-tab .table .day-label:hover {
  background-color: #CB2262;
}

.single-package .tab-wrapper.videos-tab .table .day-label.disable-td {
  color: #666;
}

.single-package .tab-wrapper.videos-tab .table .day-label.disable-td:hover {
  background-color: #1A0C3C;
}

.single-package .tab-wrapper.files-tab .file_card {
  background-color: #fff;
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 25px;
}

.single-package .tab-wrapper.files-tab .file_card .img-box {
  height: 150px;
  border-radius: 25px;
  overflow: hidden;
}

.single-package .tab-wrapper.files-tab .file_card .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-package .tab-wrapper.files-tab .file_card .img-box .icon-img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.single-package .tab-wrapper.files-tab .file_card .title {
  font-weight: bold;
  color: #333;
  margin-bottom: 0;
  text-align: center;
  font-size: 15px;
}

.single-package .tab-wrapper.files-tab .file_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 25px 0 #ccc;
          box-shadow: 0 10px 25px 0 #ccc;
}

.single-package .tab-wrapper.files-tab .file_card:hover .title {
  color: #CB2262;
}

.responsive-table {
  overflow-y: auto;
}

/***************************** Start Edit Training Page *****************************/
.training-videos {
  padding: 70px 0;
  background-color: #F5F6F8;
  position: relative;
}

.training-videos .item {
  margin-bottom: 45px;
  position: relative;
  height: 450px;
}

.training-videos .item .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.training-videos .item .text-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 25px 15px;
  background-color: rgba(0, 0, 0, 0.7);
}

.training-videos .item .text-box .title {
  color: #fff;
}

.training-videos .item .play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

.training-videos .item .play-btn:before, .training-videos .item .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #1A0C3C;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.training-videos .item .play-btn:hover:before {
  background-color: #CB2262;
}

.training-videos .item .play-btn:before {
  z-index: 1;
}

.training-videos .item .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

.training-videos .item .play-btn i {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/***************************** Start Edit Profile Page *****************************/
.profile-pg {
  padding: 70px 0;
  background-color: #F5F6F8;
  position: relative;
  overflow: hidden;
}

.profile-pg .inner {
  background-color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 25px;
}

.profile-pg .inner::before {
  content: '';
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -20%;
  background-color: #4C299F;
  display: block;
}

.profile-pg .side-nav {
  background-color: #4C299F;
  padding: 70px 0;
  border-radius: 25px 0 0 25px;
  position: relative;
  height: 100%;
  z-index: 1;
}

.profile-pg .side-nav .profile-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 0 20px;
}

.profile-pg .side-nav .profile-info .avatar {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.profile-pg .side-nav .profile-info .text-box {
  margin: 30px 15px 0 15px;
}

.profile-pg .side-nav .profile-info .text-box .name {
  color: #fff;
}

.profile-pg .side-nav .profile-info .text-box .email {
  color: #ccc;
}

.profile-pg .side-nav .nav-link {
  position: relative;
  z-index: 1;
  padding: 1.3rem 1rem;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0 15px 15px 0;
  color: #fff;
}

.profile-pg .side-nav .nav-link.active {
  background-color: #fff;
  color: #4C299F;
}

.profile-pg .side-nav .pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
}

.profile-pg .tab-wrapper {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 70px 25px;
}

.profile-pg .tab-wrapper .tab-title {
  text-align: center;
  margin-bottom: 50px;
}

.profile-pg .tab-wrapper .tab-title::after {
  content: '';
  width: 100px;
  height: 2px;
  display: block;
  margin: auto;
  background-color: #4C299F;
  position: relative;
  top: 20px;
}

.profile-pg .tab-wrapper .main-butn {
  width: 200px;
  height: 45px;
  display: block;
  margin: 20px auto 0 auto;
  text-align: center;
  line-height: 45px;
  color: #fff;
  background: linear-gradient(-135deg, #4C299F, #4C299F);
  border-radius: 25px;
  position: relative;
  font-weight: bold;
  font-size: 13px;
}

.profile-pg .tab-wrapper .main-butn::before {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  opacity: 0;
  background: linear-gradient(-135deg, #755C98, #CB2262);
  -webkit-transform: scale(0.1, 0.1);
          transform: scale(0.1, 0.1);
  border-radius: 50%;
}

.profile-pg .tab-wrapper .main-butn::after {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-pg .tab-wrapper .main-butn span {
  position: relative;
  z-index: 5;
}

.profile-pg .tab-wrapper .main-butn span i {
  margin-left: .25rem;
}

.profile-pg .tab-wrapper .main-butn:hover {
  color: #fff;
}

.profile-pg .tab-wrapper .main-butn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  border-radius: 25px;
}

.profile-pg .tab-wrapper .main-butn:hover::after {
  opacity: 0;
}

.profile-pg .tab-wrapper.info .data-group {
  margin-bottom: 1.2rem;
}

.profile-pg .tab-wrapper.info .data-group .label {
  color: #4C299F;
  margin-bottom: .6rem;
  font-weight: 500;
  font-size: 13px;
}

.profile-pg .tab-wrapper.info .data-group .data {
  background-color: #F6F6F9;
  padding: 15px 10px;
  margin-bottom: 0;
  font-weight: bold;
  color: #101010;
  font-size: 13px;
}

.profile-pg .tab-wrapper.notifications .noti_item {
  border: 1px solid #ccc;
  border-radius: 25px;
  position: relative;
  margin-bottom: 20px;
  padding: 35px 25px 40px 25px;
}

.profile-pg .tab-wrapper.notifications .noti_item .date {
  text-align: start;
  margin-bottom: .5rem;
}

.profile-pg .tab-wrapper.notifications .noti_item .content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.profile-pg .tab-wrapper.notifications .noti_item .content .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.profile-pg .tab-wrapper.notifications .noti_item .content .text-box {
  margin: 0 15px;
}

.profile-pg .tab-wrapper.notifications .noti_item .content .text-box .p {
  font-size: 15px;
  line-height: 1.7rem;
  margin-bottom: 0;
}

.profile-pg .tab-wrapper.package-tab .pcg_card {
  border: 1px solid #eee;
}

.profile-pg .tab-wrapper.package-tab .plan-period {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.profile-pg .tab-wrapper.package-tab .plan-period .content {
  margin: 0 15px;
}

.profile-pg .tab-wrapper.package-tab .plan-period .content .label {
  color: #eee;
  margin-bottom: .5rem;
}

.profile-pg .tab-wrapper.package-tab .plan-period .content .data {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

.profile-pg .tab-wrapper.package-tab .btns-wrapper {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.profile-pg .tab-wrapper.package-tab .btns-wrapper .main-butnn {
  width: 45%;
  display: inline-block;
  border: 1px solid #CB2262;
}

.profile-pg .tab-wrapper.package-tab .btns-wrapper .main-butnn.solid-butn {
  background: linear-gradient(-135deg, #fff, #fff);
  color: #CB2262;
}

.main-butnn {
  width: 200px;
  height: 45px;
  display: block;
  margin: 20px auto 0 auto;
  text-align: center;
  line-height: 45px;
  color: #fff;
  background: linear-gradient(-135deg, #4C299F, #4C299F);
  border-radius: 25px;
  position: relative;
  font-weight: bold;
  font-size: 13px;
}

.main-butnn::before {
  content: '';
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s;
  transition: transform 0.15s, 0.15s border-radius 0.15s, -webkit-transform 0.15s;
  opacity: 0;
  background: linear-gradient(-135deg, #755C98, #CB2262);
  -webkit-transform: scale(0.1, 0.1);
          transform: scale(0.1, 0.1);
  border-radius: 50%;
}

.main-butnn span {
  position: relative;
  z-index: 5;
}

.main-butnn span i {
  margin-left: .25rem;
}

.main-butnn:hover {
  color: #fff !important;
}

.main-butnn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  border-radius: 25px;
}

.main-butnn:hover::after {
  opacity: 0;
}
/*# sourceMappingURL=style.css.map */