@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
@import url("../fonts/font-sheet.css");
@import url("https://fonts.googleapis.com/css2?family=Rasa:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Rasa:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Sansation";
  font-weight: normal;
}

:root {
  scroll-behavior: auto !important;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
optgroup,
textarea {
  font-size: 16px;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
a h1,
a h2,
a h3,
a h4,
a h5,
a h6 {
  clear: both;
  font-family: "Sansation";
  font-weight: bold;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: bold;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

@media (min-width: 576px) {
  h1 {
    font-size: 40px;
    line-height: 1.5;
  }
  h2 {
    font-size: 50px;
    line-height: 1.5;
  }
  h3 {
    font-size: 40px;
    line-height: 1.5;
  }
  h4 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  h5 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  h6 {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

p {
  margin-bottom: 15px;
  font-size: 16px;
}

@media (min-width: 576px) {
  p {
    font-size: 22px;
  }
}

a {
  color: #000000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

a:visited {
  color: #ffffff;
  outline: none;
}

a:hover,
a:focus,
a:active {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

a:focus {
  outline: thin dotted;
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

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

select {
  border: 1px solid #ecf0f3;
}

/* @@@@@@@@@@@@@  Global CSS  @@@@@@@@@@@@@@ */

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    /* max-width: 100% !important;
    width: 100%;
  } */
  }
  .bubbling-heart div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 25vh) scale(0);
    opacity: 0;
    animation: bubbleUp 5s infinite;
    color: rgba(255, 255, 255, 0.558);
  }
  .bubbling-heart div .fa {
    transform: translateX(12.5vw) rotate(25deg);
    animation: oscillate 12s ease-in-out infinite;
  }
  .bubbling-heart div:nth-child(2) {
    animation-delay: 0.5s;
    left: 20%;
  }
  .bubbling-heart div:nth-child(2) .fa {
    animation-delay: 1s;
  }
  .bubbling-heart div:nth-child(3) {
    animation-delay: 1s;
    left: 60%;
  }
  .bubbling-heart div:nth-child(3) .fa {
    animation-delay: 2s;
  }
  .bubbling-heart div:nth-child(4) {
    animation-delay: 1.5s;
    left: 70%;
  }
  .bubbling-heart div:nth-child(4) .fa {
    animation-delay: 3s;
  }
  .bubbling-heart div:nth-child(5) {
    animation-delay: 2s;
    left: 20%;
  }
  .bubbling-heart div:nth-child(5) .fa {
    animation-delay: 4s;
  }
  .bubbling-heart div:nth-child(6) {
    animation-delay: 2.5s;
    left: 90%;
  }
  .bubbling-heart div:nth-child(6) .fa {
    animation-delay: 5s;
  }
  @keyframes bubbleUp {
    50% {
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -25vh) scale(2);
    }
  }
  @keyframes oscillate {
    50% {
      transform: translateX(-12.5vw) rotate(-25deg);
    }
  }
  /*======= demo-view ==========*/
  .demo-view {
    position: fixed;
    top: 200px;
    right: 10px;
    z-index: 999;
  }
  .demo-view.open .demo-view-content {
    transform: scaleX(1);
  }
  .demo-view .demo-view-icon {
    width: 40px;
    height: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    animation: lab_round 5s linear infinite;
    cursor: pointer;
    margin-left: auto;
    border-radius: 100%;
    box-shadow: 0 0 50px rgb(255 255 255 / 90%);
  }
  .demo-view .demo-view-content {
    background: #fff;
    padding: 5px;
    transform: scaleX(0);
    transform-origin: right;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .demo-view .demo-view-content a {
    display: inline-block;
    padding: 5px 15px;
    font-size: 16px;
    text-transform: uppercase;
    background: #cd2ecd;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .demo-view .demo-view-content a:hover {
    background: #333;
  }
  @keyframes lab_round {
    100% {
      transform: rotateZ(360deg);
    }
  }
  /*======= Background Image ==========*/
  .header-wrapper {
    display: flex;
    justify-content: space-between;
  }
  /*============ Custom File Upload =============*/
  .custom-upload .file-btn {
    border-radius: 5px;
  }
  .custom-upload input[type="file"] {
    left: 0;
    top: 0;
    opacity: 0;
  }
  .work-item:hover .lab-inner .lab-thumb .thumb-inner span,
  .work-item:hover .lab-inner .lab-thumb .thumb-inner p {
    color: #fff;
  }
  .work-item .lab-inner {
    transition: 0.3s all linear;
    border-radius: 20px;
  }
  /* .work-item .lab-inner:before {
        content: "";
        background: linear-gradient( 201.2deg, #ad61e3 -21.87%, #c92cc9 14.27%, #8418d1 64.59%);
        height: 0;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        border-radius: 20px;
        transition: 0.5s all linear;
    }
    .work-item:hover .lab-inner:before {
        height: 100%;
    }

    .work-item:hover .lab-inner .flexitem p {
        color: #fff;
    } */
  .work-item:hover .lab-inner .lab-content h4 {
    color: #cd2ecd;
  }
  @media (min-width: 576px) {
    .work-item .lab-inner .lab-thumb {
      transition: all 0.3s ease-in-out;
    }
  }
  .work-item .lab-inner {
    position: relative;
  }
  .work-item .lab-inner .lab-thumb .thumb-inner {
    width: 120px;
    border-radius: 50%;
    margin: 0 auto;
    align-items: center;
    vertical-align: middle;
    transition: 0.3s all ease-in-out;
    height: 90px;
    padding: 25px;
  }
  .work-item .lab-inner .lab-thumb .thumb-inner::after {
    content: "01";
    position: absolute;
    font-family: "Sansation";
    width: 30px;
    height: 30px;
    border-radius: 26px;
    line-height: 30px;
    text-align: center;
    font-size: 50px;
    margin-top: -25px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    font-weight: bold;
  }
}

.work-item {
  -webkit-box-shadow: 0px 8px 13px 0px rgba(196, 196, 196, 1);
  -moz-box-shadow: 0px 8px 13px 0px rgba(196, 196, 196, 1);
  box-shadow: 0px 8px 13px 0px rgba(196, 196, 196, 1);
  border-radius: 20px;
}

.flexitem:nth-child(2) .work-item .lab-inner .lab-thumb .thumb-inner::after {
  content: "02";
  position: absolute;
  font-family: "Sansation";
  width: 30px;
  height: 30px;
  border-radius: 26px;
  line-height: 30px;
  text-align: center;
  font-size: 50px;
  margin-top: -25px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  font-weight: bold;
}

.flexitem:nth-child(3) .work-item .lab-inner .lab-thumb .thumb-inner::after {
  content: "03";
  position: absolute;
  font-family: "Sansation";
  width: 30px;
  height: 30px;
  border-radius: 26px;
  line-height: 30px;
  text-align: center;
  font-size: 50px;
  margin-top: -25px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  font-weight: bold;
}

.flexitem:nth-child(4) .work-item .lab-inner .lab-thumb .thumb-inner::after {
  content: "04";
  position: absolute;
  font-family: "Sansation";
  width: 30px;
  height: 30px;
  border-radius: 26px;
  line-height: 30px;
  text-align: center;
  font-size: 50px;
  margin-top: -25px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  font-weight: bold;
}

.flexitem:nth-child(5) .work-item .lab-inner .lab-thumb .thumb-inner::after {
  content: "05";
  position: absolute;
  font-family: "Sansation";
  width: 30px;
  height: 30px;
  border-radius: 26px;
  line-height: 30px;
  text-align: center;
  font-size: 50px;
  margin-top: -25px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  font-weight: bold;
}

/* .work-item .lab-inner:before {
  position: absolute;
  content: "";
  background: #8f35d0;
  width: 87px;
  height: 3px;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center;
  left: 87%;
  z-index: 999;
  overflow: visible;
  top: 27%;
  border-radius: 48px;
} */

.flexitem:last-child .work-item .lab-inner:before {
  display: none;
}

.work-item .lab-inner .lab-content h4 {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 576px) {
  .work-item .lab-inner .lab-content h4 {
    margin-bottom: 20px;
  }
}

.story-item .lab-inner .lab-thumb img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.story-item .lab-inner .lab-content h4 {
  margin-bottom: 12px;
}

.btn-container {
  margin-top: 20px;
}

.story-item .lab-inner .lab-content .lab-btn {
  color: #ae00ae;
  border: 1px solid #ae00ae;
}

.story-item .lab-inner .lab-content .lab-btn i {
  color: #210053;
}

.story-item .lab-inner .lab-content .lab-btn:hover {
  color: #fff;
}

.story-item .lab-inner .lab-content .lab-btn:hover i {
  color: #fff;
}

.story-item:hover .lab-inner .lab-thumb img {
  transform: scale(1.15) rotate(3deg);
}

.story-item:hover .lab-inner .lab-content h4 a {
  color: #cd2ecd;
}

.price-item {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price-item .price-item-inner {
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price-item .price-item-inner .price-top {
  padding-top: 40px;
  padding-bottom: 100px;
  background: url(../images/pricing-plan/pricing-plan.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.price-item .price-item-inner .price-top p {
  max-width: 238px;
  margin: 0 auto;
}

.price-item .price-item-inner .price-bottom {
  padding-bottom: 40px;
}

.price-item .price-item-inner .price-bottom ul li {
  padding: 7px 10px;
}

.price-item .price-item-inner .price-bottom .purchase-btn {
  margin-top: 50px;
  line-height: 56px;
  padding: 0 3rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price-item .price-item-inner .price-bottom .purchase-btn:hover {
  box-shadow: 0px 10px 10px 0px rgba(224, 49, 77, 0.2);
  transform: translateY(-3px);
}

.price-item:hover .price-item-inner,
.price-item.active .price-item-inner {
  background: #fff;
}

.price-item:hover .price-item-inner .price-bottom,
.price-item.active .price-item-inner .price-bottom {
  color: #210053;
}

@media (min-width: 992px) {
  .banner-section {
    height: calc(100vh - 100px);
  }
  .desktop-show {
    display: hide;
  }
  .btn-toggle,
  .dropdown_menu {
    display: none;
  }
  .price-item:hover,
  .price-item.active {
    transform: translateY(-30px);
  }
}

.member-filter .member-filter-inner .filter-form {
  justify-content: space-evenly;
}

@media (min-width: 576px) {
  .member-filter .member-filter-inner .filter-form > div:nth-child(4) {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .member-filter .member-filter-inner .filter-form > div {
    margin-bottom: 0;
  }
}

.member-filter .member-filter-inner .filter-form .custom-select select {
  background: #391965 !important;
  padding: 7px 10px;
  padding-right: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  box-shadow: none;
}

.member-filter .member-filter-inner .filter-form .age .custom-select select {
  padding-right: 50px;
}

.member-filter .member-filter-inner .filter-form .lab-btn {
  outline: none;
  border: none;
  box-shadow: none;
  background: #391965;
  color: #fff;
  padding: 0 1rem;
  line-height: 40px;
}

.member-filter .member-filter-inner .filter-form .lab-btn:hover {
  box-shadow: 0 3px 5px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .group-search .group-count {
    margin-bottom: 10px;
  }
}

.group-search .group-count p {
  padding: 0.5rem 1rem;
}

.group-search .group-count p:last-child:before {
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #cd2ecd transparent transparent;
  border-style: solid;
}

.group-search .group-search-btn form input {
  outline: none;
  border: none;
  box-shadow: none;
  line-height: 40px;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .group-search .group-search-btn form input {
    padding: 0 20px;
  }
}

.group-search .group-search-btn form input[type="text"] {
  width: 190px;
}

@media (min-width: 768px) {
  .group-search .group-search-btn form input[type="text"] {
    width: auto;
  }
}

.group-search .group-search-btn form input[type="text"]::placeholder {
  color: #fff;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .group-search .group-search-btn form .input-button input[type="submit"] {
    padding-left: 30px;
  }
}

.group-search .group-search-btn form .input-button:before {
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #cd2ecd transparent transparent;
  border-style: solid;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #cd2ecd;
}

.preloader .preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader .preloader-inner .preloader-icon {
  width: 72px;
  height: 72px;
  display: inline-block;
  padding: 0px;
}

.preloader .preloader-inner .preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background: #fff;
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}

.preloader .preloader-inner .preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes price-ani {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0.1;
  }
}

.theme-color {
  color: #cd2ecd !important;
}

.white-color {
  color: #ffffff !important;
}

.scrollToTop {
  position: fixed;
  bottom: -30%;
  right: 5%;
  z-index: 9;
}

.scrollToTop i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: #ac00ac;
  border: 1px solid #ac00ac;
  font-size: 2.5rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
}

.scrollToTop i:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px 0px rgba(0, 113, 240, 0.49);
}

@media (min-width: 992px) {
  .jnBox .row {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .pt-lg-110 {
    padding-top: 108px !important;
  }
  .pb-lg-110 {
    padding-bottom: 110px !important;
  }
}

.breadcrumb {
  background-color: transparent;
  justify-content: center;
}

.breadcrumb-item.active,
.breadcrumb-item a {
  color: #fff;
}

/* @@@@@@@@@@@@@  Common CSS Writing Now  @@@@@@@@@@@@@@ */

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

@media (min-width: 992px) {
  .padding-tb {
    padding: 40px 0;
    margin-bottom: 100px;
  }
}

.lab-btn {
  line-height: 40px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 0 1.3rem;
  color: #fff;
  text-transform: capitalize;
}

.lab-btn i {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lab-btn:hover {
  background-color: #cd2ecd;
  color: #fff;
  box-shadow: 3px 3px 0 currentColor;
}

.lab-btn.style-2 {
  background: transparent;
  border: 2px solid #fff;
}

.lab-btn.style-2 span {
  color: #cd2ecd;
}

.text-btn {
  font-size: 0.875rem;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.text-btn:hover {
  padding-left: 10px;
  color: #cd2ecd;
}

.mb-30-none {
  margin-bottom: -30px;
}

@media (min-width: 576px) {
  .px-15 {
    padding: 0 15px;
  }
}

.gallery-img {
  border: 1px solid #cd2ecd;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(223, 49, 77, 0.3);
}

.gallery-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

/* @@@@@@@@@@@@@  Header Section Start Here  @@@@@@@@@@@@@@ */

.section-header {
  z-index: 1;
}

@media (min-width: 992px) {
  .login i {
    display: none;
  }
  .section-header {
    max-width: 70%;
    margin: 0 auto 50px;
  }
}

@media (min-width: 1200px) {
  .section-header {
    max-width: 100%;
  }
}

.section-header h4 {
  color: #ae00ae;
  margin-top: -8px;
  font-size: 40px;
}

.section-header h2 {
  color: #7035dd;
  font-size: 40px;
}

.banner-section .middlecontent {
  position: absolute;
  bottom: 15px;
  width: 100%;
  color: #fff;
}

.banner-section .middlecontent p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
}

.aboutbg {
  position: relative;
  height: calc(100vh - 25vh);
}

.aboutbg p {
  font-size: 18px;
  line-height: 30px;
  font-weight: normal;
}

.dark-overlay {
  position: absolute;
  content: "";
  background: rgb(0 0 0 / 62%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
}

.banner-content,
.middlecontent {
  position: relative;
}

#aboutvideo .btn-close {
  opacity: 1;
  float: right;
  margin-top: 15px;
  margin-right: 15px;
  filter: invert(1) brightness(1);
}

#aboutvideo .modal-body {
  padding: 0;
  background-color: #000;
}

#aboutvideo .modal-body video {
  width: 100%;
}

/* @@@@@@@@@@@@@  paginations Start Here  @@@@@@@@@@@@@@ */

.paginations {
  margin: 0px auto;
}

@media (min-width: 992px) {
  .paginations {
    margin-bottom: 0px;
  }
}

.paginations ul li {
  border: 1px solid #eee;
  display: inline-block;
  vertical-align: top;
}

.paginations ul li a {
  width: 42px;
  line-height: 33px;
  box-shadow: 0 0px 5px rgba(136, 136, 136, 0.1);
  height: 34px;
  text-align: center;
  color: #000000;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}

.paginations ul li a.active,
.paginations ul li a:hover {
  color: #ffffff;
  background: #7035dd;
}

.paginations ul li a.dot {
  box-shadow: none;
}

.nav-sec ul {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.nav-sec ul li {
  list-style: none;
}

.nav-sec ul li a {
  padding: 0 15px;
  color: #fff;
  font-size: 1.1rem;
}

.right-section-header a span {
  font-size: 1.1rem;
}

.paginations ul li a.dot:hover {
  background: transparent;
  color: #ffffff;
}

.secondry-btn {
  color: #fff !important;
  background-color: #c92cc9;
  border: none;
  background-color: none;
  background: linear-gradient(269.94deg, #7035dd 70.04%, #c92cc9 97.49%);
  background-size: 450px;
  background-repeat: no-repeat;
  padding: 8px 30px;
  background-position: 0%;
  border-radius: 100px;
  -webkit-transition: background 400ms ease-in-out;
  transition: background 400ms ease-in-out;
}

.secondry-btn:hover {
  background-position: 100%;
  color: #c92cc9;
  background-color: none;
  border: none;
}

/* *****=======  Custom Select   ========= *******/

.custom-select::after {
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #ffffff transparent transparent transparent;
}

.custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-size: 10px 15px;
}

/* *****========= All Keyframes  ===============****** */

@keyframes angle-move {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}

@keyframes up-down {
  0%,
  100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
}

@keyframes zoom {
  0%,
  100% {
    transform: scale(0.9) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(30deg);
  }
  80% {
    transform: rotate(-30deg);
  }
}

@keyframes rotate {
  0%,
  100% {
    transform: rotate(10deg) translate(10px, 15px);
  }
  50% {
    transform: rotate(240deg) translate(0, 0);
  }
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes ripple {
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes rotate-2 {
  100% {
    transform: rotate(150deg);
  }
}

/*================*** Header Section Start Here     ***===================*/

.header-section {
  background: transparent;
  /* backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px); */
  z-index: 999;
  position: absolute;
  width: 100%;
}

.header-section.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  right: 0;
  animation: fadeInDown 0.5s;
  -webkit-animation: fadeInDown 0.5s;
  -moz-animation: fadeInDown 0.5s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
}

.header-section.header-fixed .nav-sec ul li a {
  color: #000;
}

.header-section.header-fixed .logo a img {
  filter: none;
  width: 120px;
}

/* .header-section.header-fixed .dropdown_menu {
    display: none;
} */

.svganimation {
  width: 100%;
  height: 100%;
  fill: #c92cc9;
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 0px;
  width: 900px;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 9s linear infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 2822;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes animationdraw {
  0% {
    stroke-opacity: 1;
    fill: rgba(255, 255, 255, 0);
    stroke-dashoffset: 1550;
  }
  100% {
    fill: white;
    stroke-dashoffset: 0;
    stroke-opacity: 0;
  }
}

@media (min-width: 992px) {
  .header-section.header-fixed {
  }
}

@media (min-width: 1200px) {
  .header-section.header-fixed {
    top: 0;
  }
}

.header-section.header-fixed .header-bottom {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-wrapper {
  padding: 10px 0;
}

@media (min-width: 576px) {
  .header-wrapper {
    position: relative;
  }
}

.header-wrapper .logo a img {
  max-width: 160px;
  filter: brightness(0) invert(1);
}

@media (max-width: 575px) {
  .header-wrapper .logo {
    width: 160px;
    margin: 0 auto;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .header-wrapper .logo {
    width: 200px;
  }
}

.header-wrapper .menu-area .signup {
  color: #000;
  border-radius: 0 2px 2px 0;
  font-size: 16px;
}

.header-wrapper .menu-area .ellepsis-bar {
  font-size: 20px;
}

.header-wrapper .menu-area .ellepsis-bar i {
  color: #fff;
}

@media (max-width: 575px) {
  .header-wrapper .menu-area {
    padding: 0px 0;
  }
  .header-wrapper .menu-area .ellepsis-bar {
    margin-left: 20px;
  }
}

.header-bar {
  width: 25px;
  height: 20px;
}

.header-bar span {
  height: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  left: 0;
}

.header-bar span:first-child {
  top: 0;
}

.header-bar span:nth-child(2) {
  top: 52%;
  transform: translateY(-65%);
}

.header-bar span:last-child {
  bottom: 0;
}

.header-bar.active span:first-child {
  -webkit-transform: rotate(45deg) translate(3px, 9px);
  -ms-transform: rotate(45deg) translate(3px, 9px);
  transform: rotate(45deg) translate(3px, 9px);
}

.header-bar.active span:nth-child(2) {
  opacity: 0;
}

.header-bar.active span:last-child {
  -webkit-transform: rotate(-45deg) translate(3px, -9px);
  -ms-transform: rotate(-45deg) translate(3px, -9px);
  transform: rotate(-45deg) translate(3px, -9px);
}

@media (max-width: 575px) {
  .header-bar {
    width: 15px;
    height: 16px;
  }
  .header-bar span {
    height: 2px;
    width: 20px;
  }
  .header-bar.active span:first-child {
    -webkit-transform: rotate(45deg) translate(4px, 6px);
    -ms-transform: rotate(45deg) translate(4px, 6px);
    transform: rotate(45deg) translate(4px, 6px);
  }
  .header-bar.active span:nth-child(2) {
    opacity: 0;
  }
  .header-bar.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(4px, -6px);
    -ms-transform: rotate(-45deg) translate(4px, -6px);
    transform: rotate(-45deg) translate(4px, -6px);
  }
}

/* @@@@@@@@@@@@@  Banner Section Start Here  @@@@@@@@@@@@@@ */

.banner-section {
  background-size: cover;
  /* padding-bottom: 200px; */
  align-items: center;
  /* background: url("../img/hero-bg.png"); */
  background-image: url(../img/hero-bg.png);
  /* backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px); */
  /* background-size: 50%; */
  background-repeat: no-repeat;
  position: relative;
  background-position: bottom;
  height: 100vh;
  /* min-height: 741px; */
  display: flex;
  animation: animatedBackground 60s linear infinite;
  /* Safari and Chrome: */
  -webkit-animation: animatedBackground 60s linear infinite;
  border-bottom-right-radius: 190px;
  border-bottom-left-radius: 190px;
}

.inneranimation {
  padding: 6rem 5rem 3rem;
}

.inneranimation svg path,
.inneranimation svg polygon {
  stroke: #fff;
  fill: #c92cc9;
  stroke-dasharray: 2000;
  stroke-width: 14;
  stroke-dashoffset: 1000;
  animation: dash 9s linear infinite;
}

.haspolygon svg path,
.haspolygon svg polygon {
  stroke-width: 7px;
  /* animation-name: polygondrawAnimation; */
}

@keyframes dash {
  from {
    stroke-dashoffset: 2822;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* .inneranimation svg path,
.inneranimation svg polygon {
    fill-opacity: 0;
    fill: none !important;
    stroke: #fff;
    stroke-width: 15px;
    animation-name: pin;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-direction: alternate;
    animation-timing-function: linear;
} */

/* .haspolygon svg path,
.haspolygon svg polygon {
    stroke-width: 7px;
    animation-name: polygondrawAnimation;
} */

.feature-wrap .abouts {
  transition: 0.4s all linear;
  margin-bottom: 35px;
  /* padding-bottom: 35px; */
  border-bottom: 1px solid #cdcdcd;
  box-shadow: 0 0 9px 0px #0000002e;
  border-radius: 20px;
  padding: 30px;
}

.feature-wrap .abouts:hover {
  background: linear-gradient(269.94deg, #7035dd 70.04%, #c92cc9 97.49%);
}

.feature-wrap .abouts:last-child {
  border-bottom: none;
}

.feature-wrap .abouts:hover h2,
.feature-wrap .abouts:hover p {
  color: #fff;
}

.inneranimation svg {
  height: 228px;
  float: right;
}

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

.flex-row-reverse .text-wrap-fea {
  text-align: right;
}

.text-wrap-fea h2 {
  font-size: 30px;
  color: #7035dd;
}

.fea-image img {
  height: 200px;
  margin: 0 auto;
  display: block;
}

.inneranimation svg path,
.inneranimation svg polygon {
  /* animation-delay: 3s; */
}

@keyframes drawAnimation {
  from {
    /* stroke-dashoffset: 0                                               ; */
    /* stroke-width: 6; */
    fill-opacity: 0;
    stroke-dasharray: 85%;
    stroke-dashoffset: 75%;
  }
  to {
    stroke-dashoffset: 0;
    stroke-width: 15px;
    fill-opacity: 1;
  }
}

@keyframes polygondrawAnimation {
  from {
    /* stroke-dashoffset: 0                                               ; */
    /* stroke-width: 6; */
    fill-opacity: 0;
    stroke-dasharray: 85%;
    stroke-dashoffset: 75%;
  }
  to {
    stroke-dashoffset: 0;
    stroke-width: 7px;
    fill-opacity: 1;
  }
}

@keyframes animatedBackground {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: 100% 100%;
  }
}

@-webkit-keyframes animatedBackground {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: 100% 100%;
  }
}

@media (min-width: 576px) {
  .banner-section {
    padding-top: 4px;
  }
}

/*==== @@@@ Working Process Section start here  @@@@ ======= */

@media (min-width: 992px) {
  .work-section .section-wrapper .col-lg-4 .work-item {
    position: relative;
  }
}

/* @@@@@@@@@@@@@  Blog Widget Section Start Here  @@@@@@@@@@@@@@ */

.widget {
  box-shadow: 0 0 10px rgba(136, 136, 136, 0.1);
  border-radius: 4px;
}

.widget .widget-title {
  padding: 25px 30px;
  border-bottom: 1px solid #391965;
}

.widget .widget-title h5 {
  text-transform: capitalize;
}

.widget.like-member .widget-content .col .image-thumb::before {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 35px 0 0;
  border-color: #cd2ecd transparent transparent transparent;
  z-index: 5;
}

.widget.like-member .widget-content .col .image-thumb::after {
  content: "";
  /* font-family: "icoFont" !important; */
  font-size: 12px;
  top: 3%;
  left: 4%;
  width: 35px;
  height: 35px;
  z-index: 6;
}

.widget.like-member .widget-content .col .image-thumb a img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget.like-member .widget-content .col .image-thumb a:hover img {
  transform: scale(1.1) rotate(2deg);
}

.widget.active-group .widget-content .group-item:first-child {
  border-bottom: 1px solid #391965;
}

.widget.active-group
  .widget-content
  .group-item
  .lab-inner
  .lab-content
  .test
  .lab-btn {
  background: #391965;
  color: #fff;
}

.widget.active-group
  .widget-content
  .group-item
  .lab-inner
  .lab-content
  .test
  .lab-btn
  i {
  color: #fff;
}

/*Contact Item Css Start here*/

.contact-item {
  width: 100%;
  padding: 30px 25px;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 5px 5px rgba(136, 136, 136, 0.05);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: 0 5px 5px rgba(136, 136, 136, 0.12);
}

.contact-item .contact-icon {
  width: 72px;
}

.contact-item .contact-icon i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  background: #f85b82;
}

.contact-item .contact-details {
  width: calc(100% - 72px);
}

.contact-item .contact-details p {
  margin: 0;
}

.col-12:nth-child(2) .contact-item .contact-icon i {
  background: #cd2ecd;
}

.col-12:nth-child(3) .contact-item .contact-icon i {
  background: #5ce1b9;
}

/*Contact Item Css end here*/

/* @@@@@@@@@@@@@  Contact Us Section Start Here  @@@@@@@@@@@@@@ */

.location-map #map {
  height: 435px;
  width: 100%;
}

.location-map #map iframe {
  height: 100%;
  width: 100%;
  border: none;
}

.contact-form-wrapper .contact-form p {
  max-width: 610px;
}

.contact-form-wrapper .contact-form h5 {
}

.contact-form-wrapper .contact-form form.comment-form input[type="text"],
.contact-form-wrapper .contact-form form.comment-form [type="email"] {
  background: #391965;
  border: none;
  border: 1px solid transparent;
}

.contact-form-wrapper
  .contact-form
  form.comment-form
  input[type="text"]:focus-visible,
.contact-form-wrapper
  .contact-form
  form.comment-form
  [type="email"]:focus-visible {
  border: 1px solid rgba(223, 49, 77, 0.5);
  outline: none;
}

@media (min-width: 576px) {
  .contact-form-wrapper .contact-form form.comment-form input[type="text"],
  .contact-form-wrapper .contact-form form.comment-form [type="email"] {
    width: calc(100% / 2 - 10px);
  }
}

.contact-form-wrapper .contact-form form.comment-form textarea {
  background: #391965;
  padding: 10px 15px;
  border: 1px solid transparent;
}

.contact-form-wrapper .contact-form form.comment-form textarea:focus-visible {
  border: 1px solid rgba(223, 49, 77, 0.5);
  outline: none;
}

.contact-form-wrapper .contact-form form.comment-form button.lab-btn {
  background: #cd2ecd;
  outline: none;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 5px 5px rgba(223, 49, 77, 0.3);
}

.contact-form-wrapper .contact-form form.comment-form button.lab-btn:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .login i {
    display: inline-block;
  }
  .login span {
    display: none;
  }
  .login {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 !important;
    text-align: center;
  }
  .banner-section {
    height: calc(100vh - 140px);
  }
  .contact-info-wrapper {
    margin-top: 50px;
  }
}

.contact-info-wrapper .contact-info-title h5 {
}

.contact-info-wrapper .contact-info-title p {
  max-width: 280px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .contact-info-wrapper .contact-info-content {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .contact-info-wrapper .contact-info-content .contact-info-item {
    margin-right: 30px;
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .contact-info-wrapper .contact-info-content .contact-info-item {
    margin-bottom: 30px;
  }
  .contact-info-wrapper .contact-info-content .contact-info-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .contact-info-wrapper
    .contact-info-content
    .contact-info-item
    .contact-info-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .contact-info-wrapper
    .contact-info-content
    .contact-info-item
    .contact-info-inner
    .contact-info-thumb {
    margin-bottom: 0;
    margin-right: 15px;
  }
}

.contact-info-wrapper
  .contact-info-content
  .contact-info-item
  .contact-info-inner
  .contact-info-thumb {
  margin-bottom: 15px;
}

.contact-info-wrapper
  .contact-info-content
  .contact-info-item
  .contact-info-inner
  .contact-info-details
  span {
  color: #ffffff;
}

/*Account Section Starts Here*/

.img-sec {
  max-width: 80%;
  margin: 0 auto;
}

.singup-opt {
  text-align: center;
  margin-top: 30px;
}

.singup-opt a {
  text-decoration: underline;
}

.account-wrapper {
  border-radius: 8px;
  box-shadow: 0px 0px 13px 4px rgb(0 0 0 / 7%);
  padding: 20px 40px;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 15px;
}

.account-wrapper .title {
  text-transform: capitalize;
  margin-bottom: 20px;
}

.account-wrapper .cate {
  font-style: normal;
}

.account-wrapper .cate a {
  font-weight: bold;
}

.account-wrapper .cate a:hover {
  color: #cd2ecd;
}

.account-bottom .subtitle {
  margin-bottom: 10px;
}

.or-sec {
  padding: 12px 27px 20px;
  display: inline-block;
}

@media (min-width: 576px) {
  .account-bottom .subtitle {
    font-size: 20px;
  }
}

.account-bottom .social-media li a {
  width: 40px;
  margin: 0 10px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: block;
  color: #fff;
}

.account-bottom .social-media li a.facebook {
  background: #385797;
}

.account-bottom .social-media li a.twitter {
  background: #d04432;
}

.account-bottom .social-media li a.linkedin {
  background: #007bb5;
}

.account-bottom .social-media li a.instagram {
  background: #e4405f;
}

.account-bottom .social-media li a.pinterest {
  background: #bd081c;
}

.account-bottom .social-media li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(223, 49, 77, 0.3);
}

.account-form .form-group input {
  border: none;
  outline: none;
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 25px;
  background: #fff0;
  border: 1px solid #000;
  padding: 0.6rem 1rem;
}

.btn-primary2 {
  border: 0px;
  background: linear-gradient(269.94deg, #7035dd 70.04%, #c92cc9 97.49%);
  border-radius: 30px;
  background-size: 1000px;
  background-repeat: no-repeat;
  background-position: 0%;
  padding: 10px 50px;
  color: #fff !important;
  font-size: 18px;
  transition: 0.3s all linear;
}

.account-form .form-group .checkgroup {
  flex-wrap: nowrap;
  align-items: center;
}

.account-form .form-group .checkgroup input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}

@media (max-width: 575px) {
  .account-form .form-group .checkgroup input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
}

.account-form .form-group .checkgroup label {
  margin: 0;
  color: #000000;
  vertical-align: super;
}

.account-bottom ul {
  padding: 0;
}

@media (max-width: 575px) {
  .account-form .form-group .checkgroup label {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .account-form .form-group a {
    font-size: 16px;
  }
}

.account-form .form-group a:hover {
  color: #cd2ecd;
}

.account-form .form-group a {
  text-decoration: none;
}

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

@media (max-width: 575px) {
  .account-form .form-group button {
    margin-top: 24px;
  }
}

.or {
  display: block;
  margin: 24px auto 40px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #a416a4;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
}

.or span {
  position: relative;
  z-index: 1;
}

.or::before,
.or::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background: #a416a4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgba(223, 49, 77, 0.3);
  width: 100%;
  height: 100%;
  animation: pulse 2s linear infinite;
  -webkit-animation: pulse 2s linear infinite;
  -moz-animation: pulse 2s linear infinite;
  opacity: 0;
}

.or::before {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  90% {
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    -ms-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2);
    -ms-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
  }
}

/* @@@@@@@@@@@@@  Footer Section Start Here  @@@@@@@@@@@@@@ */

.footer-section {
  background-size: cover;
  padding: 50px 0px 0px;
  /* border-top: 2px solid #ddd; */
  background-image: url(../img/footer-bg.png);
  position: relative;
  margin-top: -80px;
}

.innerbg {
  background-image: url("../img/innerbg.png");
  height: calc(100vh - 55vh);
}

.innerbg-reg {
  /* background-image: url("../img/bg-inner.jpg"); */
  background-image: url("../img/inner-page-bg.png");
  height: 100vh;
}

.innerbg-reg-2 {
  /* background-image: url("../img/bg-inner.jpg"); */
  background-image: url("../img/inner-page-bg-2.png");
  height: 100vh;
}

.innerbg .domalope {
  padding-top: 125px;
}

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

.fw-image-wrap {
  position: relative;
  z-index: 5;
  text-align: right;
  margin-bottom: 150px;
}

.row-reverse {
  flex-flow: row-reverse;
}

h3.special-heading {
  font-weight: 400;
  font-size: 43px;
  line-height: 52px;
  letter-spacing: 0.015em;
}

.special-heading1 {
  font-size: 42px;
  font-weight: bold;
}

.fw-image-wrap .blob-wrap .svg-blob {
  left: 50%;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.fw-image-wrap .blob-wrap .svg-blob path {
  -webkit-animation: blob 15s linear infinite;
  animation: blob 15s linear infinite;
  fill: #f42c81;
  opacity: 1;
  stroke: #f42c81;
}

@media (min-width: 992px) {
  .stroke-left-offset .stroke-title {
    left: -75px;
  }
}

@media (min-width: 1200px) {
  .fw-image-wrap .stroke-title {
    font-size: 150px;
  }
}

@media (min-width: 992px) {
  .fw-image-wrap .stroke-title {
    font-size: 120px;
    top: 90px;
  }
}

@media (min-width: 768px) {
  .fw-image-wrap .stroke-title {
    font-size: 100px;
  }
}

.fw-image-wrap .stroke-title {
  font-size: 70px;
  font-weight: 700;
  left: 0;
  line-height: 0.7;
  opacity: 0.1;
  position: absolute;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #2d2d68;
  -webkit-text-stroke-width: 2px;
  top: 0;
  z-index: 1;
}

@media (min-width: 992px) {
  .scale-1-2x img {
    -webkit-transform: scale(1.22);
    -ms-transform: scale(1.22);
    transform: scale(1.22);
    width: 73%;
    z-index: 9999;
    position: relative;
  }
}

.fw-image-wrap .blob-wrap .stroke-blob {
  opacity: 0.5;
  -webkit-transform: translate(-50%, -50%) rotate(270deg);
  -ms-transform: translate(-50%, -50%) rotate(270deg);
  transform: translate(-50%, -50%) rotate(270deg);
}

.fw-image-wrap .blob-wrap .svg-blob.path-color2 path {
  fill: #ffffff;
  stroke: #ffffff;
}

.fw-image-wrap .blob-wrap .stroke-blob path {
  -webkit-animation: blob 15s linear infinite;
  animation: blob 15s linear infinite;
  fill: transparent !important;
  stroke-width: 0.02em;
}

.fw-divider-space {
  clear: both;
  width: 100%;
}

.color-gradient {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#ffffff)
  );
  background: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
  display: inline-block;
  -webkit-text-fill-color: transparent;
}

.big {
  color: #7035dd;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 14px;
  font-weight: 300;
}

.divider-lg-40 {
  margin-top: 40px;
}

.btn-icon[class*="-grey"],
.btn[class*="-grey"] {
  background-color: #7035dd;
  border-color: #f5f0ef;
}

.btn-icon[class*="-grey"],
.btn[class*="-grey"] {
  color: #ffffff;
}

.btn-white {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
}

.app-btn img {
  margin-right: 9px;
  min-height: 36px;
  transition: all 0.3s ease-in-out;
}

.app-btn .button-label .sub-label {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 300;
}

.app-btn .button-label > * {
  display: block;
  width: 100%;
}

.app-btn .button-label .label {
  font-size: 18px;
  text-transform: none;
  padding: 0px;
}

.app-btn + .app-btn {
  margin-left: 6px;
}

.btn.btn-wide {
  min-width: 195px;
}

.app-btn {
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-inline-box;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  line-height: 1;
  padding: 10px 19px;
  text-align: left;
  background: #000;
  color: #fff;
  border-radius: 10px;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.appdownload {
  position: relative;
  padding-top: 4%;
  background-attachment: fixed;
  padding-bottom: 0%;
  background: #7035dd;
}

.appdownload:after {
  position: absolute;
  top: 0;
  width: 100%;
  content: "";
  height: 100%;
  z-index: 1;
}

.appdownload .container {
  position: relative;
  z-index: 9;
}

.color-black {
  color: #000;
}

@-webkit-keyframes blob {
  0% {
    d: path(
      "M39.1, -61.6C49.8, -61.5, 57.1, -49.3, 57.7, -37C58.3, -24.8, 52.3, -12.4, 53.4, 0.6C54.5, 13.7, 62.8, 27.4, 62.9, 40.9C63, 54.5, 55, 68, 43.2, 74.8C31.3, 81.7, 15.7, 82, 2.5, 77.7C-10.7, 73.4, -21.4, 64.5, -28.9, 55.1C-36.5, 45.7, -40.9, 36, -45.3, 26.7C-49.7, 17.5, -54, 8.7, -56.9, -1.7C-59.8, -12.1, -61.3, -24.2, -57.5, -34.4C-53.7, -44.7, -44.6, -53, -34.1, -53.3C-23.6, -53.5, -11.8, -45.7, 1.2, -47.8C14.2, -49.8, 28.4, -61.7, 39.1, -61.6Z"
    );
  }
  25% {
    d: path(
      "M34.7, -53.4C45.6, -53.8, 55.5, -45.8, 54.1, -35.5C52.7, -25.1, 40, -12.6, 40, 0C40.1, 12.6, 52.8, 25.2, 53.9, 35C54.9, 44.8, 44.4, 51.7, 33.5, 59.6C22.6, 67.5, 11.3, 76.3, 0.4, 75.6C-10.5, 74.9, -20.9, 64.6, -33.8, 57.9C-46.7, 51.1, -62, 47.9, -66.5, 38.8C-71, 29.7, -64.8, 14.9, -63.2, 0.9C-61.5, -13, -64.5, -26, -59.7, -34.5C-54.8, -42.9, -42.1, -46.9, -30.8, -46.2C-19.6, -45.5, -9.8, -40.2, 1.1, -42C11.9, -43.9, 23.8, -52.9, 34.7, -53.4Z"
    );
  }
  50% {
    d: path(
      "M34.9, -63.8C46, -54, 56.5, -46.3, 66.7, -36C76.9, -25.7, 86.8, -12.9, 85.5, -0.8C84.2, 11.4, 71.6, 22.7, 60.8, 32C50.1, 41.3, 41.2, 48.6, 31.3, 56.2C21.5, 63.7, 10.8, 71.6, -1.6, 74.3C-13.9, 77.1, -27.8, 74.7, -34.7, 65.4C-41.6, 56.2, -41.4, 40, -46.7, 27.9C-52, 15.8, -62.9, 7.9, -60, 1.7C-57.1, -4.5, -40.4, -9.1, -30.9, -14C-21.4, -18.8, -19.1, -24, -15.2, -38C-11.2, -51.9, -5.6, -74.8, 3.1, -80.2C11.9, -85.6, 23.7, -73.6, 34.9, -63.8Z"
    );
  }
  75% {
    d: path(
      "M32.4, -47.4C46.8, -47.9, 66.3, -48.8, 70.7, -40.9C75.2, -33.1, 64.4, -16.5, 56.6, -4.5C48.9, 7.6, 44, 15.1, 41.7, 26.5C39.3, 37.8, 39.3, 53, 32.8, 64.6C26.2, 76.3, 13.1, 84.5, -1, 86.2C-15.1, 88, -30.2, 83.2, -36.1, 71.1C-41.9, 59.1, -38.6, 39.7, -47.4, 26.6C-56.2, 13.6, -77.3, 6.8, -82.6, -3.1C-88, -13, -77.6, -25.9, -64.8, -32C-52, -38.2, -36.6, -37.5, -25.4, -38.8C-14.2, -40, -7.1, -43.3, 1, -45C9.1, -46.7, 18.1, -46.9, 32.4, -47.4Z"
    );
  }
  100% {
    d: path(
      "M39.1, -61.6C49.8, -61.5, 57.1, -49.3, 57.7, -37C58.3, -24.8, 52.3, -12.4, 53.4, 0.6C54.5, 13.7, 62.8, 27.4, 62.9, 40.9C63, 54.5, 55, 68, 43.2, 74.8C31.3, 81.7, 15.7, 82, 2.5, 77.7C-10.7, 73.4, -21.4, 64.5, -28.9, 55.1C-36.5, 45.7, -40.9, 36, -45.3, 26.7C-49.7, 17.5, -54, 8.7, -56.9, -1.7C-59.8, -12.1, -61.3, -24.2, -57.5, -34.4C-53.7, -44.7, -44.6, -53, -34.1, -53.3C-23.6, -53.5, -11.8, -45.7, 1.2, -47.8C14.2, -49.8, 28.4, -61.7, 39.1, -61.6Z"
    );
  }
}

@keyframes blob {
  0% {
    d: path(
      "M39.1, -61.6C49.8, -61.5, 57.1, -49.3, 57.7, -37C58.3, -24.8, 52.3, -12.4, 53.4, 0.6C54.5, 13.7, 62.8, 27.4, 62.9, 40.9C63, 54.5, 55, 68, 43.2, 74.8C31.3, 81.7, 15.7, 82, 2.5, 77.7C-10.7, 73.4, -21.4, 64.5, -28.9, 55.1C-36.5, 45.7, -40.9, 36, -45.3, 26.7C-49.7, 17.5, -54, 8.7, -56.9, -1.7C-59.8, -12.1, -61.3, -24.2, -57.5, -34.4C-53.7, -44.7, -44.6, -53, -34.1, -53.3C-23.6, -53.5, -11.8, -45.7, 1.2, -47.8C14.2, -49.8, 28.4, -61.7, 39.1, -61.6Z"
    );
  }
  25% {
    d: path(
      "M34.7, -53.4C45.6, -53.8, 55.5, -45.8, 54.1, -35.5C52.7, -25.1, 40, -12.6, 40, 0C40.1, 12.6, 52.8, 25.2, 53.9, 35C54.9, 44.8, 44.4, 51.7, 33.5, 59.6C22.6, 67.5, 11.3, 76.3, 0.4, 75.6C-10.5, 74.9, -20.9, 64.6, -33.8, 57.9C-46.7, 51.1, -62, 47.9, -66.5, 38.8C-71, 29.7, -64.8, 14.9, -63.2, 0.9C-61.5, -13, -64.5, -26, -59.7, -34.5C-54.8, -42.9, -42.1, -46.9, -30.8, -46.2C-19.6, -45.5, -9.8, -40.2, 1.1, -42C11.9, -43.9, 23.8, -52.9, 34.7, -53.4Z"
    );
  }
  50% {
    d: path(
      "M34.9, -63.8C46, -54, 56.5, -46.3, 66.7, -36C76.9, -25.7, 86.8, -12.9, 85.5, -0.8C84.2, 11.4, 71.6, 22.7, 60.8, 32C50.1, 41.3, 41.2, 48.6, 31.3, 56.2C21.5, 63.7, 10.8, 71.6, -1.6, 74.3C-13.9, 77.1, -27.8, 74.7, -34.7, 65.4C-41.6, 56.2, -41.4, 40, -46.7, 27.9C-52, 15.8, -62.9, 7.9, -60, 1.7C-57.1, -4.5, -40.4, -9.1, -30.9, -14C-21.4, -18.8, -19.1, -24, -15.2, -38C-11.2, -51.9, -5.6, -74.8, 3.1, -80.2C11.9, -85.6, 23.7, -73.6, 34.9, -63.8Z"
    );
  }
  75% {
    d: path(
      "M32.4, -47.4C46.8, -47.9, 66.3, -48.8, 70.7, -40.9C75.2, -33.1, 64.4, -16.5, 56.6, -4.5C48.9, 7.6, 44, 15.1, 41.7, 26.5C39.3, 37.8, 39.3, 53, 32.8, 64.6C26.2, 76.3, 13.1, 84.5, -1, 86.2C-15.1, 88, -30.2, 83.2, -36.1, 71.1C-41.9, 59.1, -38.6, 39.7, -47.4, 26.6C-56.2, 13.6, -77.3, 6.8, -82.6, -3.1C-88, -13, -77.6, -25.9, -64.8, -32C-52, -38.2, -36.6, -37.5, -25.4, -38.8C-14.2, -40, -7.1, -43.3, 1, -45C9.1, -46.7, 18.1, -46.9, 32.4, -47.4Z"
    );
  }
  100% {
    d: path(
      "M39.1, -61.6C49.8, -61.5, 57.1, -49.3, 57.7, -37C58.3, -24.8, 52.3, -12.4, 53.4, 0.6C54.5, 13.7, 62.8, 27.4, 62.9, 40.9C63, 54.5, 55, 68, 43.2, 74.8C31.3, 81.7, 15.7, 82, 2.5, 77.7C-10.7, 73.4, -21.4, 64.5, -28.9, 55.1C-36.5, 45.7, -40.9, 36, -45.3, 26.7C-49.7, 17.5, -54, 8.7, -56.9, -1.7C-59.8, -12.1, -61.3, -24.2, -57.5, -34.4C-53.7, -44.7, -44.6, -53, -34.1, -53.3C-23.6, -53.5, -11.8, -45.7, 1.2, -47.8C14.2, -49.8, 28.4, -61.7, 39.1, -61.6Z"
    );
  }
}

.skew-1-1 {
  position: relative;
  margin-bottom: 10px;
}

@media (max-width: 1799px) {
  .img-baner-var-1 img {
    opacity: 0.4;
    top: 0;
    left: 0;
  }
}

@media (min-width: 1200px) {
  .img-baner-var-1 img {
    display: block;
  }
}

.img-baner-var-1 img {
  position: absolute;
  top: 0;
  /* left: 0; */
  width: 408px;
}

.position-r {
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  html .page .offset-md-top--35 {
    margin-top: -35px;
  }
}

@media (min-width: 1200px) {
  .shell,
  .shell-wide {
    max-width: 100%;
  }
}

@media (min-width: 480px) {
  .range {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    align-items: stretch;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .range > .cell-lg-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
}

@media (min-width: 1200px) {
  .range > .cell-lg-preffix-3 {
    margin-left: 25%;
  }
}

.offset-top-60 {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .range > .cell-md-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
    vertical-align: top;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .range > .cell-sm-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.img-rounded {
  border-radius: 50%;
}

.profiles .small {
  font-size: 16px;
  color: #000000;
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.offset-top-16 {
  margin-top: 16px;
}

.profiles .link {
  color: #c342c3;
}

@media (min-width: 768px) {
  .link {
    font-size: 16px;
    padding-left: 55px;
  }
}

.link {
  position: relative;
  padding-left: 37px;
  line-height: 26px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  color: #000;
  transition: 0.3s;
}

.profiles .link span {
  left: 10px;
}

.link span {
  transition: 0.3s;
  position: absolute;
  left: -5px;
  z-index: 5;
  color: #7035dd;
  font-size: 27px;
}

.profiles .link:hover {
  color: #000;
}

@media (min-width: 768px) {
  .profiles .link:hover span {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.profiles .link:hover span {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
  color: #000;
}

.story-item {
  background-color: #ffffff;
  padding: 20px;
}

/* .footer_wediget {
padding: 20px 0px;
} */

.footer_wediget h3 {
  font-size: 16px;
  color: #000000;
  font-weight: bold;
}

.footer_wediget ul {
  padding: 0px;
  list-style: none;
  margin: 0px;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  text-align: left;
}

.footer_wediget ul li a:hover {
  /* padding-left: 6px; */
  color: #7035dd;
}

.footer-bottom p {
  margin-bottom: 0px;
  color: #ffffff;
  font-weight: normal;
  font-size: 13px;
  text-align: center;
  padding: 10px 0;
  font-weight: 300;
}

.footer-bottom {
  padding: 0px 0px;
}

.footer_wediget li {
  width: auto;
  margin-bottom: 21px;
  /* text-align: left; */
  /* float: left; */
  padding-left: 27px;
}

.footer_wediget li a {
  color: #000000;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
}

.footer_wediget p {
  color: #ae00ae;
  font-weight: bold;
  margin: 0px 0px 4px;
}

.footer_wediget > a {
  color: #ae00ae;
  font-weight: bold;
  display: block;
  margin: 7px 0px;
}

.social {
  margin-top: 19px;
}

.social img {
  width: 33px;
}

.social a {
  margin: 0px 6px;
}

.social a:hover {
}

.logofooter {
  width: 200px;
}

.bluecolor {
  color: #6f35de;
}

.lastprofile h1 {
  color: #6f35de;
  padding-top: 50px;
}

.dolenl {
  width: 20%;
  background: #fff;
  /* box-shadow: 0px 0 10px 3px #cccccc4f; */
  border-radius: 9px;
  padding: 0px;
  position: relative;
  /* height: 100%; */
  /* margin: 1.5%; */
}

.dolenl img {
  height: 100%;
  object-fit: cover;
}

.dolenl:after {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px solid #fff;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  transition: 0.3s all ease-in-out;
  transform: translate(-50%, -50%);
}

.dolenl:hover:after {
  opacity: 1;
  visibility: visible;
}

.range img {
  /* border: 5px solid #c342c3; */
  -moz-transition: all 500ms ease-out 0s;
  -webkit-transition: all 500ms ease-out 0s;
  -ms-transition: all 500ms ease-out 0s;
  -o-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
  /* border-top-left-radius: 70px;
/* width: 80%; 
border-top-right-radius: 70px; */
  width: 100%;
}

.paddinglefts {
  padding-left: 60px;
}

.light-bg {
  /* padding: 0px 0px; */
  background-color: #fff3f3;
}

.textmorts h2 {
  text-align: center;
  /* font-family: "Bromarkers Demo"; */
  font-family: "Sansation";
  margin-bottom: 0;
  font-weight: bold;
}

.range h4 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0px;
  font-family: "Sansation";
}

.story-section {
  /* background-image: url(../img/01.jpg); */
  background-size: cover;
}

.section-header p {
  color: #686868;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: normal;
  width: 80%;
  margin: 0 auto;
}

.user-detail-wrap {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 90px;
  padding-top: 20px;
  color: #fff;
  transition: 0.3s all linear;
}

.dolenl:hover .user-detail-wrap {
  height: 70%;
}

.user-detail {
  margin-bottom: 20px;
}

.lab-content {
  margin-top: 20px;
  height: 90px;
  padding: 0 10px;
}

.blog-content p {
  font-family: "Sansation";
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 0.005em;
  margin-bottom: 20px;
  margin-top: 10px;
  color: #000000;
}

.lab-content a {
  font-weight: normal;
  font-size: 14px;
  text-transform: capitalize;
}

.py-5 {
  padding: 5rem 0;
}

.flexitem {
  width: 18%;
  padding: 20px 10px;
  /* border: 2px solid transparent; */
  transition: all;
  /* background: rgb(112, 53, 221);
background: -moz-linear-gradient(0deg, rgba(112, 53, 221, 1) 0%, rgba(191, 54, 191, 1) 100%);
background: -webkit-linear-gradient(0deg, rgba(112, 53, 221, 1) 0%, rgba(191, 54, 191, 1) 100%);
background: linear-gradient(0deg, rgba(112, 53, 221, 1) 0%, rgba(191, 54, 191, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#7035dd", endColorstr="#bf36bf", GradientType=1); */
  border-radius: 18px;
  transition: 0.4s all linear;
}

.flex {
  display: flex;
}

.flexitem img {
  width: 78px;
}

.flexitem p {
  font-family: "Sansation";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.015em;
  color: #000000;
}

.section-on h2 {
  color: #000000;
  font-size: 40px;
  margin: 0px 0 30px 0;
  font-family: "Sansation";
  font-weight: bold;
  line-height: 66px;
  letter-spacing: 0.015em;
}

.section-on h2 span {
  color: #000000;
  font-size: 30px;
  margin: 0px;
  font-family: "Sansation";
  margin-top: 10px;
  margin-left: 6px;
}

.menu-area {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
}

.banner-content h1 {
  color: #ffffff;
  display: inline-block;
  vertical-align: bottom;
  font-size: 3.2rem;
  margin: 0px;
  font-family: "Sansation";
  font-weight: 700;
  line-height: 95px;
  margin-bottom: 30px;
}

.main-banner-content h1 {
  font-size: 5.2rem;
}

.banner-content h1 a span,
.animationtext {
  background-image: linear-gradient(
    -225deg,
    #4f0687 0%,
    #cf38e6 29%,
    #f7c614 67%,
    #8418d1 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in infinite;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
}

a.scrolldown {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  height: 84px;
  display: flex;
  align-items: end;
}

a.scrolldown span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}

a.scrolldown span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  animation: sdb9 2s infinite;
  box-sizing: border-box;
}

@keyframes sdb9 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* .banner-content h1 span {
    animation-name: glow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
} */

@keyframes glow {
  to {
    background-position: -200% center;
  }
}

/* Animate Background Image */

@-webkit-keyframes aitf {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.banner-content p {
  color: #ffffff;
  font-size: 20px;
}

.banner-content img {
  top: -20px;
  position: relative;
  width: 100%;
}

.btn-primary {
  border: 0px;
  background: linear-gradient(269.94deg, #7035dd 70.04%, #c92cc9 97.49%);
  border-radius: 30px;
  background-size: 1000px;
  background-repeat: no-repeat;
  background-position: 0%;
  padding: 15px 60px;
  color: #fff !important;
  font-size: 20px;
  margin-top: 30px;
  transition: 0.3s all linear;
}

.btn-register {
  border: 0px;
  background: #fff;
  border-radius: 30px;
  padding: 12px 50px;
  color: #000;
  font-size: 1.4rem;
  margin-top: 30px;
  transition: 0.3s all linear;
}

.btn-primary:hover {
  background-position: 100%;
  color: #c266d3;
  background-color: none;
  border: 2px solid #7035dd !important;
  /* background:tra/;.nsparent */
}
.btn-gradient {
  position: relative;
  overflow: hidden;
  background: rgb(112, 53, 221);
  background: -moz-linear-gradient(
    0deg,
    rgba(112, 53, 221, 1) 0%,
    rgba(191, 54, 191, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(112, 53, 221, 1) 0%,
    rgba(191, 54, 191, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(112, 53, 221, 1) 0%,
    rgba(191, 54, 191, 1) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#7035dd", endColorstr="#bf36bf", GradientType=1);
  padding: 16px 54px;
  color: #fff !important;
  font-size: 20px;
  border-radius: 100px;
  margin-top: 27px;
  transition: 0.3s all linear;
  border: none;
}

.btn-gradient:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  /*    background: #F00;*/
  z-index: -1;
  transition: 0.4s;
  border-style: solid;
  border-color: #ae00ae;
  border-width: 80px 100px;
  transform: rotate(360deg);
  transform-origin: top left;
}

.btn-gradient:hover:before {
  border-color: #7035dd;
  transform: rotate(40deg);
  z-index: 1;
}

.btn-gradient:hover {
  color: #ffffff;
  transition: 0.2s;
}

.btn-gradient:hover span {
  z-index: 2;
  position: relative;
}

.btn.joinnow {
  /* background-color: #391965; */
  color: #fff;
  margin: 0 auto;
  display: table;
  margin-top: 15%;
  padding: 12px 25px;
  border-radius: 7px 7px;
  position: relative;
}

.looped-animation {
  animation-duration: 1.5s;
  animation-name: infine;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  position: absolute;
  left: 18px;
}

@keyframes infine {
  0% {
    margin-left: 8px;
  }
  100% {
    margin-left: -15px;
  }
}

.app-btn:hover {
  background: #c342c3;
  color: #fff;
  border-color: #c342c3;
  margin-top: -4px;
  transition: all 0.3s ease-in-out;
}

.testimonial {
  /* padding: 0px 0px 0px; */
  position: relative;
  background: url(../img/App-Banner.jpg);
  background-attachment: fixed;
  /* background-image: linear-gradient(to right, rgb(173 18 174), rgb(112 53 221)); */
}

/* .testimonial::before {
    background: #fff;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
} */

.quote .q {
  padding-top: 0px;
  padding-bottom: 0;
  position: relative;
  text-align: left;
  /* padding-left: 55px; */
  font-weight: bold;
}

.quote .q q:after {
  display: none;
}

#testimonial .owl-dots .owl-dot:hover span,
#testimonial .owl-dots .owl-dot.active span {
  background: #7035dd;
}

#testimonial.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-right: 2px;
}

#testimonial {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 0px;
}

.testimonial h4 {
  font-size: 60px;
  color: #fff;
  font-family: "Sansation";
  font-weight: bold;
}

.q q {
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
  text-align: left;
  line-height: 42px;
  padding-top: 10px;
  display: inline-block;
}

.feedback-title {
  font-family: "Sansation";
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 40px;
  color: #fff;
}

.feedback-title:before {
  margin-top: -10px;
  position: absolute;
  right: 60px;
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../img/comma.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.motions {
  position: relative;
  overflow: hidden;
}

.motions img {
  -moz-transition: all 500ms ease-out 0s;
  -webkit-transition: all 500ms ease-out 0s;
  -ms-transition: all 500ms ease-out 0s;
  -o-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
  width: 100%;
}

.motions:after {
  position: absolute;
  content: "";
  background: rgb(152 29 189 / 71%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
  -moz-transform: perspective(3em) rotateY(-3deg);
  -o-transform: perspective(3em) rotateY(-3deg);
  -ms-transform: perspective(3em) rotateY(-3deg);
  -webkit-transform: perspective(3em) rotateY(-3deg);
  transform: perspective(3em) rotateY(-3deg);
  transform-origin: top;
}

.motions:hover img {
  -moz-transform: scale3d(1.1, 1.1, 1.1);
  -o-transform: scale3d(1.1, 1.1, 1.1);
  -ms-transform: scale3d(1.1, 1.1, 1.1);
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.motions:hover:after {
  opacity: 1;
  -moz-transform: perspective(0) rotateX(0);
  -o-transform: perspective(0) rotateX(0);
  -ms-transform: perspective(0) rotateX(0);
  -webkit-transform: perspective(0) rotateX(0);
  transform: perspective(0) rotateX(0);
}

#testimonial .media-left img {
  width: 100%;
}

section.startyours {
  background-image: url(../img/bg1.png);
  background-attachment: fixed;
  position: relative;
  background-size: contain;
}

.language .dropbtn {
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  background: #000;
  position: relative;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  margin-left: 15px;
}

.language .dropdown {
  position: relative;
  display: inline-block;
}

.language .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 82px;
  border-radius: 4px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

.language .dropdown-content a {
  color: black;
  padding: 7px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.language .dropdown-content a:hover {
  background-color: #f1f1f1;
}

.language .dropdown:hover .dropdown-content {
  display: block;
  z-index: 999;
}

.language .dropdown:hover .dropbtn {
  border: none;
  outline: none;
}

.language {
  display: inline-block;
  margin-right: 8px;
}

span.user {
  background: #a416a4;
  width: 34px;
  height: 34px;
  padding: 4px;
  font-size: 18px;
  text-align: center;
  border-radius: 100%;
  vertical-align: middle;
  display: inline-block;
  margin-top: -4px;
  margin-left: 4px;
}

.icose i {
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 991px) {
  .appdownload {
    background-size: cover;
    padding-bottom: 30px;
  }
  #blog-wrap {
    margin-bottom: 30px;
  }
  .motions {
    display: none;
  }
  .btn-container {
    margin-bottom: 20px;
  }
  section.startyours .text-left {
    text-align: center;
  }
  .flexitem {
    width: 30%;
  }
  .jnBox .row {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }
  .desktop-show {
    display: none;
  }
  .header-top {
    display: block !important;
  }
  .location-map {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .jnBox .row {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }
  .fw-image-wrap:after {
    width: 200px;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 60%;
  }
  .section-on h2 {
    font-size: 35px;
    line-height: normal;
  }
  h2.special-heading {
    font-size: 36px;
  }
  .member-filter
    .member-filter-inner
    .filter-form
    .age
    .custom-select:first-child {
    margin-right: 3px;
  }
}

@media (min-width: 768px) {
  .cls-14 {
    animation: zoom-in-zoom-out 3s ease infinite;
  }
  .shape-pattern {
    bottom: 0;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99;
  }
  .shape-pattern:after,
  .shape-pattern:before {
    -webkit-animation: spin 120s linear infinite;
    animation: spin 120s linear infinite;
    background-color: #fff;
    content: "";
    height: 400px;
    -webkit-mask: url(../img/shape_01.png);
    opacity: 0.4;
    pointer-events: none;
    position: absolute;
    -webkit-transition: 1s all;
    transition: 1s all;
    width: 400px;
    z-index: 99;
    background-size: contain;
  }
  .shape-pattern:before {
    left: 10%;
    top: 15%;
    /* animation: zoom-in-zoom-out 1s ease infinite;*/
  }
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(0.5, 0.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  .shape-pattern:after {
    bottom: 10%;
    right: 10%;
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.domalope {
  position: relative;
  overflow: hidden;
  padding-top: 12px;
  height: 100%;
}

.domalope .row {
  height: 100vh;
  align-items: center;
}

.padding {
  padding: 40px 0px;
}

.blues {
  color: #6f35de;
  font-size: 18px;
}

.perfect {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 27px;
}

.overflows {
  position: relative;
  display: block;
  overflow: hidden;
}

.overflows span {
  position: absolute;
  top: 6px;
  /* font-family: "Bromarkers Demo"; */
  font-family: "Sansation";
  font-weight: bold;
  display: block;
  right: 0px;
  background: #fff;
  padding: 3px 10px;
  color: #ab02ab;
}

.overflows img,
.new-member img {
  width: 100%;
  -moz-transition: all 500ms ease-out 0s;
  -webkit-transition: all 500ms ease-out 0s;
  -ms-transition: all 500ms ease-out 0s;
  -o-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
}

.new-member {
  overflow: hidden;
  border-radius: 12px;
}

.new-member img:hover,
.overflows:hover img {
  transform: scale(1.15) rotate(3deg);
  cursor: pointer;
}

.light-color {
  color: #686868;
}

.textcont {
  padding-top: 10px;
}

.textcont h2 {
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 0.015em;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 10px;
}

.textcont p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  /* color: #676767; */
  line-height: 30px;
}

.textcont li {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: #676767;
}

.fw-light {
  font-weight: 300;
}

.textcont a {
  color: #000;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.abouts h2 {
  font-weight: 600;
}

.title h2 {
  font-size: 50px;
  margin-top: 0px;
}

.title {
  margin-bottom: 30px;
}

.diolep_x {
  top: 0;
  text-align: center;
  padding: 25px 0px;
}

.diolep_x h2 {
  color: #fff;
  font-size: 31px;
}

.banerimg {
  height: 100%;
  background-size: cover;
  padding: 0px 0px;
  position: relative;
  z-index: 0;
}

.diolep_xx {
  background-color: #ffffff;
  border-radius: 35px;
  padding: 20px 30px;
  margin: 0px 0px;
  display: table;
  width: 100%;
}

.diolep_xx h5 {
  color: #7035dd;
  justify-content: space-between;
  font-size: 40px;
}

.diolep_xx h5 span a {
  color: #af03af !important;
  font-size: 16px;
  text-decoration: underline;
}

.diolep_xx p {
  color: #7035dd;
}

.dlwes a {
  color: #fff;
  background: #7035dd;
  padding: 14px 10px;
  border-radius: 5px;
  width: 48%;
  display: inline-block;
  text-align: center;
  margin: 0px 5px;
  text-transform: uppercase;
  font-size: 12px;
}

.listpat {
  color: #af03af !important;
}

.dlwes {
  display: flex;
  text-align: center;
  justify-content: center;
}

.dlwes a:hover {
  background: #a416a4;
}

.dlo_cs {
  background-color: #d3c0f4;
  padding: 0px 0px;
}

.media-left {
  width: 170px;
  height: 170px;
  border-radius: 100%;
  margin: 0 auto 30px;
  padding: 0px;
  display: inline-block;
  overflow: hidden;
  border: 5px solid #eac4ee;
}

.textmorts i {
  font-size: 16px;
  font-size: 10px;
}

.textmorts i.top {
  vertical-align: top;
  margin-top: 10px;
}

.semlo h3 {
  color: #7035dd;
  text-align: center;
  font-size: 45px;
}

.inputsel {
  position: relative;
}

.inputsel input {
  padding: 16px 41px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 6px;
}

.inputsel i {
  position: absolute;
  left: 11px;
  top: 16px;
  font-size: 20px;
  color: #7035dd;
}

.detailtabs .nav.nav-tabs {
  margin: 20px auto;
  border: none;
  justify-content: space-between;
  width: 100%;
}

.detailtabs .nav.nav-tabs li {
  width: 27%;
  margin: 0px 20px;
}

.detailtabs .nav.nav-tabs li a {
  padding: 20px 25px;
  display: block;
  background: #7035dd;
  color: #fff;
  font-weight: 400;
  width: 100%;
  letter-spacing: 1px;
  font-size: 16px;
  border-radius: 4px;
  text-align: center;
}

.detailtabs .nav.nav-tabs li a.active {
  color: #fff;
  background: #a416a4;
}

.detailtabs {
  margin-top: 0px;
}

.tab-content.lefop {
  margin: 60px auto;
  width: 100%;
}

.faq .panel-title > a:before {
  float: right !important;
  font-family: FontAwesome;
  content: "\f068";
  padding-right: 5px;
  color: #a416a4;
  padding: 3px 5px;
  font-weight: normal;
  border-radius: 100%;
  line-height: 1;
}

.faq .panel-title > a.collapsed:before {
  float: right !important;
  content: "\f067";
  color: #a416a4;
  padding: 3px 5px;
  font-weight: normal;
  border-radius: 100%;
  line-height: 1;
}

.faq .panel-title > a:hover,
.faq .panel-title > a:active,
.faq .panel-title > a:focus {
  text-decoration: none;
}

.faq .panel-title a {
  font-weight: 500;
  font-size: 19px;
  display: block;
  text-align: left;
  padding: 0px 0px;
  color: #7035dd;
}

.tab-content.lefop h3 {
  color: #a416a4;
  font-size: 25px;
  text-align: left;
}

blockquote.media.quote {
  border: none;
  padding: 0 20px;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.plays {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  z-index: 999;
}

.videosec {
  /* background-image: linear-gradient(to right, rgb(173 18 174), rgb(112 53 221)); */
  padding: 50px 0px;
  overflow: hidden;
  position: relative;
  /* display: table; */
  /* width: 100%; */
  clear: both;
}

.videosec .container-fluid {
  position: relative;
  z-index: 9;
}

.videosec:before {
  position: absolute;
  content: "";
  width: 54%;
  height: 80%;
  background-image: linear-gradient(to right, rgb(173 18 174), rgb(112 53 221));
  right: -13%;
  bottom: -13rem;
  border-radius: 100%;
}

.videosec h3 {
  color: #000;
  font-weight: 400;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: 0.015em;
}

.banerdov {
  position: relative;
}

.psde {
  background: #ffffff;
  padding: 0px;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0px 2px 16px 1px rgb(196 196 196);
}

.lwes {
  padding: 10px;
}

.lwes p {
  color: #000000;
  font-size: 21px;
  line-height: 35px;
}

.pdn {
  padding: 0px;
}

.lweser img {
  padding: 31px 0px;
  /* margin-left: -30px; */
}

#sliderabot {
  height: 100%;
}

#sliderabot .owl-nav,
#bestseller .owl-nav {
  position: absolute;
  left: -55px;
  right: -55px;
  top: 50%;
  /* width: 100%; */
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

#sliderabot .owl-prev,
#bestseller .owl-prev {
  background-color: #fff !important;
  width: 35px;
  height: 35px;
  bottom: 0;
  line-height: 0;
  margin-top: 0px;
  z-index: 9;
  text-align: center;
  font-size: 30px !important;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border-radius: 100%;
}

#sliderabot .owl-next,
#bestseller .owl-next {
  background-color: #fff !important;
  width: 35px;
  height: 35px;
  bottom: 0;
  line-height: 0;
  margin-top: 0px;
  z-index: 10;
  text-align: center;
  font-size: 30px !important;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border-radius: 100%;
}

#sliderabot .owl-prev i,
#bestseller .owl-prev i {
  line-height: 0;
  position: relative;
  top: -1px;
  left: -3px;
}

#sliderabot .owl-next i,
#bestseller .owl-next i {
  line-height: 0;
  position: relative;
  top: -1px;
  right: -3px;
}

#sliderabot .owl-prev:hover,
#sliderabot .owl-next:hover,
#bestseller .owl-prev:hover,
#bestseller .owl-next:hover {
  background-color: #ab12af !important;
}

.close {
  position: absolute;
  right: 8px;
  font-size: 57px;
  opacity: 1;
  z-index: 9999;
  color: #af03af;
  top: -6px;
  font-weight: normal;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

.privacys.modal.in .modal-dialog {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
  margin: 0px;
  width: 400px;
}

@media (min-width: 768px) {
  .offset-md-3 {
    margin-left: 25%;
  }
}

.banner-content {
  /* display: table;
width: 100%;
position: relative; */
}

.heartBeat {
  position: absolute;
  width: 40%;
  bottom: -27px;
  right: 8%;
}

.phone_send {
  text-align: center;
  padding-top: 30px;
}

.sendlink {
  background: #7035dd;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 0px;
}

.inputsem input {
  padding: 10px 12px;
  border: 1px solid #ededed;
  vertical-align: top;
  border-radius: 0;
  /* box-shadow: 0px 1px 4px #ddd; */
}

.sendlink:hover {
  background: #a416a4;
  color: #fff;
}

.banerimg {
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
  height: 604px;
}

.dropdown_menu {
  position: fixed;
  right: -350px;
  top: 0px;
  /* left: auto; */
  width: 300px;
  background: #391965;
  height: 100vh;
  bottom: 0;
  z-index: 999;
  transition: 0.3s all ease-in-out;
  padding-top: 50px;
}

.dropdown_menu.wide {
  right: 0;
}

.navbar-toggle-header {
  color: #ae00ae;
  border-radius: 7px 7px;
  font-size: 16px;
  background: transparent;
  border: 2px solid #ae00ae;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 8px;
  margin-left: 5px;
}

.navbar-toggle-header:hover {
  background-color: #ae00ae;
  color: #fff;
}

/*.menudown:hover .dropdown_menu{
opacity: 1;
visibility: visible;
display: block;
}*/

.dropdown_menu ul {
  list-style: none;
  margin: 0px;
  padding: 0;
  /* display: flex;
justify-content: center;
align-items: center; */
}

.dropdown_menu .close {
  position: absolute;
  right: 32px;
  top: 20px;
  width: 32px;
  height: 32px;
  opacity: 1;
}

.dropdown_menu .close:hover {
  opacity: 1;
}

.dropdown_menu .close:before,
.dropdown_menu .close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #ffffff;
}

.dropdown_menu .close:before {
  transform: rotate(45deg);
}

.dropdown_menu .close:after {
  transform: rotate(-45deg);
}

.dropdown_menu li:last-child a {
  border-bottom: none;
}

.dropdown_menu li a {
  font-weight: normal;
  background-color: #391965;
  color: #fff;
  /* margin: 0 5px; */
  /* display: table; */
  padding: 12px 25px;
  /* border-radius: 7px 7px; */
  text-transform: uppercase;
  font-size: 12px;
  width: 100%;
  display: inline-block;
  text-align: left;
}

.dropdown_menu li a:hover {
  background-color: #a416a4;
  color: #fff;
}

.phone_send p {
  font-size: 19px;
}

.looped-animation.unset {
  animation-name: unset !important;
}

.marquee {
  width: 450px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  align-items: center;
  vertical-align: middle;
  padding: 15px 0px;
}

.marquee > div {
  display: table-row;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}

.marquee > div p {
  width: 450px;
  padding-left: 450px;
  display: table-cell;
  font-size: 30px;
  color: #7035dd;
  text-align: center;
  font-weight: normal;
  font-family: "Sansation";
}

/* Make it move */

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

.inputsem .selectpicker {
  width: 124px;
  display: inline-block;
  border-right: none;
  padding: 0px 5px;
}

.inputsem {
  display: inline-flex;
  width: 100%;
}

.inputsem .selectpicker:focus {
  outline: none;
}

.shopiner {
  height: 500px;
  background-size: cover;
  background-position: 100%;
}

.shopflex {
  display: flex;
  justify-content: space-between;
  padding: 0px 2%;
  flex-wrap: wrap;
}

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

.shopflex img {
}

.shopflex h4 {
  color: #000;
  font-family: "Sansation";
  font-size: 15px;
  font-family: "Sansation";
  margin-top: 20px;
}

.shops {
  padding: 30px 0px;
}

.titles h2 {
  color: #6f35de;
  text-align: center;
  font-size: 40px;
}

.navshop {
  padding: 20px 0px;
}

.navshop ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.navshop ul li {
  color: #7035dd;
  margin: 0px 15px;
}

.videoitems {
  overflow: hidden;
}

.navshop li a {
  color: #000000;
  font-weight: bold;
}

.navshop ul li.active a {
  color: #a416a4;
}

.inputsem input::-webkit-input-placeholder {
  font-weight: bold;
  color: #000;
}

.inputsem input:-ms-input-placeholder {
  font-weight: bold;
  color: #000;
}

.inputsem input::placeholder {
  font-weight: bold;
  color: #000;
}

.inputsem input:focus {
  outline: none;
}

.video_banner video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  object-fit: fill;
}

section.video_banner {
  height: 620px;
  position: relative;
}

.widthlop {
  width: 32%;
  text-align: center;
  margin: 0 auto;
  display: table;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  font-weight: normal;
}

.cleopback {
  background-size: cover;
  background-position: center;
  height: 310px;
  position: relative;
}

.contects {
  padding: 56px 0px;
}

.contects h2 {
  color: #c342c3;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 42px;
  margin: 0px 0 20px;
}

.contects p {
  font-size: 25px;
}

.shopget {
  color: #ffffff;
  border-radius: 100px;
  font-size: 16px;
  background: #7035dd;
  padding: 8px 25px;
  margin: 17px 0px;
  border: none;
}

.contser {
  text-align: center;
  padding: 20px 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.contser h4 {
  margin-top: 0px;
  color: #000;
  font-family: "Sansation";
  font-size: 16px;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.stars i {
  color: #f1c306;
}

.textindent {
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

.textindent del {
  padding: 0px 10px;
  color: #bdb9b9;
  transition: all 0.3s ease-in-out;
}

.mainprice {
  color: #7035dd;
  font-size: 17px;
}

.percent {
  background: #d7d7d7;
  color: #000;
  padding: 4px 8px;
  margin: 0px 9px;
}

.shop-item {
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.viewall {
  color: #ffffff;
  border-radius: 4px 4px;
  font-size: 16px;
  background: #7035dd;
  padding: 10px 25px;
  margin: 17px auto;
  display: table;
  text-transform: uppercase;
  border: none;
}

.featured {
  margin-bottom: 50px;
}

.viewall:hover,
.viewall:focus,
.shopget:hover {
  background: #c342c3;
  color: #fff;
  outline: none;
  border: none;
}

.bestsell {
  padding: 36px 0px;
}

.bestsell a {
}

.mbt-40 {
  margin-bottom: 30px;
}

.imghiden {
  display: block;
  overflow: hidden;
}

.overflows_ss:hover .showancer {
  opacity: 1;
  visibility: visible;
  bottom: 0px;
  transition: all 0.3s ease;
}

.showancer a {
  color: #fff;
}

.showancer {
  position: absolute;
  left: 0;
  right: 0;
  background: #7035dd;
  bottom: -20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 10px 0px;
  text-transform: uppercase;
}

.overflows_ss:hover img {
  transform: scale(1.15) rotate(3deg);
  cursor: pointer;
}

.overflows_ss img {
  width: 100%;
  -moz-transition: all 500ms ease-out 0s;
  -webkit-transition: all 500ms ease-out 0s;
  -ms-transition: all 500ms ease-out 0s;
  -o-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
}

.overflows_ss {
  position: relative;
}

.videoitems img {
  -moz-transition: all 500ms ease-out 0s;
  -webkit-transition: all 500ms ease-out 0s;
  -ms-transition: all 500ms ease-out 0s;
  -o-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
  border-radius: 4px;
  max-width: 280px !important;
}

.videoitems:hover img {
  -moz-transform: scale(1.15) rotate(3deg);
  -o-transform: scale(1.15) rotate(3deg);
  -ms-transform: scale(1.15) rotate(3deg);
  -webkit-transform: scale(1.15) rotate(3deg);
  transform: scale(1.15) rotate(3deg);
}

.navshop {
  margin-bottom: 20px;
}

.navproduct {
  padding: 20px 0px;
  margin-bottom: 20px;
}

.navproduct > ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0px;
}

.navproduct > ul > li {
  background: #7035dd;
  padding: 4px 2px;
}

.navproduct > ul > li a {
  color: #7035dd;
  background: #fff;
  padding: 10px 20px;
  display: block;
  border-radius: 4px 3px;
  border: 1px solid #fff;
}

.navproduct > ul > li.active a {
  background: #a416a4;
  color: #fff;
}

.navproduct > ul > li.dropdown:hover .dropdown-menu {
  display: block;
  width: 100%;
  border: none;
  margin: 0px;
  padding: 0px;
}

.navproduct > ul > li:first-child {
  border-radius: 4px 0px 0px 4px;
  padding-left: 4px;
}

.navproduct > ul > li:last-child {
  border-radius: 0px 4px 4px 0px;
  padding-right: 4px;
}

.navproduct .dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background-color: #a416a4;
  color: #fff;
}

.navproduct .dropdown-menu > li > a {
}

/*product detail slider css*/

.product-details-top {
  margin-bottom: 1rem;
}

.product-gallery {
  margin-bottom: 10px;
}

.product-main-image {
  position: relative;
  margin-bottom: 1rem;
}

.product-main-image img {
  max-width: none;
  width: 100%;
}

.btn-product-gallery {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 49;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  color: #000;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1;
  background-color: #fff;
  box-shadow: 2px 6px 16px rgba(51, 51, 51, 0.05);
  transition: all 0.35s ease;
}

.btn-product-gallery:hover,
.btn-product-gallery:focus {
  color: #fff;
  background-color: rgb(0 0 0 / 46%);
}

.product-image-gallery {
  display: flex;
  flex-flow: row wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.product-gallery-item {
  position: relative;
  display: block;
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}

.max-col-6 .product-gallery-item {
  flex: 0 0 16.66%;
  max-width: 16.66%;
}

.product-gallery-item img {
  max-width: none;
  width: 100%;
}

.product-gallery-item:before,
.product-gallery-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  top: 0;
  bottom: 0;
  transition: all 0.35s ease;
}

.product-gallery-item:before {
  opacity: 0;
  visibility: hidden;
  border: 0.1rem solid #c96;
}

.product-gallery-item:after {
  visibility: visible;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.product-gallery-item.active:before {
  visibility: visible;
  opacity: 1;
}

.product-gallery-item:hover:after,
.product-gallery-item.active:after {
  opacity: 0;
  visibility: hidden;
}

.product-gallery-vertical .row {
  margin-left: 0;
  margin-right: 0;
}

.product-gallery-vertical .product-image-gallery,
.product-gallery-vertical .product-main-image {
  width: 100%;
}

.product-gallery-vertical .product-image-gallery {
  width: calc(100% + 10px);
}

.product-gallery-masonry {
  position: relative;
  display: block !important;
}

.product-gallery-masonry .product-gallery-item {
  max-width: 50%;
  width: 50%;
}

.product-gallery-carousel.owl-carousel {
  z-index: initial;
}

.product-gallery-carousel.owl-carousel .owl-item:not(.active) {
  pointer-events: none;
}

.product-gallery-image {
  margin-bottom: 0;
  padding-right: 1rem;
}

.product-gallery-separated {
  position: relative;
}

.product-separated-item {
  position: relative;
  display: block;
  margin-bottom: 1rem;
}

.product-separated-item img {
  max-width: none;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .product-gallery-vertical .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    flex-direction: row-reverse;
  }
  .product-gallery-vertical .btn-product-gallery {
    right: 2.5rem;
  }
  .product-gallery-vertical .product-image-gallery,
  .product-gallery-vertical .product-main-image {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .product-gallery-vertical .product-main-image {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .product-gallery-vertical .product-image-gallery {
    width: auto;
    flex: 0 0 20%;
    max-width: 20%;
    margin-left: 0;
    margin-right: 0;
  }
  .product-gallery-vertical .product-gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
  }
  .product-gallery-vertical .product-gallery-item:before,
  .product-gallery-vertical .product-gallery-item:after {
    left: 0;
    right: 0;
  }
}

.product__details__text h3 {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 7px;
  /* font-family: "Handlee", cursive !important; */
}

.itwes {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.description {
  margin: 20px 0;
}

.description p {
  font-size: 16px;
}

.addtocart {
  background: #6a32d5;
  width: 100%;
  display: block;
  text-align: center;
  padding: 17px 20px;
  border-radius: 7px;
  margin-top: 15px;
}

.galtimage {
  width: 15%;
  display: inline-block;
  margin-right: 7px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.pro-qty {
  overflow: hidden;
  border-radius: 0px 0px 6px 6px;
}

.pro-qty button {
  width: 100%;
  background: #a416a4;
  border: none;
  text-align: center;
  color: #fff;
  padding: 6px 0px;
  font-size: 12px;
}

.pro-qty button span {
  font-size: 22px;
  line-height: 0;
  font-weight: 200;
}

.itwes img {
  width: 100%;
}

.quantity {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.addtocart:hover {
  background: #a416a4;
}

.description li {
  position: relative;
  list-style: none;
  padding: 3px 18px;
}

.description li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #a416a4;
  position: absolute;
  border-radius: 100%;
  left: 0;
  top: 9px;
}

.product__details__rating i {
  font-size: 16px;
  color: #f1c306;
  margin-top: 6px;
  margin-bottom: 8px;
}

.fs20 {
  font-size: 20px !important;
}

.detail-testimonial {
  /* background: #6a32d5; */
  border-radius: 10px;
}

.detail-testimonial h4 {
  font-size: 30px;
  text-align: center;
  color: #fff;
}

.detail-testimonial .media-left {
  width: 120px;
  height: 120px;
}

.detail-testimonial .media-left img {
}

.detail-testimonial .q q {
  font-size: 18px;
}

.social-media li {
  display: inline-block;
}

table.cartables {
  box-shadow: 0px 0px 19px #cdcdcd;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 1px solid #eee;
}

.widthmols {
  width: 175px;
  border-radius: 10px;
}

a.delets {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  box-shadow: 0px 2px 7px #ddd;
  display: block;
  color: #000;
  position: absolute;
  right: -60px;
  padding: 8px;
  font-size: 18px;
  text-align: center;
  top: 37%;
}

.mfp-gallery {
  /* top: 306.4px; */
  position: fixed !important;
  height: 746px;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 78%);
  top: 0 !important;
}

.mfp-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
}

.mfp-close span {
  font-size: 43px;
  line-height: 26px;
  font-weight: 300;
}

.mfp-gallery .mfp-container {
  text-align: center;
}

.mfp-gallery .mfp-img {
  height: 80vh;
}

.cartone {
  position: relative;
  margin: 38px 0px;
}

.cartables {
  border-radius: 15px;
}

.cartables td {
  padding: 17px;
  vertical-align: top;
}

.counth3 h4 {
  font-weight: bold;
  font-size: 16px;
  margin-top: 0px;
  font-family: "Sansation";
}

.counth3 p {
}

.belows {
}

.topirce {
  text-align: right;
}

.orlavel {
  text-align: right;
  font-size: 0;
  margin-top: 50%;
}

.orlavel input {
  width: 44px;
  text-align: center;
  border: none;
  border-top: 1px solid #dfdfdf;
  padding: 5px 4px;
  border-bottom: 1px solid #dfdfdf;
}

.orlavel button {
  border-radius: 0px;
  padding: 5px 10px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
}

.titles h3 {
  font-size: 23px;
  color: #7035dd;
  margin-bottom: 0px;
  margin-top: 31px;
  font-family: "Sansation";
}

.orlavel button.rightbord {
  border-left: none;
  border-right: 1px solid #dfdfdf;
}

.topirce span {
  color: #7035dd;
  font-size: 17px;
  font-weight: bold;
}

.d-fles {
  display: flex;
  align-items: center;
}

.totalor p {
  margin: 0px;
  color: #7035dd;
  font-size: 18px;
  font-weight: bold;
}

.chekout {
  float: right;
  background: #7035dd;
  color: #fff;
  padding: 13px 35px;
}

.totalor span {
  padding: 0px 10px;
}

.totalor {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 2px 0px 30px;
}

a.delets:hover {
  box-shadow: 0px 2px 7px #7035dd;
}

.chekout:hover {
  background: #a416a4;
  color: #fff;
}

table.cartables:hover {
  box-shadow: none;
}

.bigsel {
}

.bigsel img {
  padding: 0px 30px;
  width: 80%;
}

#sliderabot .item {
  height: 100%;
}

.fresl {
  width: 50%;
  margin: 0 auto;
  display: table;
}

.btn-product-gallery .fa-arrows-alt:before {
  color: #000;
}

.product-detailsec.padding {
  padding-bottom: 0px;
}

section.products.padding {
  padding-bottom: 10px;
}

.shop-item .addtodes .btnadcart {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.addtodes {
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}

.shop-item:hover .textindent {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.btnadcart {
  background: #a416a4;
  border: none;
  color: #fff;
  padding: 9px 16px;
  /* position: absolute; */
  margin-top: 10px;
  left: 0;
  bottom: -35px;
  right: 0;
  width: 138px;
  opacity: 0;
  display: table;
  margin: 0 auto;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}

.video_banner {
}

.innerpage_dropdown {
  position: relative;
}

.innerpage_dropdown .dropdown_menu {
  top: 15px;
}

.pdsebho {
  padding-top: 75px;
}

.form-area {
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(90, 116, 148, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.form-area .form-inner {
  width: 100%;
}

.form-area .form-control {
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 19px;
  font-size: 16px;
  line-height: 1.4;
  color: #475f7b;
  background-color: #fff;
  border: 1px solid #dfe3e7;
  border-radius: 0;
  -webkit-transition: border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-area .form-control:focus {
  color: #475f7b;
  background-color: #fff;
  border-color: #7035dd;
  outline: 0;
  box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}

.intl-tel-input,
.iti {
  width: 100%;
}

.iti__country-list {
  width: 315px;
  overflow-x: hidden;
}

a.menudown {
  display: block;
  position: relative;
  z-index: 99;
  /* width: 25%; */
}

.selawe p {
  margin-top: 19px !important;
  font-size: 18px;
  line-height: 30px;
}

.single-list {
  margin-bottom: 50px;
}

.single-list h3 {
  font-size: 28px;
}

.eldren {
  text-transform: capitalize;
  /* text-shadow: 0px -2px 4px #000; */
  padding-left: 5px;
}

.font30 {
  font-size: 60px !important;
}

.lwes p span {
  display: block;
}

.panel-group .panel {
  margin-bottom: 15px;
}

.paddingpew {
  padding-top: 9%;
}

.overloas {
  display: block;
  overflow: hidden;
  width: 85px;
  /* border-radius: 100%; */
}

.overloas:hover img {
  transform: scale(1.05);
}

img {
  transition: all 0.5s ease-out 0s;
}

.thakus {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 31px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
  box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
  width: 485px;
  margin: 0 auto;
}

.paracolor {
  color: #000000;
}

.joinnow h3 {
  position: absolute;
  font-family: "Sansation";
  top: 40px;
  left: 0;
  text-align: center;
  right: 0;
  line-height: 1;
  font-size: 36px;
}

.joinnow h3 span {
  display: block;
  font-size: 27px;
}

.joinnow h3 p {
  margin: 9px 0px 0px;
  font-size: 18px;
}

.extoert {
  text-shadow: 0px -2px 4px #000;
}

.extoert h4 {
  color: #fff;
  font-size: 25px;
  /* font-family: "Bromarkers Demo"; */
  font-family: "Sansation";
  font-weight: bold;
}

.lab-thumb {
  display: block;
  background: linear-gradient(
    201.2deg,
    #ad61e3 -21.87%,
    #c92cc9 14.27%,
    #8418d1 64.59%
  );
  border-radius: 20px 20px 50% 50%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.lab-thumb-2 {
  background: none;
}

.lab-item-full {
  display: block;
  background: linear-gradient(
    201.2deg,
    #ad61e3 -21.87%,
    #c92cc9 14.27%,
    #8418d1 64.59%
  );
}

.lab-item-full p {
  color: #fff;
}

.footer_wediget li {
  display: inline-block;
}

.footer_wediget li span {
  display: inline-block;
  padding: 0px 17px;
  color: #a416a4;
}

.warning p {
  font-size: 16px;
  margin-top: 30px;
  color: #000;
  font-weight: 400;
  text-align: center;
  line-height: 26px;
  margin-bottom: 40px;
}

.footer-bottom {
  background-color: #1f1f1f;
}

.footer-bottom-content {
  margin-top: 30px;
}

.footer-bottom-content a {
  color: #ffffff;
  text-decoration: none;
}

.extoert span {
  font-family: "Sansation";
}

.aboutpg {
  padding-top: 30px;
}

.cart-content p {
  font-family: "Sansation";
  font-size: 16px;
}

.lastprice i {
  color: #848383;
}

.account-bottom i {
  font-size: 20px;
}

.btn-toggle {
  background-color: #c92cc9;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  border: none;
}

.btn-toggle img {
  width: 30px;
}

@media (max-width: 1199px) {
  .lab-content p {
    font-size: 18px;
  }
  .flexitem p {
    font-size: 14px;
  }
  .work-item .lab-inner:before {
    width: 60pxf;
  }
  .q q {
    font-size: 20px;
  }
  .banner-content h1 {
    font-size: 60px;
  }
  .section-header p {
    width: 100% !important;
  }
  .secondry-btn {
    padding: 6px 18px;
  }
  .footer_wediget li {
    padding-left: 10px !important;
  }
  .img-wide {
    width: 85%;
  }
  .range h4 {
    font-size: 16px;
  }
  .user-detail {
    font-size: 13px;
  }
}

@media screen and (max-width: 991px) {
  .work-item .lab-inner:before {
    display: none;
  }
  .section-on h2 {
    font-size: 35px;
  }
  .special-heading1 {
    font-size: 26px;
  }
  .big {
    color: #7035dd;
    font-size: 16px;
    line-height: 25px;
  }
  .app-btn {
    font-weight: 500;
    line-height: 1;
    padding: 7px 12px;
    text-align: left;
    min-width: auto !important;
  }
}

@media (max-width: 767px) {
  .flex-row-reverse .text-wrap-fea {
    text-align: left;
  }
  .fea-image img {
    margin: unset;
  }
  .newMembers .col-md-3 {
    width: 50%;
  }
  .member-title {
    font-size: 1.1rem !important;
  }
  .lab-content a {
    display: inline-block;
    margin-bottom: 10px;
  }
  .quote .q q:before {
    width: 80px;
    height: 80px;
  }
  .img-wide {
    width: 75%;
    margin: 0 auto;
    display: block;
  }
  .domalope {
    margin-top: 10rem;
  }
  .banner-content h1 {
    font-size: 44px;
    line-height: 50px;
  }
  .header-wrapper .menu-area {
    justify-content: center;
  }
  .header-wrapper .logo {
    text-align: center;
  }
  .btn-container {
    margin-bottom: 30px;
  }
  .chekout {
    float: none !important;
    display: table;
    margin: 20px auto;
  }
  .totalor {
    display: block !important;
  }
  .cartables {
    width: 1051px;
    overflow-x: auto;
  }
  .cartone {
    overflow-x: auto;
  }
  .navproduct > ul {
    display: block !important;
  }
  .overflows_ss {
    margin-bottom: 20px;
  }
  .videoitems img {
    width: 100%;
    max-width: 285px !important;
  }
  .galtimage {
    width: 22% !important;
  }
  .dropdown_menu li a {
    margin: 0 3px !important;
    padding: 9px 8px !important;
    font-size: 16px !important;
  }
  .banner-content .dropdown_menu {
    position: absolute;
    right: 0;
    top: 92px;
    left: 0;
    background: transparent !important;
  }
  .shopiner {
    height: 200px !important;
  }
  .bestsell .col-lg-3 {
    width: 100%;
    margin-bottom: 10px;
  }
  .titles h2 {
    font-size: 29px !important;
  }
  .media-left {
    margin-bottom: 20px !important;
    width: 79px !important;
    height: 79px !important;
    object-fit: cover;
    padding: 0px;
    display: inline-block !important;
  }
  .q q {
    font-size: 19px !important;
  }
  .quote .q q:before {
    font-size: 30px !important;
    left: 5px !important;
    top: 15px !important;
  }
  .work-item .lab-inner .lab-thumb .thumb-inner {
    /* width: 80px !important; */
  }
  .work-section {
    padding: 10px !important;
  }
  .work-section h2 {
    font-family: "Sansation";
  }
  .section-on h2 {
    font-size: 40px !important;
  }
  .domalope {
    overflow: visible !important;
  }
  .dropdown_menu {
    z-index: 99999999;
    /* background: #fff !important; */
  }
  .banner-content img {
    /* top: 11px; */
    width: 100%;
    margin-top: 50px;
    /* left: auto; */
    /* position: absolute; */
  }
  .diolep_xx h5 span a {
    font-size: 10px !important;
  }
  .dlwes a {
    font-size: 10px;
    width: 50% !important;
  }
  .privacys.modal.in .modal-dialog {
    width: 100%;
    margin: 0 !important;
  }
  .diolep_xx {
    padding: 15px 0px !important;
  }
  .detailtabs .nav.nav-tabs li {
    width: 100% !important;
    margin: 7px 0px !important;
  }
  .tab-content.lefop {
    margin: 0px 0px !important;
  }
  .semlo {
    padding-bottom: 30px;
  }
  .semlo h3 {
    font-size: 28px !important;
  }
  .textmorts h2 {
    font-size: 30px;
  }
  .videosec h3 {
    font-size: 30px;
  }
  .videosec {
    padding: 0px 0px 20px !important;
  }
  #sliderabot {
    display: table;
    table-layout: fixed;
  }
  .container {
    width: 100% !important;
  }
  .navbar-toggle {
    display: none;
  }
  .plays {
    width: 40px !important;
  }
  .header-wrapper .logo a img {
    max-width: 105px;
  }
  .banerimg {
    height: 100% !important;
  }
  body {
    overflow-x: hidden;
  }
  .lweser img {
    margin-left: 0px !important;
  }
  .shape-pattern {
    display: none;
  }
  .footer_wediget {
    text-align: center;
    padding: 10px 0px;
  }
  .sloped {
    margin-top: 20px !important;
  }
  h3.special-heading {
    font-size: 20px;
  }
  .pdnole {
    padding: 10px 0px;
  }
  .banner-section {
    background-size: cover;
    padding-bottom: 200px;
    padding-top: 5px;
  }
  .menu-area.text-right {
    text-align: center !important;
  }
  p {
    font-size: 18px;
  }
  .middlecontent h3 {
    font-size: 16px;
    line-height: 17px;
    margin-top: 17px;
  }
  .range {
    display: flex;
    flex-flow: wrap;
    align-items: stretch;
  }
  .section-header p {
    width: 100%;
    margin: 0 auto 32px;
  }
  .dolenl {
    width: 50%;
  }
  .user-detail-wrap {
    text-align: center;
    padding: 0 10px;
  }
  .testimonial {
    padding: 0px 0px;
  }
  .testimonial h4 {
    font-size: 30px;
  }
  #testimonial .media-left img {
    width: 200px;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
  }
  .motions {
    margin-bottom: 20px;
  }
  .row {
    margin: 0 auto;
  }
  .btn.btn-wide {
    min-width: 163px;
  }
  .app-btn {
    padding: 8px;
  }
  .paddinglefts {
    padding-left: 20px;
  }
  html,
  body {
    overflow-x: hidden;
  }
  .col-lg-4 {
    width: 100%;
    margin: 0px;
  }
  .flexitem {
    width: 50% !important;
    padding: 5px 10px !important;
  }
  .flexitem img {
    width: 50px;
  }
  .flexitem .work-item .lab-inner .lab-thumb .thumb-inner::after {
    font-size: 30px !important;
  }
  .cell-md-4 {
    text-align: center;
  }
}

@media (max-width: 596px) {
  .mfd {
    display: none;
  }
  .marquee2 p {
    font-size: 20px;
  }
  .banner-content h1 {
    line-height: normal;
    font-size: 40px;
  }
  .banner-content {
    margin-left: 10px;
    text-align: center;
  }
  .section-on h2 span {
    font-size: 20px;
  }
  .q q {
    font-size: 16px !important;
    line-height: 25px;
  }
}

@media (min-width: 596px) {
  .mfm {
    display: none;
  }
  /* .jnBox {
padding: 0px 60px;
} */
}

.member-title {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 29px;
  letter-spacing: 0.015em;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 0px;
}

.member-age {
  font-weight: 500;
  font-size: 1rem;
  line-height: 19px;
  letter-spacing: 0.015em;
  color: #4f5158;
}

.media-body {
  background: #7035dd;
  border-radius: 20px;
  padding: 30px;
  position: relative;
}

.media-body:before {
  background: linear-gradient(0deg, #8418d1, #8418d1), #7035dd;
  border-radius: 22px;
  transform: rotate(-5.4deg);
  margin-top: 10px;
  content: "";
  width: 100%;
  height: 100%;
}

.warning-content {
  background: #fff;
  color: #333;
  width: 70%;
  padding: 15px 15px 0 35px;
  border-radius: 25px;
}

.warning-content p {
  font-family: "Sansation";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: #676767;
}

.warning-main {
  position: absolute;
  bottom: -80px;
  z-index: 2;
}

.footer-top {
  margin-top: 125px;
}

footer .list-group-item {
  background: none;
}

footer h4 {
  font-family: "Sansation";
  font-weight: bold;
  font-size: 22px;
  line-height: 51px;
  color: #ffffff;
  padding-left: 20px;
}

footer li a {
  font-size: 14px;
  color: #ffffff;
}

.media-before:hover:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 91%;
  height: 91%;
  background: linear-gradient(0deg, #8418d1, #8418d1), #7035dd;
  border-radius: 22px;
  transform: rotate(-5.4deg);
  border-radius: 12px;
  transform-origin: top right;
}

.fc {
  float: left;
  margin: 0 5px 0 0;
  width: 150px;
  height: 40px;
  position: relative;
}

.fc label,
.fc input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 3px;
}

.fc input[type="radio"] {
  opacity: 0.011;
  z-index: 100;
}

.fc input[type="radio"]:checked + label {
  background: #000;
  border-radius: 25px;
  color: #fff;
}

.fc label {
  cursor: pointer;
  z-index: 90;
  line-height: 1.8em;
  border: 2px solid #000;
  border-radius: 25px;
  text-align: center;
}

.more-option {
  text-align: left;
  font-size: 15px;
}

.form-select {
  border: 1px solid #000;
  outline: none;
  width: 100%;
  border-radius: 25px;
  background: #fff0;
}

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

.social-login img {
  width: 25px;
}

.social-login a {
  text-align: left;
  color: #000;
}

.social-login-icon {
  border: 1px solid #bababa;
  padding: 7px 10px;
}

.account-wrapper a:visited {
  color: #000;
}

.tab {
  display: none;
}

.invalid {
  border: 1px solid red !important;
}

.right-inner-addon {
  position: relative;
  width: 80%;
}

.right-inner-addon input {
  padding-right: 35px !important;
}

.right-inner-addon i {
  position: absolute;
  right: 0px;
  padding: 12px 20px;
  pointer-events: none;
}

.reg-field {
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  border: none;
  background: rgba(243, 239, 252, 0.17);
  color: #fff;
}

.reg-field::placeholder {
  color: #fff;
}

.reg-field:focus {
  background-color: #fff0;
  color: #fff;
}

.right-inner-addon i {
  color: #fff;
}

.abouts p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  /* letter-spacing: 0.08em; */
  color: #636363;
}

.about-middle-section h2 {
  color: #000000;
  line-height: 1;
}

.about-middle-section {
  /* background-image: url(../img/about-middle-bg.png); */
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}

.about-middle-section img {
  width: 100%;
}

.about-section-4 strong {
  font-weight: 400;
  font-size: 28;
  /* line-height: 66px;
    letter-spacing: 0.085em; */
  color: #000000;
}

.row.single-data {
  border-radius: 23px;
  align-items: center;
  margin: 20px 0;
  transition: 0.3s all ease-in-out;
  border: 2px solid #c92cc9;
  padding: 20px;
  background: #fff;
  justify-content: space-around;
}

.row.single-data:hover img {
  filter: brightness(0) invert(1);
}

.row.single-data:hover {
  background: linear-gradient(269.94deg, #7035dd 70.04%, #c92cc9 97.49%);
}

.row.single-data:hover p,
.row.single-data:hover p strong {
  color: #fff;
}

.about-middle-section strong {
  font-weight: 400;
  font-size: 28px;
  font-family: "Sansation";
  font-weight: bold;
  /* line-height: 66px; */
  /* letter-spacing: 0.085em; */
  color: #000000;
}

@media (min-width: 768px) {
  .single-data .image-wrap {
    width: 150px;
  }
}

.single-data .content-wrap {
  width: calc(100% - 250px);
}

.about-owl .item {
  margin: 20px;
}

.blog-meta small {
  font-weight: 400;
  letter-spacing: 0.085em;
  color: #878787;
}

.blog-meta i {
  font-weight: 400;
  font-size: 1em;
  margin-left: 10px;
  color: #878787;
}

.features-cta {
  background-color: #7035dd;
  color: #fff;
  display: inline-block;
  width: 100%;
}

.features-cta p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.cities p {
  font-weight: bold;
  font-size: 20px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 0.015em;
  color: #000000;
}

.cities-cta {
  margin-bottom: 120px;
}

.blog-details {
  padding-top: 100px;
}

.blog-details p {
  padding-top: 20px;
  padding-bottom: 20px;
}

.blog-nav {
  margin-bottom: 200px;
}

.blog-nav img {
  width: 30px;
}

.blog-nav a {
  color: #000;
  font-weight: bold;
}

.blog-nav span {
  font-weight: bold;
}

.form-field {
  margin-top: 60px;
  margin-bottom: 60px;
}

.help-magnifier {
  position: relative;
}

.help-magnifier img {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
}

.help-magnifier input {
  background: #dfdfdf;
  border-radius: 25px;
  padding: 8px 10px;
}

.help-magnifier input::placeholder {
  color: #000;
}

.help-box {
  box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  margin: 20px;
}

.help h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 0.015em;
  color: #000000;
}

.help-box p {
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 0.015em;
  color: #676767;
}

.help-box a {
  color: #ac00ac;
}

.help {
  margin-bottom: 150px;
}

.tab small {
  color: #000;
}

.reg-title {
  color: #000 !important;
}

.card-wrap img {
  margin: 10px auto 20px;
  display: block;
  height: 69px;
}

.card-wrap {
  padding: 20px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.card-wrap p {
  font-size: 16px;
  color: #676767;
  font-family: "Sansation";
}

@media (max-width: 596px) {
  .svganimation {
    top: 400px;
    right: 50px;
    width: 600px;
  }
}

@media (max-width: 767px) {
  .feedback-title:before {
    margin-top: -10px;
    position: absolute;
    right: 40px;
    content: "";
    width: 40px;
    height: 40px;
  }
  #testimonial {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .warning-main {
    position: initial;
  }
  .warning-content {
    width: 97%;
    padding: 5px 5px 5px 5px;
  }
  .warning-main .col-md-3 {
    text-align: center;
  }
  .warning-main img {
    width: 100px;
  }
  .warning-main {
    margin-top: 30px;
    position: inherit;
  }
  .warning-content p {
    font-size: 16px;
    line-height: 30px;
  }
  .footer-section {
    margin-top: -85px;
  }
  .right-inner-addon {
    width: 100%;
    margin-bottom: 80px;
  }
  .footer-section .col-md-3 {
    width: 50%;
  }
  .about-middle-section img {
    width: 100px;
  }
  .single-data .content-wrap {
    width: 100%;
  }
  .image-wrap {
    text-align: center;
    margin-bottom: 30px;
  }
  .videosec:before {
    position: relative;
  }
  .domalope .row {
    height: 40vh;
    align-items: center;
  }
  .domalope .col-md-8 {
    justify-content: center;
  }
  .domalope .col-md-4 {
    text-align: center;
  }
  .successStories .col-md-3 {
    width: 50%;
  }
  .contser h4 {
    text-overflow: initial;
    white-space: initial;
  }
  .store-mob .col-sm-3 {
    width: 50%;
  }
  .contects {
    text-align: center;
  }
  .cities .col-sm-3 {
    width: 50%;
  }
  .work-item .lab-inner .lab-thumb .thumb-inner::after {
    content: "01";
    position: absolute;
    font-family: "Sansation";
    width: 30px;
    height: 30px;
    border-radius: 26px;
    line-height: 30px;
    text-align: center;
    font-size: 50px;
    margin-top: -25px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    font-weight: bold;
  }
  .innerbg {
    background-image: url(../img/innerbg.png);
    height: calc(100vh - 40vh);
  }
}

.lab-item {
  transition: 0.3s all linear;
}

.lab-item:hover {
  background: linear-gradient(
    201.2deg,
    #ad61e3 -21.87%,
    #c92cc9 14.27%,
    #8418d1 64.59%
  );
}

.lab-item:hover .lab-thumb {
  background: #ff000000;
}

.lab-item:hover p {
  color: #fff !important;
}

@media (min-width: 596px) and (max-width: 767px) {
  .svganimation {
    top: 360px;
    width: 700px;
  }
}

@media (max-width: 991px) and (max-height: 760px) {
  .banner-section {
    height: calc(115vh);
  }
}

@media (min-width: 768px) {
  .svganimation {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .warning-content p {
    line-height: 30px;
  }
  .warning-content {
    width: 96%;
  }
}

@media (min-width: 991px) {
  .finder-diff {
    width: 60%;
  }
  .video-txt {
    color: #fff !important;
  }
}
@media (max-width: 768px) {
  .innerbg {
    display: none;
  }
  .video_banner video {
    top: 50px;
  }
  .videosec:before {
    background-image: none !important;
  }
  .mob-login {
    margin-right: 10px !important;
  }
  .logbtn {
    width: 120px;
  }
}
.side-overflow a:visited {
  color: #000 !important;
}
.side-overflow a:hover {
  color: #ac00ac !important;
}
.friends-list img {
  width: 70px;
  border-radius: 50%;
}
.friends-list p {
  margin-left: 10px;
  margin-bottom: 0;
}
.friends-list small {
  margin-left: 10px;
}
.upload__box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  border: 2px solid #ac00ac;
  border-radius: 5px;
  position: relative;
}
.upload__box i {
  font-size: 25px;
  color: #000000;
  background: #ac00ac52;
  padding: 12px 13px 9px 13px;
  border-radius: 50%;
  cursor: pointer;
}
.upload__box p {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
  cursor: pointer;
}
.x__close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: #e0e0e0;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
}

.subsp .title {
  text-align: center;
  margin: 10px auto 50px auto;
  z-index: 1;
  margin-top: 100px;
}

.subsp h2 {
  margin-top: 20px;
}

.subsp h3 {
  margin-top: 40px;
}

.subsp p {
  margin: 20px 30px;
  font-size: 16px;
}

.subsp small {
  font-size: 12px;
  color: gray;
}

.subsp .small-colored {
  color: #c92cc9;
}

.subsp .offers {
  position: relative;
  text-align: center;
  background: #fff;
  padding: 1%;
  margin: 10px;
  width: 300px;
  height: auto;
  top: 0;
  border: 1px solid #eaeaea;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.subsp .offers:hover {
  position: relative;
  top: -20px;
  box-shadow: 0px 14px 6px 0px #0000004d;
}

.subsp .offers {
  border-top: 2px solid #c92cc9;
  box-shadow: 0 0 10px 0px #0000001c;
}

.subsp .offers h3 {
  margin-top: 20px;
}

.subsp .offers:hover {
  box-shadow: 0px 14px 6px 0px #0000004d;
}

.subsp .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

@media (min-width: 576px) {
  .subsp h2 {
    font-size: 30px;
    line-height: 1.5;
  }
}
.third-col .sug-title {
  text-transform: none !important;
}
.userTitle {
  text-transform: capitalize;
}
.side-title {
  text-transform: capitalize;
}
.hiw-btn {
  position: absolute;
  font-size: 13px;
  bottom: 8px;
  left: 0;
  right: 0;
}
.hiw-btn a {
  border-radius: 25px;
  padding: 2px 5px 5px 5px !important;
  background: linear-gradient(
    -225deg,
    #4f0687 0%,
    #cf38e6 29%,
    #f7c614 67%,
    #8418d1 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  animation: glow 2s ease-in infinite;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
}

.hiw-btn2 {
  position: absolute;
  font-size: 13px;
  bottom: 13px;
  right: 12%;
}
.hiw-btn2 a {
  border-radius: 25px;
  padding: 2px 5px 5px 5px !important;
  background: linear-gradient(
    -225deg,
    #4f0687 0%,
    #cf38e6 29%,
    #f7c614 67%,
    #8418d1 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  animation: glow 2s ease-in infinite;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
}
.post-name a {
  text-transform: capitalize;
}

.text-capitalize {
  text-transform: capitalize;
}

.is-animetion {
  margin-top: 0.6em;
}

.is-animetion span {
  display: inline-block;
  -webkit-animation: wave-text 1s ease-in-out infinite;
  animation: wave-text 2s ease-in-out infinite;
}

.is-animetion span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.is-animetion span:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.2s;
}

.is-animetion span:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.4s;
}

.is-animetion span:nth-of-type(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.6s;
}

.is-animetion span:nth-of-type(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.8s;
}

.is-animetion span:nth-of-type(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 01s;
}

.is-animetion span:nth-of-type(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 1.2s;
}

.is-animetion span:nth-of-type(8) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 1.4s;
}

.is-animetion span:nth-of-type(9) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 1.6s;
}

.is-animetion span:nth-of-type(10) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 1.8s;
}

.is-animetion span:nth-of-type(11) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 02s;
}

.is-animetion span:nth-of-type(12) {
  -webkit-animation-delay: 0.11s;
  animation-delay: 2.2s;
}

.is-animetion span:nth-of-type(13) {
  -webkit-animation-delay: 0.12s;
  animation-delay: 2.4s;
}

.is-animetion span:nth-of-type(14) {
  -webkit-animation-delay: 0.13s;
  animation-delay: 2.6s;
}

.is-animetion span:nth-of-type(15) {
  -webkit-animation-delay: 0.14s;
  animation-delay: 2.8s;
}

.is-animetion span:nth-of-type(16) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 3.2s;
}
.is-animetion span:nth-of-type(17) {
  -webkit-animation-delay: 0.16s;
  animation-delay: 3.4s;
}
.is-animetion span:nth-of-type(18) {
  -webkit-animation-delay: 0.17s;
  animation-delay: 3.6s;
}
.is-animetion span:nth-of-type(19) {
  -webkit-animation-delay: 0.18s;
  animation-delay: 3.8s;
}
.is-animetion span:nth-of-type(20) {
  -webkit-animation-delay: 0.19s;
  animation-delay: 4s;
}
.is-animetion span:nth-of-type(21) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 4.2s;
}
.is-animetion span:nth-of-type(22) {
  -webkit-animation-delay: 0.21s;
  animation-delay: 4.4s;
}
.is-animetion span:nth-of-type(23) {
  -webkit-animation-delay: 0.22s;
  animation-delay: 4.6s;
}
.is-animetion span:nth-of-type(24) {
  -webkit-animation-delay: 0.23s;
  animation-delay: 4.8s;
}
.is-animetion span:nth-of-type(25) {
  -webkit-animation-delay: 0.24s;
  animation-delay: 5s;
}
.is-animetion span:nth-of-type(26) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 5.2s;
}
.is-animetion span:nth-of-type(27) {
  -webkit-animation-delay: 0.26s;
  animation-delay: 5.4s;
}
.is-animetion span:nth-of-type(28) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 5.6s;
}

@keyframes wave-text {
  00% {
    transform: translateY(0em);
  }

  60% {
    transform: translateY(-0.6em);
  }

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

@keyframes wave-text {
  00% {
    transform: translateY(0em);
  }

  60% {
    transform: translateY(-0.6em);
  }

  100% {
    transform: translateY(0em);
  }
}
.regh1 {
  font-size: 2.5rem !important;
  padding-left: 4px;
}
.formCheck {
  display: flex;
  padding-left: 0px;
}
.formCheck label {
  margin-left: 10px;
}
input.largerCheckbox {
  width: 20px;
  height: 20px;
}
.formCheck input[type="checkbox"]:checked {
  background-color: #a77e2d !important;
  color: #ffffff !important;
}
.formCheck input[type="checkbox"]:after {
  box-shadow: none !important;
}
.loginSo {
  text-align: center;
  font-size: 2rem !important;
}
.imgL1 {
  transform: scaleX(-1);
}
.text-white {
  color: #fff !important;
}
.loginPage {
  background-image: url(https://truelovefinder.com/assets/img/exp4bg3.jpg);
  background-size: cover;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  position: relative;
  background-position: bottom;
  height: 100vh;
  padding-top: 50px;
}
.registration-bg input:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.registration-bg .labelR {
  font-weight: 600;
}
.reg-title {
  font-weight: 600;
}
.account-form .form-select {
  border: 2px solid #000 !important;
  /* width: initial !important; */
}
.registration-bg .select2-container--default .select2-selection--multiple {
  border-radius: 25px !important;
  border: 2px solid #000 !important;
  background-color: transparent;
}
.registration-bg
  .select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border-radius: 25px !important;
  border: 2px solid #000 !important;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #fff !important;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #b708b7 !important;
  border: 1px solid #a500a5 !important;
  border-radius: 24px !important;
  color: #ffff !important;
}

.registration-bg .select2 {
  width: 100% !important;
}
.contt .select2-container--default .select2-selection--single {
  background-color: #fff0 !important;
  border: 2px solid #000 !important;
  border-radius: 25px !important;
}
.contt .select2-container .select2-selection--single {
  height: 40px !important;
}
.contt
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #000;
  line-height: 40px !important;
}
.registration-bg .form-control {
  height: 39px !important;
  margin-top: -2px;
}
.text-black {
  color: #000 !important;
}
.cysm {
  margin-top: 2.5rem !important;
  font-size: 2rem !important;
}
.search-container {
  width: 490px;
  display: block;
  margin: 0 auto;
}

input#search-bar {
  margin: 0 auto;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  font-size: 1rem;
  border: 2px solid #ac00ac;
  outline: none;
  border-radius: 25px;
}

input#search-bar:focus {
  border: 3px solid #ac00ac;
  transition: 0.35s ease;
  color: #000;
}

input#search-bar:focus::-webkit-input-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}

input#search-bar:focus::-moz-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}

input#search-bar:focus:-ms-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}

.search-icon {
  position: relative;
  float: right;
  width: 30px;
  height: 30px;
  top: -35px;
  right: 15px;
}
