@font-face {
  font-family: "proxima-nova-black";
  src: url("../fonts/proxima-nova-black.otf");
}

@font-face {
  font-family: "proxima-nova-regular";
  src: url("../fonts/proxima-nova-regular.woff");
}

@font-face {
  font-family: "proxima-nova-bold";
  src: url("../fonts/proxima-nova-bold.otf");
}

@font-face {
  font-family: "proxima-nova-semibold";
  src: url("../fonts/proxima-nova-semibold.woff");
}

:root {
  --font-one: "proxima-nova-black";
  --font-three: "proxima-nova-bold";
  --font-four: "proxima-nova-semibold";
  --font-nine: "proxima-nova-regular";
  --color-one: #1df4ed;
  --color-two: #4ec8ff;
  --color-three: #f7fbfc;
  --color-four: #35e0f7;
  --color-five: #ffffffb3;
  --white-clr: #fff;
  --heading-one-color: #2f3237;
  --text-color: #5b657a;
  --text-color-two: #a1a2a4;
  --text-color-three: #4e545f;
  --bg-transparent: rgba(255, 255, 255, 0.8);
  --bg-transparent-2: rgb(255, 255, 255);
  --bg-transparent-3: rgba(255, 255, 255, 0.5256512);
  --bg-transparent-4: rgb(255, 255, 255);
  --bg-white: rgb(255, 255, 255);
  --bg-grey: #2f3237;
  /* --grad-one: #18242b; */
  --grad-one: #f7fbfc;
  --filter-effect: filter(none);
}

[data-theme="dark"] {
  --color-one: #1df4ed;
  --color-two: #4ec8ff;
  --color-three: #f7fbfc;
  --color-four: #35e0f7;
  --color-five: #333;
  --white-clr: #fff;
  --heading-one-color: #fff;
  --text-color: #c0c5d3;
  --text-color-two: #92969b;
  --text-color-three: #bbc0c7;
  --bg-transparent: rgba(255, 255, 255, 0.08);
  --bg-transparent-2: rgba(255, 255, 255, 0.5);
  --bg-transparent-3: rgba(255, 255, 255, 0.08);
  --bg-transparent-4: rgba(255, 255, 255, 0.1);
  --bg-white: rgba(255, 255, 255, 0.08);
  --bg-grey: rgba(255, 255, 255, 0.08);
  --grad-one: #18242b;
  --filter-effect:brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(301deg) brightness(106%) contrast(101%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  overflow-x: hidden;
  font-family: var(--font-nine);
  /* background: linear-gradient(
    90deg,
    var(--color-three) 0%,
    var(--color-three) 50%,
    var(--color-three) 100%
  ); */
  background: linear-gradient(
    90deg,
    var(--grad-one) 0%,
    var(--grad-one) 50%,
    var(--grad-one) 100%
  );
  transition: background .3s cubic-bezier(.4,.4,.7,.85), color 0.3s ease-in-out;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
}

textarea:focus,
input:focus,
button:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.btn {
  color: var(--white-clr);
  height: 42px;
  width: auto;
  max-width: 100%;
  font-family: var(--font-nine);
  font-size: 15px;
  text-transform: capitalize;
  margin: 0;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--prim-clr-1);
  background: linear-gradient(73deg, var(--color-one), var(--color-two));
  border-radius: 100px;
  font-weight: 400;
  box-shadow: 0 25px 30px -20px #1fd7ff80;
  text-shadow: 1px 1px 3px #03a9f4;
}

.btn:hover {
  color: #fff;
}
.theme-btn {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: var(--heading-one-color);
}

/************************************* header *************************************/

/* header-btm */

header .header-btm .navbar > .container {
  align-items: center;
}

header .header-btm .navbar {
  padding: 18px 30px;
  transition: all 0.3s ease-in-out;
  background: var(--bg-transparent-4);
  z-index: 1000;
  box-shadow: 0 0 20px 0 #0f8ec726;
  width: 100%;
}

header.sticky .header-btm .navbar {
  backdrop-filter: blur(7px);
}

header .header-btm .navbar .navbar-brand {
  margin: 0;
  padding: 0;
}

header .header-btm .navbar .navbar-brand .logo {
  transition: all 0.3s ease-in-out;
  margin: 0;
  height: auto;
  width: clamp(115px,12vw,230px);
  filter: var(--filter-effect);
}

header .header-btm .side-ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

header .header-btm .side-ul .sd-li:not(:last-child) {
  margin: 0 15px 0 0;
}

header .header-btm .side-ul .sd-li a.login {
  /* color: #000; */
  /* border-right: 1px solid #0003; */
  /* background: transparent; */
  padding-top: 8px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 9px;
  font-weight: 400;
  font-size: clamp(12px,1vw,15px);
  line-height: 22px;
  font-family: var(--font-nine);
}

header .header-btm .side-ul .sd-li:last-child {
  margin: 0;
}

header .header-btm .side-ul .sd-li .down-btn {
  height: 52px;
  width: 300px;
}

/***************************** header close *****************************/
.foot-logo .footer-thumb {
  height: clamp(30px,2vw,46px);
  object-fit: contain;
  object-position: center;
  filter: var(--filter-effect);
}
.foot-top-sec {
  margin-top: 50px;
}

.foot-top-sec .website-buttons>a>img {
  height: clamp(40px,6vw,100px);
}
.foot-top-sec .footer-content-dv {
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
.footer-content-dv .logo-sm {
  width: auto;
  margin-bottom:10px;
  filter: var(--filter-effect);
}

.footer-content-dv h3 {
  color: var(--heading-one-color);
  font-size: clamp(20px, 1.5vw, 35px);
  font-family: var(--font-nine);
  font-weight: 400;
  line-height: 43px;
  margin-bottom: 20px;
}
.footer-content-dv .website-buttons {
  margin-top: 30px;
}

footer.main-footer {
  padding: 48px;
  padding-bottom: 0px;
}

footer.main-footer .foot-cont {
  border-top: 1px solid #9092a34d;
  padding-top: 30px;
}

footer.main-footer .ft-links {
}

footer.main-footer .ft-links .ft-links-menu{
        margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
}

footer.main-footer .ft-links .ft-links-menu a{
        color: var(--heading-one-color);
    font-family: var(--font-nine);
    font-size: clamp(13px, 1vw, 16px);
    line-height: 23px;
}

.ft-links .ft-link-title {
}

footer.main-footer .website-buttons {
    margin: 0;
}

.ft-links .ft-link-title h2 {
  font-size: clamp(16px, 1.5vw, 25px);
  color: var(--heading-one-color);
  font-weight: 300;
  font-family: var(--font-nine);
}

.ft-links ul {
  margin-top: 30px;
}

.ft-links ul li a {
  font-size: clamp(12px, 1vw, 16px);
  line-height: 27px;
  color: var(--text-color);
  font-weight: 300;
  text-decoration: none;
  font-family: var(--font-nine);
  transition: 0.3s ease-in;
}

.ft-links ul li {
  margin-bottom: 5px;
}

.ft-links ul li a:hover {
  color: var(--color-two);
}

.ft-get-st .ft-down-bt .ft-btn-download:hover {
  color: var(--color-two);
}

footer.main-footer .ft-btm {
}

footer.main-footer .ft-btm .line {
  border-top: 1px solid #9092a34d;
  padding: 40px 60px;
  margin-top: 30px;
}

.ft-btm .ft-copy {
}

.ft-btm .ft-copy a {
  color: var(--heading-one-color);
  font-family: var(--font-nine);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 23px;
}

.ft-btm .ft-copy a span {
  text-decoration: underline;
}

.ft-btm .ft-copy-text {
  display: grid;
  justify-content: end;
}

.ft-btm .ft-copy-text p {
  color: var(--text-color);
  font-family: var(--font-nine);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 23px;
}

.ft-btm .ft-copy-text a {
  color: var(--text-color);
  font-family: var(--font-nine);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 23px;
}

.ft-links .ft-get-st {
}

.ft-links .ft-get-st .website-buttons {
  margin-top: 20px;
  justify-content: flex-start;
  margin-bottom: 0px;
}

.ft-links .ft-get-st .website-buttons .btn {
  width: 185px;
  color: #000;
  background-color: transparent;
  /* border-right: 1px solid #0003; */
  padding-top: 8px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 9px;
  background-image: none !important;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--font-nine);
  text-shadow: none;
  justify-content: start;
}

.ft-links .ft-get-st .ft-down-bt {
  margin-top: 20px;
}

.ft-get-st .ft-down-bt .ft-btn-download {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  font-size: clamp(13px, 1vw, 16px);
  color: var(--text-color);
  font-family: var(--font-nine);
}

.ft-get-st .ft-down-bt .ft-btn-download img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(94%) sepia(15%) saturate(281%)
    hue-rotate(194deg) brightness(86%) contrast(92%);
}

.ft-links .ft-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}

.ft-links .ft-social-links a {
  background-color: var(--bg-transparent);
  border-radius: 50%;
  height: clamp(30px, 3vw, 50px);
  width: clamp(30px, 3vw, 50px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* margin-right: 20px; */
  padding: 5px;
  transition: all 0.2s ease-in-out;
}

.ft-links .ft-social-links a:hover i {
  color: var(--heading-one-color);
}

.ft-links .ft-social-links i {
  color: var(--text-color);
  font-size: clamp(16px, 1.5vw, 32px);
  line-height: 32px;
  transition: all 0.2s ease-in-out;
}

/* Footer Section CSS End Here */

/**************************** Main Section CSS Start Here **************/
.main-rad-banner-sec {
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding: 150px 0px 100px;
  text-align: center;
  z-index: 1;
  position: relative;
}
.main-rad-banner-sec .hero-gradient-holder {
  z-index: -1;
  width: 100%;
  max-width: 100vw;
  position: absolute;
  inset: 0%;
}
.main-rad-banner-sec .hero-gradient-box-1 {
  opacity: .1;
  filter: blur(100px);
  border-radius: 16.94em;
  width: 100%;
  height: 100%;
  max-height: 30.34em;
  background: conic-gradient(from 90deg at 50.36% 50.36%, #F3FF69 0deg, #FF9473 86.24999821186066deg, #FFADF7 183.75000715255737deg, #84BCFF 268.1250071525574deg, #65FF3F 360deg);
}
.main-rad-banner-sec .hero-gradient-box-2 {
  opacity: .1;
  filter: blur(100px);
  border-radius: 16.94em;
  width: 100%;
  max-width: 90%;
  height: 100%;
  max-height: 40.5906em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  background: conic-gradient(from 90deg at 50.36% 50.36%, #F3FF69 0deg, #FF9473 86.24999821186066deg, #FFADF7 183.75000715255737deg, #84BCFF 268.1250071525574deg, #65FF3F 360deg);
}
/* .main-rad-banner-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  bottom: 0;
  width: 100%;
  max-width: 50%;
  height: auto;
  background: radial-gradient(
    circle,
    rgba(246, 238, 250, 1) 40%,
    rgba(255, 255, 255, 0) 65%
  );
  z-index: -1;
}

.main-rad-banner-sec::after {
  content: "";
  position: absolute;
  top: -10%;
  right: 0;
  bottom: 0;
  width: 100%;
  width: 100%;
  max-width: 50%;
  height: auto;
  background: radial-gradient(
    circle,
    rgba(229, 249, 229, 1) 30%,
    rgba(255, 255, 255, 0) 65%
  );
  z-index: -1;
} */

.main-rad-banner-sec .rad-main-banner-cotent {
}

.rad-main-banner-cotent .logo-thumb {
  width: auto;
  /*height: 144px;*/
  /*object-fit: contain;*/
  margin-bottom:10px;
  filter: var(--filter-effect);
}

.rad-main-banner-cotent h1 {
  color: var(--heading-one-color);
  font-size: clamp(20px,2vw,36px);
  font-family: var(--font-nine);
  font-weight: 700;
  margin-bottom: 20px;
}

.rad-main-banner-cotent p {
  color: var(--text-color);
  font-family: var(--font-nine);
  font-size: clamp(18px, 1vw, 25px);
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 30px;
}

.website-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 20px;
  gap: 10px;
  margin-top: 50px;
}

.rad-main-banner-cotent .website-buttons:before {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  color: var(--color-one);
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  position: absolute;
  top: -30px;
}

.website-buttons img {
  width: auto;
  height: clamp(40px,5vw,70px);
  object-fit: contain;
  object-position: center;
}

.rad-main-banner-cotent .website-buttons a.btn {
  height: 55px;
  box-shadow: inset 0 -1px #f7fbfccc, 0 25px 30px -20px #1fd7ff80;
  margin-bottom: 20px;
  font-family: var(--font-three);
  font-size: clamp(14px, 1.2vw, 18px);
  padding: 5px 30px;
}

.rad-main-banner-cotent .ban-log-awrd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.rad-main-banner-cotent .ban-log-awrd .award-thumb {
  object-fit: contain;
  width: 6.25em;
  height: 4.86111em;
  filter: var(--filter-effect);
}

.rad-main-banner-cotent .reviews-star {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rad-main-banner-cotent .reviews-star img {
  width: 40px;
  height: 40px;
}

.rad-main-banner-cotent .reviews-txt {
}

.rad-main-banner-cotent .reviews-txt h5 {
  color: var(--heading-one-color);
  font-size: clamp(25px, 1vw, 30px);
  font-family: var(--font-nine);
  font-weight: 500;
  line-height: 32px;
}

/**************************** Main Section CSS End Here **************/

/*************************** About Slider CSS Start Here ************/

.sec-about {
  padding: 50px 0px;
}

.sec-about .marquees-slider {
}

.sec-about .marquees-slider .marquee-box {
  display: flex;
  justify-content: center;
}

.sec-about .marquees-slider img {
  max-width: 120px;
  opacity: 0.3 !important;
  height: 48px;
  object-fit: contain;
}

/*************************** About Slider CSS End Here ***************************/

/*************************** sec-review CSS start ***************************/
.sec-review {
  position: relative;
}
.sec-review .head-area {
  position: relative;
  text-align: center;
}
.sec-review .head-area::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  background: url(../images/heart-bg.webp) center / contain no-repeat;
  width: 510px;
  height: 510px;
  max-width: 100%;
  z-index: -1;
  margin: 0 auto;
}
.sec-review .head-area h4 {
  font-family: var(--font-four);
  font-size: clamp(20px, 2vw, 36px);
  color: var(--heading-one-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.sec-review .head-area p {
  color: var(--text-color);
  font-family: var(--font-nine);
}
.sec-review .test-slider {
  height: 100%;
}
.sec-review .test-slider .owl-stage-outer {
  height: 100%;
}
.sec-review .test-slider .owl-stage-outer .owl-stage {
  height: 100%;
  padding: 40px 0 0 0;
}
.sec-review .test-slider .owl-item {
  height: 100%;
}
.sec-review .test-slider .owl-item .item {
  height: 100%;
}
.sec-review .test-slider .test-card {
  border: none;
  border-radius: 0.833em;
  padding: 1.388em;
  background: var(--bg-transparent);
  box-shadow: 0 0.27em 1.805em #2b2a6b0f;
  transition: all 0.2s;
  height: 100%;
  justify-content: space-between;
}
.sec-review .test-slider .test-card ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 15px 0;
}
.sec-review .test-slider .test-card ul li a i {
  color: var(--color-four);
  font-size: 16px;
  margin: 0 3px;
}
.sec-review .test-slider .test-card p {
  font-family: var(--font-nine);
  color: var(--heading-one-color);
  font-size: 14px;
  line-height: 20px;
}
.sec-review .test-slider .test-card .reviewer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 15px 0 0 0;
}
.sec-review .test-slider .test-card .reviewer .thumb {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.sec-review .test-slider .test-card .reviewer span {
  font-family: var(--font-four);
  font-size: 15px;
  color: var(--heading-one-color);
  text-transform: capitalize;
}
.sec-review .test-slider .owl-nav .owl-prev,
.sec-review .test-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  left: -4%;
  border-radius: 50%;
  background: #fdfefe;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  cursor: pointer;
  height: 40px;
  width: 40px;
}
.sec-review .test-slider .owl-nav .owl-next {
  left: auto;
  right: -4%;
}
.sec-review .test-slider .owl-nav .owl-next:hover,
.sec-review .test-slider .owl-nav .owl-prev:hover {
  color: var(--text-color);
}
/*************************** sec-review CSS End ***************************/

/*************************** sec-sleep CSS start ***************************/
.sec-sleep {
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background: url(../images/stars.png) 50% / cover no-repeat;
}
.sec-sleep .head-area {
  text-align: center;
  margin-bottom: 70px;
}
.sec-sleep .head-area h4 {
  font-family: var(--font-four);
  font-size: clamp(20px, 2vw, 36px);
  color: var(--heading-one-color);
  margin-bottom: 20px;
}
.sec-sleep .head-area p {
  color: var(--text-color-three);
  font-family: var(--font-nine);
  font-size: 19px;
}
.sec-sleep .sleep-slider {
  margin: 0 0 20px 0;
}
.sec-sleep .sleep-slider .sleep-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 9px;
}
.sec-sleep .sleep-slider .sleep-card .thumb {
  height: 190px;
  object-fit: cover;
  object-position: center;
}
.sec-sleep .sleep-slider .sleep-card .desc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: var(--color-three);
  padding: 20px 15px 10px;
}
.sec-sleep .sleep-slider .sleep-card .desc .head {
  text-align: center;
}
.sec-sleep .sleep-slider .sleep-card .desc h6 {
  font-size: 12px;
  font-family: var(--font-nine);
  margin-bottom: 10px;
}
.sec-sleep .sleep-slider .sleep-card .desc h5 {
  font-size: 19px;
  font-family: var(--font-four);
}
.sec-sleep .sleep-slider .sleep-card .reviewer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 15px 0 0 0;
  border-top: 1px solid #f0f4f633;
  padding: 8px 0 0 0;
}
.sec-sleep .sleep-slider .sleep-card .reviewer .sm-thumb {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.sec-sleep .sleep-slider .sleep-card .reviewer .detail {
  text-align: left;
  color: var(--color-three);
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.sec-sleep .sleep-slider .sleep-card .reviewer .detail span {
  font-family: var(--font-four);
  font-size: 15px;
  text-transform: capitalize;
  display: block;
  font-size: 12px;
}
.sec-sleep .sleep-slider .sleep-card .reviewer .detail small {
  font-size: 9px;
}
.sec-sleep .website-buttons {
  margin: 20px auto;
}

/*************************** sec-sleep CSS End ***************************/

/*************************** sec-categ CSS Start ***************************/

.sec-categ {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: url(../images/stars.png) 50% / cover no-repeat;
}
.sec-categ .head-area {
  text-align: center;
  margin-bottom: 70px;
}
.sec-categ .head-area h4 {
  font-family: var(--font-four);
  font-size: clamp(20px, 2vw, 36px);
  color: var(--heading-one-color);
  margin-bottom: 20px;
}
.sec-categ .head-area p {
  color: var(--text-color-three);
  font-size: clamp(18px, 1.2vw, 23px);
  line-height: normal;
}
.sec-categ .tab-main .nav-pills {
  justify-content: center;
  margin: 0 0 50px 0;
}
.sec-categ .tab-main .nav-pills .nav-item:not(:last-child) .nav-link {
  margin-right: 10px;
}
.sec-categ .tab-main .nav-pills .nav-item .nav-link {
  background: var(--bg-white);
  font-size: clamp(14px,1.5vw,21px);
  text-transform: capitalize;
  color: var(--text-color-three);
  padding: 15px;
  border-radius: 10px;
  border: none;
  transition: all 0.2s ease-in-out;
  margin-bottom: 10px;
}
.sec-categ .tab-main .nav-pills .nav-item .nav-link.active {
  background: var(--bg-grey);
  color: var(--white-clr);
}
.sec-categ .tab-main .nav-pills .nav-item .nav-link.active .icon {
  filter: brightness(0) invert(1);
  transition: all 0.2s ease-in-out;
}

.sec-categ .tab-main h4 {
  font-size: clamp(18px, 1.2vw, 23px);
  color: var(--heading-one-color);
  text-align: center;
  font-family: var(--font-four);
}

.sec-categ .categ-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 9px;
  margin: 30px 0 0 0;
}
.sec-categ .categ-card .thumb {
  height: 216px;
  object-fit: cover;
  object-position: center;
}
.sec-categ .categ-card .desc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: var(--color-three);
  padding: 20px 15px 10px;
}
.sec-categ .categ-card .desc .head {
  text-align: center;
}
.sec-categ .categ-card .desc h6 {
  font-size: 12px;
  font-family: var(--font-nine);
  margin-bottom: 10px;
}
.sec-categ .categ-card .desc h5 {
  font-size: 19px;
  font-family: var(--font-four);
  margin-bottom: 5px;
}
.sec-categ .categ-card .reviewer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 15px 0 0 0;
}
.sec-categ .categ-card .reviewer .continue-btn {
  background: var(--bg-transparent-2);
  color: var(--heading-one-color);
  font-family: var(--font-four);
  text-shadow: none;
  width: 100%;
}
.sec-categ .categ-card .reviewer .sm-thumb {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.sec-categ .categ-card .reviewer .detail {
  text-align: left;
  color: var(--color-three);
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.sec-categ .categ-card .reviewer .detail span {
  font-family: var(--font-four);
  font-size: 15px;
  text-transform: capitalize;
  display: block;
  font-size: 13px;
}
.sec-categ .categ-card .reviewer .detail small {
  font-size: 11px;
  color: #ffffffb3;
  letter-spacing: 0.1px;
}

/*************************** sec-categ CSS End ***************************/

/*************************** Sec Coaches CSS Start Here ***************************/
section.sec-coaches {
  padding: 50px 0px;
  background: url(../images/map.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 1;
}

section.sec-coaches .main-img img{
    /*min-width: 100%;*/
    /*max-width: 100%;*/
    /*min-height: 700px;*/
    /*max-height: 700px;*/
    /*object-fit: contain;*/
    width: 50%;
    display: flex;
    margin: 0 auto;
}

section.sec-coaches:before {
  content: "";
  background: url(../images/map.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -60px;
  bottom: 0;
  z-index: -1;
}

.sec-coaches .head-area {
  text-align: center;
  margin-bottom: 60px;
}

.sec-coaches .head-area h4 {
  font-family: var(--font-four);
  font-size: clamp(20px, 2vw, 36px);
  color: var(--heading-one-color);
  margin-bottom: 20px;
}

.sec-coaches .head-area p {
  color: var(--text-color);
  font-family: var(--font-nine);
  font-size: clamp(16px, 1vw, 17px);
  font-weight: 400;
  line-height: clamp(23px, 1vw, 25px);
}

.sec-coaches .sleep-slider {
  margin: 0px 0 20px 0;
}
.sec-coaches .sleep-slider .sleep-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 9px;
}
.sec-coaches .sleep-slider .sleep-card .thumb {
}
.sec-coaches .sleep-slider .sleep-card .desc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: var(--color-three);
  padding: 20px 28px 10px;
  background-image: linear-gradient(#00000005 50%, #000000);
}
.sec-coaches .sleep-slider .sleep-card .desc .head {
  text-align: center;
}
.sec-coaches .sleep-slider .sleep-card .desc h6 {
  font-size: 14px;
  font-family: var(--font-nine);
}
.sec-sleep .sleep-slider .sleep-card .desc h5 {
  font-size: 19px;
  font-family: var(--font-four);
}

.sleep-card .desc .head .fl-coch {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.sleep-card .desc .head .fl-coch img {
  width: auto;
}

.sec-coaches .sleep-slider .sleep-card .desc .head h5 {
  font-size: 20px;
  font-family: var(--font-four);
}

/*************************** Sec Coaches CSS End Here ***************************/

/* Sec Press CSS Start Here */
section.sec-press {
  padding: 50px 0px 100px;
}

.sec-press .head-area {
}

.sec-press .head-area h4 {
  font-family: var(--font-four);
  font-size: clamp(20px, 2vw, 36px);
  color: var(--heading-one-color);
  text-transform: capitalize;
  margin-bottom: 20px;
  text-align: center;
}

.sec-press .press-slider {
  height: 100%;
}
.sec-press .press-slider .owl-stage-outer {
  height: 100%;
}
.sec-press .press-slider .owl-stage-outer .owl-stage {
  height: 100%;
  padding: 40px 0 0 0;
}
.sec-press .press-slider .owl-item {
  height: 100%;
}
.sec-press .press-slider .owl-item .item {
  height: 100%;
}
.sec-press .press-slider .test-card {
  border: none;
  border-radius: 0.833em;
  padding: 1.388em;
  background: var(--bg-transparent-3);
  box-shadow: 0 0.27em 1.805em #2b2a6b0f;
  transition: all 0.2s;
  height: 100%;
  justify-content: space-between;
}
.sec-press .press-slider .test-card ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 15px 0;
}
.sec-press .press-slider .test-card ul li a i {
  color: var(--color-four);
  font-size: 16px;
  margin: 0 3px;
}
.sec-press .press-slider .test-card p {
  font-family: var(--font-nine);
  color: var(--heading-one-color);
  font-size: 21px;
  line-height: 28px;
}
.sec-press .press-slider .test-card .reviewer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 15px 0 0 0;
}
.sec-press .press-slider .test-card .reviewer .thumb {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100%;
  max-width: 150px;
  max-height: 40px;
  margin-top: 20px;
  filter: var(--filter-effect);
}
.sec-press .press-slider .test-card .reviewer span {
  font-family: var(--font-four);
  font-size: 15px;
  color: var(--heading-one-color);
  text-transform: capitalize;
}
.sec-press .press-slider .owl-nav .owl-prev,
.sec-press .press-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  left: -4%;
  border-radius: 50%;
  background: #fdfefe;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  cursor: pointer;
  height: 40px;
  width: 40px;
}
.sec-press .press-slider .owl-nav .owl-prev i,
.sec-press .press-slider .owl-nav .owl-next i {
  color: #ccccd5;
}
.sec-press .press-slider .owl-nav .owl-next {
  left: auto;
  right: -4%;
}

/* Sec Press CSS End Here */

/* Sec How It is Work CSS Start Here */
section.how-its-work-sec {
  padding: 50px 0px 50px;
}

.how-its-work-sec .head-area {
  text-align: center;
  margin-bottom: 50px;
}

.how-its-work-sec .head-area h4 {
  font-family: var(--font-four);
  font-size: clamp(20px, 2vw, 36px);
  color: var(--heading-one-color);
  margin-bottom: 20px;
}

.how-its-work-sec .how-is-it-work-content-dv {
}

.how-is-it-work-content-dv h3 {
  color: var(--heading-one-color);
  font-family: var(--font-nine);
  font-size: 32px;
  line-height: 39px;
  font-weight: 600;
  margin-bottom: 20px;
}

.how-is-it-work-content-dv p {
  color: var(--text-color);
  font-size: 23px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--font-nine);
}

.how-its-work-sec .how-is-it-works-image-dv {
  display: flex;
  justify-content: center;
  position: relative;
}

.how-its-work-sec .how-is-it-works-image-dv .mble-img {
  /*height: 692px;*/
  width:85%;
}

.how-its-work-sec .how-is-it-works-image-dv .how-its-abs-crd {
}

.how-its-work-sec .how-is-it-works-image-dv .how-its-abs-crd .sle-crd-how-its {
  position: absolute;
  top: 180px;
  left: 20px;
  z-index: -1;
}

.how-its-work-sec
  .how-is-it-works-image-dv
  .how-its-abs-crd
  .happiness-crd-how-its {
  position: absolute;
  z-index: -1;
  top: 305px;
  left: 482px;
}

.how-its-abs-crd .hows-its-abs-txt-crd {
  background: var(--white-clr);
  border-radius: 6px;
  padding: 15px 25px;
  display: inline-block;
  box-shadow: 0 4px 20px -5px #7d859966;
}

.how-its-abs-crd .hows-its-abs-txt-crd p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: var(--text-color);
}

.how-is-it-work-content-dv .website-buttons {
  margin-top: 20px;
  justify-content: start;
}

.how-its-abs-crd .hows-its-abs-txt-crd.age-abs {
  position: absolute;
  top: 372px;
  left: 155px;
}

.how-its-abs-crd .hows-its-abs-txt-crd.gen-abs {
  position: absolute;
  top: 448px;
  left: 69px;
}

.how-its-abs-crd .hows-its-abs-txt-crd.pst-abs {
  position: absolute;
  top: 460px;
  right: 0px;
}

.how-its-work-sec .how-is-it-works-image-dv .how-its-abs-crd .revs-crd-how-its {
  position: absolute;
  top: 57px;
  left: -168px;
  z-index: -1;
  width: 50%;
}

.how-is-it-works-image-dv .how-its-abs-crd .yog-nid-crd-how-its {
  position: absolute;
  top: 205px;
  left: -150px;
  width: 100%;
  max-width: 23em;
}

.how-is-it-works-image-dv .how-its-abs-crd .holis-crd-how-its {
  z-index: -1;
  position: absolute;
  top: 248px;
  left: 375px;
}

.how-its-work-sec
  .how-is-it-works-image-dv
  .how-its-abs-crd
  .mediation-crd-how-its {
  position: absolute;
  z-index: 1;
  width: auto;
  top: 83px;
  left: 420px;
}
.how-its-work-sec
  .how-is-it-works-image-dv
  .how-its-abs-crd
  .hypnosis-crd-how-its {
  top: 280px;
  position: absolute;
  z-index: 1;
  left: 85px;
}

.how-its-work-sec
  .how-is-it-works-image-dv
  .how-its-abs-crd
  .therapy-crd-how-its {
  position: absolute;
  z-index: -1;
  width: auto;
  top: 355px;
  left: 485px;
}
.how-its-work-sec
  .how-is-it-works-image-dv
  .how-its-abs-crd
  .sle-exp-crd-how-its {
  position: absolute;
  z-index: 1;
  width: auto;
  top: 540px;
  left: 95px;
  bottom: 0;
}

/* Sec How It is Work CSS End Here */

/*********************** Home Page CSS End Here **************************/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer.main-footer .ft-btm .line {
    padding: 20px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  footer.main-footer .ft-btm .line {
    padding: 20px 0px;
  }
  .ft-links .ft-social-links {
    gap: 5px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 575px) {
  /* Header Responsive CSS Start Here */
  header .header-btm .navbar {
    padding: 10px 0;
  }

  header .header-btm .side-ul {
    text-align: center;
  }
  header .header-btm .side-ul .sd-li:not(:last-child) {
    margin-right: 0;
  }
  header .header-btm .side-ul .sd-li a.login {
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 3px;
    display: inline-flex;
  }

  header .header-btm .navbar .navbar-brand .logo {
    margin: 5px auto;
  }
  header .header-btm .navbar .theme-btn {
    display: none;
  }

  header .header-btm .side-ul .sd-li .down-btn {
    margin: 0 auto;
  }

  /* Header Responsive CSS End Here */

  /* Home Page Responsive CSS Start Here */
  .main-rad-banner-sec {
    padding-top: 190px;
  }

  .sec-categ .tab-main .nav-pills {
    /* display: grid;
    grid-template-columns: 100%; */
  }

  .sec-categ .tab-main .nav-pills .nav-item .nav-link {
    /* width: 100%; */
  }

  .sec-categ .categ-card .reviewer {
    justify-content: center;
  }

  .how-its-work-sec .how-is-it-works-image-dv .mble-img {
    height: auto;
  }

  .how-its-work-sec .how-is-it-work-content-dv {
    text-align: center;
    margin-bottom: 30px;
  }

  .how-is-it-work-content-dv h3 {
    font-size: 22px;
    line-height: 29px;
  }

  .how-is-it-work-content-dv .website-buttons {
    justify-content: center;
  }

  .how-is-it-work-content-dv p {
    font-size: 19px;
    line-height: 26px;
  }

  .sec-sleep .head-area p {
    font-size: 17px;
    line-height: 24px;
  }

  /* Home Page Responsive CSS End Here */

  /* Footer Responisve CSS Start Here */

  .foot-top-sec .footer-content-dv {
    width: 100%;
  }

  .foot-top-sec {
    margin-top: 0;
  }

  footer.main-footer {
    padding: 0;
  }

  footer.main-footer .foot-cont {
    /* padding-top: 0; */
  }

  footer.main-footer .ft-links {
    margin-top: 20px;
  }

  .ft-links .ft-get-st .ft-down-bt {
    margin-top: 20px;
  }

  .ft-get-st .ft-down-bt .ft-btn-download {
    margin-bottom: 20px;
  }

  footer.main-footer .ft-btm .line {
    margin-top: 30px;
    padding: 0;
  }

  .ft-btm .ft-copy {
    text-align: center;
    margin-bottom: 15px;
  }

  .ft-btm .ft-copy-text {
    justify-content: center;
    text-align: center;
  }

  /* Footer Responisve CSS Start Here */
}
