@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  background: #f0f0f0;
}
body a {
  color: #2E2E2E;
}

@media (prefers-color-scheme: dark) {
  body.auto-theme {
    background: #111111;
    color: #ffffff !important;
  }
  body.auto-theme a {
    color: #ffffff;
  }
  body.auto-theme .form-control {
    background: #2E2E2E;
    border: none;
    color: #ffffff;
  }
  body.auto-theme .sticky {
    background: #111111 !important;
  }
  body.auto-theme .tag {
    background: #2E2E2E !important;
  }
  body.auto-theme .tag:hover {
    color: #ffffff !important;
  }
}
.container-fluid {
  width: 90% !important;
}

.heading-primary {
  text-transform: capitalize;
  font-weight: bold;
  margin: 1.5rem 0;
}

.btn-login {
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  background: #1589A6;
  border-radius: 25px;
  min-width: 140px;
  color: #fff;
  border: 1px solid #1589A6;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .btn-login {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    min-width: 100px;
  }
}
@media (max-width: 768px) {
  .btn-login {
    padding: 0.4rem 0.5rem;
    min-width: 100px;
  }
}
@media (max-width: 428px) {
  .btn-login {
    padding: 0.4rem;
    font-size: 0.6rem;
    min-width: 80px;
  }
}
@media (max-width: 320px) {
  .btn-login {
    padding: 0.2rem;
    font-size: 0.5rem;
    min-width: 60px;
  }
}
.btn-login:hover {
  background: #AA0E5D;
  color: #ffffff;
  border: 1px solid #AA0E5D;
  box-shadow: 0 0 1rem rbga(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.btn-login:focus {
  box-shadow: none;
}

.btn-tag {
  min-width: 150px;
  background: #AA0E5D;
  border-radius: 30px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
  transition: all 0.3s ease-out;
  margin-top: 1rem;
  text-transform: capitalize;
  border: 2px solid #AA0E5D;
}
.btn-tag:hover {
  color: #ffffff;
  background: #1589A6;
  border: 2px solid #1589A6;
  transform: translateY(-3px);
}

.btn-enroll {
  background: none;
  color: #a9edff;
  border: 1px solid #a9edff;
  padding: 1rem 2rem;
  min-width: 4rem;
  outline: 0;
  transition: all 0.4s;
}
.btn-enroll:focus {
  outline: 0;
}
.btn-enroll:hover {
  background: #AA0E5D;
  color: #ffffff;
  border: 1px solid #AA0E5D;
}

.btn-submit {
  background: #1589A6;
  color: #ffffff;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
  box-shadow: 2px 2px 5px #babecc, -5px -5px 10px #ffffffab;
}
.btn-submit:hover {
  background: #AA0E5D;
  color: #ffffff;
  transform: translateY(-3px);
}
.btn-submit:active {
  box-shadow: none;
}

.btn-price {
  width: 100%;
  padding: 0.8rem 2rem;
  color: #ffffff;
  background: #AA0E5D;
  font-size: 1.5rem;
  border-radius: 5rem;
  transition: all 0.2s ease-in-out;
}
.btn-price span {
  font-weight: bolder;
}
.btn-price:hover {
  background: #1589A6;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 1px 2px 15px rgba(34, 34, 34, 0.5);
}
.btn-price:focus {
  box-shadow: none;
}

/*start main navbar */
.main-nav {
  padding: 1.2rem 0;
  width: 100%;
  transition: all 0.4s;
}
@media (max-width: 420px) {
  .main-nav .container-fluid {
    width: 100% !important;
  }
}
.main-nav.sticky {
  padding: 0.5rem 0;
  background: #f0f0f0;
  box-shadow: 0px 2px 8px 1px #00000033;
  position: fixed;
  z-index: 1040;
  top: 0;
}
.main-nav .nav-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  transition: all 0.6s;
  overflow: hidden;
}
.main-nav .nav-content__search-box {
  width: calc(100% / 3);
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .main-nav .nav-content__search-box {
    order: 2;
    width: 100%;
    justify-content: flex-end;
  }
}
.main-nav .nav-content__search-box .form-group {
  position: relative;
  margin: 0;
  padding: 0;
  width: 80%;
  margin-right: 5px;
}
.main-nav .nav-content__search-box .form-group .form-control {
  border-radius: 20px;
  padding: 0.8rem 1rem 0.8rem 3rem;
  border: none;
  width: 90%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .main-nav .nav-content__search-box .form-group .form-control {
    padding: 0.5rem 1rem 0.5rem 3rem;
    font-size: 0.8rem;
    margin-right: 10px;
  }
}
@media (max-width: 420px) {
  .main-nav .nav-content__search-box .form-group .form-control {
    padding: 0rem 0rem 0rem 2rem;
    font-size: 0.7rem;
    margin-left: auto;
    margin-right: 20px;
  }
}
@media (max-width: 320px) {
  .main-nav .nav-content__search-box .form-group .form-control {
    padding: 0rem 0rem 0rem 2rem;
    font-size: 0.5rem;
    margin-left: auto;
  }
}
.main-nav .nav-content__search-box .form-group .form-control:focus {
  border-color: #1589A6;
  outline: 0;
  box-shadow: none;
  width: 100%;
}
.main-nav .nav-content__search-box .form-group .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  background: transparent;
  border: none;
  color: #777;
  pointer-events: none;
}
.main-nav .nav-content__brand {
  width: calc(100% / 3);
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .main-nav .nav-content__brand {
    order: 1;
    width: calc(100% / 2);
  }
}
.main-nav .nav-content__brand img {
  width: 200px;
}
@media (max-width: 992px) {
  .main-nav .nav-content__brand img {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .main-nav .nav-content__brand img {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .main-nav .nav-content__brand img {
    width: 100%;
  }
}
.main-nav .nav-content__login {
  width: calc(100% / 3);
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .main-nav .nav-content__login {
    order: 3;
  }
}

.navbar-tags {
  margin-top: 1rem;
}
.navbar-tags__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-tags__content .tag {
  display: inline-block;
  color: #a3a3a3;
  background: #ffffff;
  min-width: 140px;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
}
.navbar-tags__content .tag:hover {
  text-decoration: none;
  color: #777777;
  box-shadow: 0 0 1px 3px #1589A6;
}

.theme-dark .tag {
  background: #2E2E2E;
}
.theme-dark .tag:hover {
  color: #ffffff;
}

.owl-carousel {
  position: relative;
  margin: 2rem 0;
}
.owl-carousel .owl-dots {
  display: none;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: -5rem;
  right: 0;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  width: 2rem;
  height: 2rem;
  background: #AA0E5D !important;
  color: #ffffff !important;
  position: relative;
  opacity: 0.5;
  transition: all 0.3s;
  border-radius: 0.5rem;
}
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:hover {
  opacity: 1;
}
.owl-carousel .owl-nav .owl-next:focus, .owl-carousel .owl-nav .owl-next:visited,
.owl-carousel .owl-nav .owl-prev:focus,
.owl-carousel .owl-nav .owl-prev:visited {
  outline: 0;
}
.owl-carousel .owl-nav .owl-next::after,
.owl-carousel .owl-nav .owl-prev::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
  width: 100%;
}
.owl-carousel .owl-nav .owl-next.owl-prev::after,
.owl-carousel .owl-nav .owl-prev.owl-prev::after {
  content: "";
}
.owl-carousel .owl-nav .owl-next span,
.owl-carousel .owl-nav .owl-prev span {
  display: none;
}

.celebrities-tags {
  overflow: hidden;
  position: relative;
}
.celebrities-tags .item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  margin: 0.5rem 0;
}
@media (max-width: 420px) {
  .celebrities-tags .item {
    height: 240px;
  }
}
.celebrities-tags .item .tag-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: top;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.celebrities-tags .item .price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: bold;
  z-index: 5;
  text-shadow: #000 0px 0px 1.5rem;
}
.celebrities-tags .item .tag-content {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  text-shadow: #000 0px 0px 1.5rem;
}
.celebrities-tags .item .tag-content .tag-heading {
  margin: 0.2rem 0;
  font-size: 1.4rem;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: bold;
}
.celebrities-tags .item .tag-content .tag-title {
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
}
.celebrities-tags .item:hover {
  transform: translateY(-5px);
}
.celebrities-tags .item:hover .tag-img {
  transform: scale(1.1);
}

.modal-open .modal {
  background: rgba(21, 137, 166, 0.5);
}
.modal-open .modal-content {
  padding: 1rem;
  border-radius: 20px;
  background: #f0f0f0;
}
.modal-open .modal-body .list-group-item {
  text-align: center;
  border-radius: 0;
  margin-bottom: 1rem;
  box-shadow: 2px 2px 5px #babecc, -5px -5px 10px #ffffffab;
  border-radius: 20px;
  border: none;
  margin-right: 10px;
  color: #777;
  background: transparent;
  padding: 0.75rem 1rem;
}
.modal-open .modal-body .list-group-item.active {
  background: none;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff;
  border: none;
  color: #AA0E5D;
  font-weight: bold;
}
.modal-open .modal-body .tab-content {
  margin: 1rem 0;
}
.modal-open .modal-body .tab-content .form-group label {
  color: #1589A6;
  text-transform: capitalize;
}
.modal-open .modal-body .tab-content .form-group .form-control {
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff;
  background: transparent;
  height: calc(2.2em + .75rem + 2px);
  border-radius: 40px;
}
.modal-open .modal-body .tab-content .form-group .form-control:focus {
  border: none;
  box-shadow: inset 1px 1px 1px #babecc, inset -2px -2px 2px #ffffff;
}
.modal-open .modal-body .tab-content .form-check {
  margin: 0.5rem 0;
}
.modal-open .modal-body .tab-content .form-check .form-check-label {
  margin-bottom: 1rem;
}

.list-group {
  flex-direction: row;
}

.header-video {
  margin: 2rem 0;
}
.header-video__content {
  max-height: 420px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.header-video__content .h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  margin: auto;
  text-align: center;
  z-index: 1;
  font-size: 4rem;
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .header-video__content .h1 {
    font-size: 3rem;
    width: 70%;
  }
}
@media (max-width: 992px) {
  .header-video__content .h1 {
    font-size: 2.5rem;
    width: 80%;
  }
}
@media (max-width: 768px) {
  .header-video__content .h1 {
    font-size: 2rem;
    width: 80%;
  }
}
@media (max-width: 420px) {
  .header-video__content .h1 {
    font-size: 1.5rem;
    width: 80%;
  }
}

.footer {
  padding: 1rem 0;
  margin-top: 2rem;
  background: #1589A6;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.footer__p {
  font-size: 1.1rem;
  color: #ffffff;
  padding: 0.5rem 1rem 0.5rem 0;
  margin-bottom: 1.4rem;
}
.footer__content {
  margin-bottom: 2rem;
}
.footer__content h5 {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.5rem 0;
  color: #ffffff;
}
.footer__content .fom-group {
  display: flex;
}
.footer__content .fom-group .form-control {
  width: 70%;
  color: #ffffff;
  background: transparent;
  border-radius: 0;
  border: 1px solid #6BB5C8;
  height: calc(2.2em + .75rem + 2px);
}
.footer__content .fom-group .form-control::placeholder {
  color: #6BB5C8;
}
.footer__content .fom-group .form-control:focus {
  box-shadow: none;
}
.footer__content .fom-group .btn-footer {
  width: 10%;
  height: calc(2.2em + .75rem + 2px);
  border: 1px solid #6BB5C8;
  background: #6BB5C8;
  color: #ffffff;
}
.footer__content .fom-group .btn-footer:focus {
  border: none;
  box-shadow: none;
  outline: 0;
}
.footer .trems {
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.footer .trems li {
  padding: 0.2rem 0;
}
.footer .trems li a {
  position: relative;
  color: #ffffff;
  transition: all 0.3s;
}
.footer .trems li a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 1rem;
}
.footer .trems li a:hover {
  color: #AA0E5D;
  text-decoration: none;
}
.footer .scial-icon {
  display: flex;
  margin-bottom: 0;
}
.footer .scial-icon li {
  margin-right: 2rem;
}
.footer .scial-icon li a {
  font-size: 1.3rem;
  color: #ffffff;
  transition: all 0.3s;
}
.footer .scial-icon li a:hover {
  color: #AA0E5D;
}
.footer .copyright {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0;
  margin-top: 2rem;
}

.celebrities-tags {
  padding: 1rem 0;
}

.category {
  padding: 1rem 0;
}
.category .category-content {
  position: relative;
  height: 280px;
  border-radius: 40px;
  overflow: hidden;
  margin: 1rem 0rem;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 420px) {
  .category .category-content {
    height: 200px;
  }
}
.category .category-content .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.category .category-content .img-category {
  object-fit: cover;
  object-position: top;
  height: 100%;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.category .category-content .category-heading {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #ffffff;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 420px) {
  .category .category-content .category-heading {
    font-size: 1.2rem;
  }
}
.category .category-content:hover .img-category {
  transform: scale(1);
}

.single-category {
  margin: 2rem 0;
  width: 100%;
}
.single-category .heading-sorting {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.single-category .heading-sorting .h2 {
  font-size: 2.1rem;
  text-transform: capitalize;
  letter-spacing: -1;
  font-weight: bold;
}
@media (max-width: 768px) {
  .single-category .heading-sorting .h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 420px) {
  .single-category .heading-sorting .h2 {
    font-size: 1.2rem;
  }
}
.single-category .heading-sorting .dropdown .dropdown-toggle {
  border: none;
  cursor: pointer;
  border-radius: 0;
  background-color: transparent;
  margin: 0;
  border-bottom: 1px solid #1589A6;
  padding: 0.5rem 0;
  color: #1589A6;
}
@media (max-width: 768px) {
  .single-category .heading-sorting .dropdown .dropdown-toggle {
    min-width: 160px;
  }
}
@media (max-width: 420px) {
  .single-category .heading-sorting .dropdown .dropdown-toggle {
    min-width: 120px;
  }
}
.single-category .heading-sorting .dropdown .dropdown-toggle:focus {
  box-shadow: none;
}
.single-category .heading-sorting .dropdown .dropdown-menu {
  transition: all 0.3s ease-in-out;
  border: 2px solid #1589A6 !important;
  width: 100%;
  background: #1589A6;
}
.single-category .heading-sorting .dropdown .dropdown-menu .dropdown-item {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  padding: 0.5em;
  overflow: hidden;
  width: 100%;
}
.single-category .heading-sorting .dropdown .dropdown-menu .dropdown-item:hover {
  color: #AA0E5D;
  padding-left: 1rem;
  background: transparent;
}
.single-category .content .item {
  margin-bottom: 1.5rem;
  height: 270px;
}
.single-category .content .item .tag-heading {
  font-size: 1.3rem;
}
.single-category .section-pagination {
  margin: 1rem 0;
}
.single-category .section-pagination .page-item .Next-previous {
  background-color: transparent;
  border: 2px solid #1589A6;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 1rem;
  color: #1589A6;
  transition: all 0.2s ease-in-out;
}
.single-category .section-pagination .page-item .Next-previous:hover {
  color: #ffffff;
  background: #AA0E5D;
  border: 2px solid #AA0E5D;
}
.single-category .section-pagination .page-item .Next-previous:focus {
  box-shadow: none;
}
.single-category .section-pagination .page-item .page-link {
  background: transparent;
  color: #1589A6;
  border: none;
  line-height: 10px;
  line-height: 2;
  font-size: 1.2rem;
  font-weight: bold;
}
.single-category .section-pagination .page-item .page-link:hover {
  color: #AA0E5D;
}

.all-categories {
  margin: 2rem 0;
}
.all-categories .category-container {
  display: block;
}
.all-categories .category-container .content {
  background: #e7e7e7;
  display: block;
  width: 100%;
  padding: 2.4rem;
  border-radius: 2.5rem;
  margin-bottom: 1.8rem;
}
.all-categories .category-container .content .category-name {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
  display: block;
  color: #1589A6;
}
.all-categories .category-container .content .category-name:hover {
  text-decoration: none;
}
.all-categories .category-container .content ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.all-categories .category-container .content ul .sub-category {
  width: calc(100% / 4);
  padding-right: 10px;
  margin: 0.5rem 0;
}
@media (max-width: 768px) {
  .all-categories .category-container .content ul .sub-category {
    width: calc(100% / 2);
  }
}
@media (max-width: 320px) {
  .all-categories .category-container .content ul .sub-category {
    width: calc(100% );
  }
}
.all-categories .category-container .content ul .sub-category a {
  font-weight: bold;
  font-size: 0.8rem;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.all-categories .category-container .content ul .sub-category a:hover {
  text-decoration: none;
  color: #AA0E5D;
}

@media (prefers-color-scheme: dark) {
  body.auto-theme .all-categories .content {
    background: #222222;
  }
}
.porfile-section {
  padding: 2rem 0;
}
.porfile-section .author {
  background: #ffffff;
  padding: 2rem 2rem 0.5rem;
  border-radius: 2rem;
  margin: 3rem 0;
}
.porfile-section .author .author-main-content {
  margin: 2rem 0;
}
.porfile-section .author__image {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0px auto;
  border: 5px solid #1589A6;
  overflow: hidden;
  background: transparent;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .porfile-section .author__image {
    width: 85px;
    height: 85px;
    padding: 0.2rem;
  }
}
@media (max-width: 575px) {
  .porfile-section .author__image {
    width: 100px;
    height: 100px;
    padding: 0.2rem;
    margin-bottom: 1rem;
  }
}
.porfile-section .author__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
.porfile-section .author__content--name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.porfile-section .author__content--name .h2 {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 1.7rem;
}
@media (max-width: 320px) {
  .porfile-section .author__content--name .h2 {
    font-size: 1.3rem;
  }
}
.porfile-section .author__content--name .author-rate .star {
  color: #a3a3a3;
}
.porfile-section .author__content--name .author-rate .star .fa-star {
  color: #1589A6;
}
.porfile-section .author__content--description .description {
  font-size: 0.9rem;
  font-weight: bold;
  color: #939393;
  letter-spacing: 1px;
  word-spacing: 1px;
}
.porfile-section .author__content--delever {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.porfile-section .author__content--delever .time {
  color: #1589A6;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0;
}
.porfile-section .author__content--delever .author-social .scial-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.porfile-section .author__content--delever .author-social .scial-icon li {
  margin-left: 1rem;
}
.porfile-section .author__content--delever .author-social .scial-icon li a {
  color: #a3a3a3;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.porfile-section .author__content--delever .author-social .scial-icon li a:hover {
  color: #AA0E5D;
}
.porfile-section .price-author {
  margin: 2rem 0;
  text-align: center;
}
.porfile-section .video-author {
  margin: 3rem 0 1rem 0;
}
.porfile-section .video-author .videos {
  overflow: hidden;
  width: 100%;
  height: 23rem;
  position: relative;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.porfile-section .video-author .videos video {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 23rem;
}
.porfile-section .video-author .videos video::-webkit-media-controld {
  display: block;
}
.porfile-section .video-author .videos .play-video {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.porfile-section .video-author .videos .play-video i {
  color: #ffffff;
  font-size: 1.5rem;
  pointer-events: none;
}

@media (prefers-color-scheme: dark) {
  body.auto-theme .porfile-section .author {
    background: #222222;
  }
}
.order {
  padding: 3rem 0;
}
.order__celebrities {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 2rem;
}
.order__celebrities--imge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  padding: 0.7rem;
  border: 4px solid #AA0E5D;
  margin: 1rem auto;
}
.order__celebrities--imge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
.order .author-content__name {
  width: 100%;
  overflow: hidden;
  text-align: left;
}
.order .author-content__name .h3 {
  text-align: left;
  text-transform: capitalize;
  font-weight: bold;
}
@media (max-width: 992px) {
  .order .author-content__name .h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .order .author-content__name .h3 {
    font-size: 1.2rem;
  }
}
.order .author-content__rate {
  text-align: center;
  color: #1589A6;
}
@media (max-width: 768px) {
  .order .author-content__rate {
    font-size: 0.9rem;
  }
}
.order .author-content__price {
  text-align: right;
  color: #AA0E5D;
}
@media (max-width: 600px) {
  .order .author-content__price {
    text-align: center;
    margin: auto;
    width: 70px;
    height: 70px;
    background: #AA0E5D;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
}
.order .author-content__price span {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
}
.order .author-content__p {
  width: 100%;
  margin: 1rem auto;
  text-align: center;
  color: #a3a3a3;
}
.order .author-content__p .paragraph {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.order__form {
  padding: 1rem;
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 2rem;
}
.order__form .form {
  padding: 2rem;
}
.order__form .form .list-group {
  margin: 1rem 0 1.5rem;
}
.order__form .form .list-group .list-group-item {
  background: transparent;
  color: #1589A6;
  border-radius: 0;
  font-weight: bold;
  border: 2px solid #1589A6;
}
.order__form .form .list-group .list-group-item.active {
  background: #1589A6;
  border: 0;
  color: #ffffff;
}
.order__form .form .form-group label {
  color: #1589A6;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}
.order__form .form .form-group .form-control {
  border: 1px solid #1589A6;
  height: calc(2.2em + .75rem + 2px);
  border-radius: 0;
  background: transparent;
  margin-bottom: 1.2rem;
}
.order__form .form .form-group .form-control:focus {
  border: 3px solid #1589A6;
  box-shadow: none;
}
.order__form .form .form-group select {
  color: #a3a3a3;
}
.order__form .form .form-group textarea {
  min-height: 200px;
}
.order__form .btn-submit {
  margin-top: 2rem;
}
.order__form .btn-submit:focus {
  box-shadow: 0;
}

@media (prefers-color-scheme: dark) {
  body .order .order__celebrities, body .order .order__form {
    background-color: #2E2E2E;
  }
  body .order .order__celebrities .btn-submit, body .order .order__form .btn-submit {
    box-shadow: none;
  }
  body .order .order__celebrities .btn-submit:focus, body .order .order__form .btn-submit:focus {
    box-shadow: none;
  }
}

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