@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --primary-font: Inter;
    --primary-black-color:#000000;
    --primary-white-color: #FFF;
 /* Benefit: If we want re-brand, change color or font of whole webstie, If we want to change the whole black color to another color 
 -> just change one spot "#000000" to another color, it will adapt to all => So dont need to go through everyline to adjust */
}

/* * means "everything, apply to all elements in the document */
* {
    margin: 0;
    padding: 0;
    /* overflow-x: hidden; */
}

.visible {
    transform: translateX(0);
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hidden {
    transform: translateX(-100%); /*along the X-axis (-100%) => element will be moved to the left (200% - to the right) by a distance equal to 100% of its own width, creating a leftward translation effect.*/
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-nav-wrapper {
    background-color: #000000;
    display: flex;
    position: absolute;

    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; 
    /* Elements with a higher z-index value will appear on top of elements with a lower z-index value.*/
    /* 9999 - very high value -> ensure that the element is placed on top of other elements on the page*/
    color: var(--primary-white-color);

    justify-content: center;
}

.frame-mobile-nav-wrapper {
    /* background-color: aqua; */
    width: 90%;
    height: auto;
    margin-top: 30px;

    font-size: 30px;
}

.frame-mobile-nav-wrapper i:active {
    scale: 80%;
}

.mobile-menu {
    /* background-color: burlywood; */
    height: 600px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 30px;
}

.mobile-menu a{
    color: var(--primary-white-color);
    font-family: var(--primary-font);
    color: #ff7b00;
    font-weight: 700;
}

.mobile-menu a:hover{
    color: #4621B2;
}

a {
    text-decoration: none;
}

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

body {
    width: 100%;
    height: auto;

    position: relative;
    overflow-x: hidden;
}

.header {
    background-image: url("../image/hero-image.jpg");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */

    width: 100%;
    height: auto;
    
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.top-menu {
    /* background-color: orange; */
    width: 90%;
    height: 43dvw;

    padding-top: 60px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
}

.top-menu-box {
    /* background-color: rgb(73, 226, 43); */
    width: 100%;
    height: 50px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hamburger-menu {
    /* background-color: blueviolet; */
    color: white;

    display: flex;
    text-align: center;
    justify-content: center;
}

.hamburger-menu i {
    font-size: 35px;
    color: white;

    cursor: pointer;
}

.hamburger-menu i:active {
    scale: 80%;
}
/* 
.top-menu-box a { */
    /* background-color:blanchedalmond; */

    /* width: auto;
    height: 50px;

} */

.logo{
    /* background-color: #FFD233; */
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding-left: 10px;
}

#logo {
    /* background-color: bisque; */
    width: auto;
    height: 35px;

    cursor: pointer;
    float: left;
}

.CTA-box {
    /* background-color: rgb(248, 79, 79); */
    width: auto; 
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

}

/* .CTA-button {
    width: 110px;
    height: 30px;

    background: var(--primary-black-color); 
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: 0.5s ease;
}

.CTA-button p {
    color: white;
    font-size: 13px;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 10px;

    text-align: center;
} */


.btn-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    color: #ffffff;
    color: var(--primary-white-color);
    font-size: 13px;
    font-family: var(--primary-font);
    font-weight: 700;
    transition: all 0.5s ease;

  }
  .btn-bottom .shape {
    position: relative;
    width: 110px;
    height: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-border-radius: 10px;
         border-radius: 10px;
    /* border: 1px solid #07051c; */
    background-color: #000000;
    -webkit-box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
       -moz-box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
            box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .btn-bottom .shape em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 20%;
         border-radius: 80%;
    background-color: #ffffff;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
  }
  .btn-bottom .shape p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 49%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    color: #ffffff;
    z-index: 2;
    -webkit-transition: color 0.3s 0s ease-in-out;
    -o-transition: color 0.3s 0s ease-in-out;
    -moz-transition: color 0.3s 0s ease-in-out;
    transition: color 0.3s 0s ease-in-out;
  }
  .no-touch .btn-bottom .shape:hover {
    background-color: transparent;
    -webkit-transition: background-color 0.3s 0.2s, -webkit-box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, -webkit-box-shadow 0.3s 0s;
    -o-transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s;
    -moz-transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s, -moz-box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s, -webkit-box-shadow 0.3s 0s, -moz-box-shadow 0.3s 0s;
  }
  .no-touch .btn-bottom .shape:hover em {
    width: 225%;
    height: 15rem;
  }
  .no-touch .btn-bottom .shape:hover p {
    color: #000000;
  }
  .no-touch .btn-bottom:hover .shape {
    -webkit-box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
       -moz-box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
            box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
  }


.btn-bottom:hover{
    scale: 110%;
}

/* ----------------------------------------------- */




.main-title {
    width: 100%;
    height: 900px;

    background: linear-gradient(180deg, #1F104F 65%, #4621B2 100%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.frame-main-title{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    gap: 30px;
}

.title {
    /* background-color: yellow; */

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    /* padding-top: 50px;
    padding-bottom: 30px; */
}

.title h1 {
    width: auto;
    height: auto;
    color: white;

    font-size: 35px; 
    font-family: var(--primary-font); 
    font-weight: 700; 
}

.price-box {
    /* background-color: chartreuse; */
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-direction: column;
}

.annual-price-box {
    width: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    position: relative;

    transition: 0.3s ease;
}

.annual-price-box:hover, .monthly-price-box:hover {
    scale: 105%;
    transition: 0.3s ease;
}

.text-box1:hover, .text-box2:hover {
    color: white;
    background-color: #F99417;
    transition: 0.5s ease; 
}

.text-box1 {
    width: 310px;
    height: 60px;
    background: white;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 15px;
    padding-left: 25px;

    color: #151515;
    font-size: 11px;
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 15px;

    transition: 0.5s ease;
}

.text-box1 h1 {
    width: 168px;
    height: 24px;
    /* color: #151515; */

    font-size: 20px;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 25.50px;
}

.text-box1 span{
    /* color: #151515; */
    font-size: 14px;
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 20px;
}

.best-value {
    /* background-color: darkcyan; */
    width: 100%;
    height: 18px;

    margin-left: 50px;

    position: absolute;
    top: -10px;
}

.best-value p {
    width: 60px;
    height: 18px;
    background: #461B93;
    border-radius: 5px;
    
    /* overflow: hidden; */

    text-align: center;
    color: white;
    font-size: 10px;
    font-family: var(--primary-font);
    line-height: 18px;
}

.ticked-box1 {
    /* background-color: darkseagreen; */
    position: absolute;
    right: 30px;
    top: 32px;
}

input{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
/* -> hide original format: "type radio" format - circle form */

    width: 25px; 
    height: 25px; 
    border: 2px solid #310bdb; 
    border-radius: 4px; 
    background-color: #fff; 
    cursor: pointer;
    outline: none; 
}

input[type="radio"]:checked {
    background-color: #4602b4; 
}

.monthly-price-box {
    width: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    position: relative;

    transition: 0.3s ease;
}

.text-box2 {
    width: 310px;
    height: 60px;
    background: white;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 15px;
    padding-left: 20px;

    color: #151515;
    font-size: 11px;
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 15px;

    transition: 0.5s ease;
}

.text-box2 h1 {
    width: 168px;
    height: 24px;
    /* color: #151515; */
    font-size: 20px;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 25.50px;
}

.text-box2 span{
    /* color: #151515; */
    font-size: 14px;
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 20px;
}

.ticked-box2 {
    /* background-color: darkseagreen; */
    position: absolute;
    right: 30px;
    top: 32px;
}



.free-trial-notes {
    /* background-color: rgb(10, 118, 168); */
    width: 100%;
    /* height: 100px; */

    display: flex;
    justify-content: center;
    align-items: center;
    
    /* margin-top: 15px; */
}

.free-trial-notes p {
    width: auto;
    color: var(--primary-white-color);

    font-size: 10px;
    font-family: var(--primary-font);
    font-weight: 300;
    line-height: 15px;

    letter-spacing: 1.1px;
}

.CTA-box-2 {
    /* background-color: bisque; */
    width: 100%;

    /* margin-top: 25px; */

    display: flex;
    justify-content: center;
    align-items: center;
}

/* .CTA-button-2 {
    width: auto;

    cursor: pointer;
    
}

.CTA-button-2 p {
    width: 130px;

    background: black; 
    border-radius: 5px;

    color: var(--primary-white-color);
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 700;

    padding: 10px;

    text-align: center;

    transition: 0.5s ease;
}

.CTA-button-2 p:hover{
    background: rgb(255, 255, 255); 
    color: #000000;
    scale: 110%;
    transition: 0.5s ease;
} */



.btn-bottom-2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    color: #ffffff;
    color: var(--primary-white-color);
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 700;

    transition: all 0.5s ease;

  }
  .btn-bottom-2 .shape {
    position: relative;
    width: 150px;
    height: 41px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-border-radius: 5px;
         border-radius: 5px;
    /* border: 1px solid #07051c; */
    background-color: #000000;
    -webkit-box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
       -moz-box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
            box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .btn-bottom-2 .shape em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 20%;
         border-radius: 80%;
    background-color: #ffffff;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
  }
  .btn-bottom-2 .shape p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 49%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    color: #ffffff;
    z-index: 2;
    -webkit-transition: color 0.3s 0s ease-in-out;
    -o-transition: color 0.3s 0s ease-in-out;
    -moz-transition: color 0.3s 0s ease-in-out;
    transition: color 0.3s 0s ease-in-out;
  }
  .no-touch .btn-bottom-2 .shape:hover {
    background-color: transparent;
    -webkit-transition: background-color 0.3s 0.2s, -webkit-box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, -webkit-box-shadow 0.3s 0s;
    -o-transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s;
    -moz-transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s, -moz-box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s, -webkit-box-shadow 0.3s 0s, -moz-box-shadow 0.3s 0s;
  }
  .no-touch .btn-bottom-2 .shape:hover em {
    width: 225%;
    height: 15rem;
  }
  .no-touch .btn-bottom-2 .shape:hover p {
    color: #000000;
  }
  .no-touch .btn-bottom-2:hover .shape {
    -webkit-box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
       -moz-box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
            box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
  }

.btn-bottom-2:hover{
    scale: 110%;
}

/* ----------------------------------------------- */


.features-box {
    /* background-color: rgb(73, 73, 172); */

    width: 100%;
    height: 250px;

    /* padding-top: 30px; */
    padding-bottom: 30px;

    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.columns {
    /* background-color: red; */

    width: 100%;
    height: auto;

    gap: 20px;

    padding: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white; 
    font-size: 20px;
    font-family: var(--primary-font); 
    font-weight: 600; 
    line-height: 25px; 
}

.columns p {
    color: white; 

    font-size: 18px;
    font-family: var(--primary-font); 
    font-weight: 300; 
    line-height: 25px; 
}

.left-column {
    /* background-color: rgb(105, 192, 88); */

    width: 50%;
    height: 150px;

    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    display: inline-flex;    

    row-gap: 40px;
}

.downloads {
    width: 131px;
    height: 38px; 
    
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center; 
    display: inline-flex;
}

.stars {
    /* background-color: darkkhaki; */
    width: 150px;
    height: 38px; 
    
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center; 
    display: inline-flex;
}

.icon-star {
    width: 38px;

    margin-left: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.icon-star i {
    color: #FFD233;
    margin-inline: 5px;
    margin-bottom: 5px;
}

.right-column {
    /* background-color: rgb(88, 163, 192); */

    width: 50%;
    height: 150px;

    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    display: inline-flex; 

    row-gap: 40px;
}

.ratings {
    width: 150px;
    height: 38px; 
    
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center; 
    display: inline-flex;
}

.appstores {
    width: 170px;
    height: 38px; 
    
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center; 
    display: inline-flex;
}

.function-box {
    /* background-color: brown; */
    width: 100%;
    height: auto;

    padding-top: 50px;
    padding-bottom: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title3 {
    /* background-color: aliceblue; */

    width: 100%;
    height: 90px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.title3 h2 {
    text-align: center; 
    color: var(--primary-black-color); 

    font-size: 130%; 
    font-family: var(--primary-font); 
    font-weight: 700; 
    line-height: 18px;
}

.seperate-function-box {
    /* background-color: aqua; */

    width: 90%;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.chill-out {
    /* background-color: rgb(240, 160, 173); */

    width: 100%;
    height: auto;

    gap: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.img-wrapper {
    /* background-color: green; */
    width: 160px; 
    height: 160px; 
    
    /* box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 20px; */
    
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.img-wrapper img {
    width: 100%; 
    height: 100%; 
}

.image1 {
    background-image: url(../image/chillout.jpg);
    background-size: cover;
    background-position: center;
}

.text-chill-out {
    /* background-color: #ab95ec; */

    width: 65%;
    height: auto;

    gap: 10px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.text-chill-out h3 {
    align-self: stretch;
    color: var(--primary-black-color); 
 
    font-family: var(--primary-font); 
    font-weight: 700; 
    line-height: 18px;
}

.text-chill-out p {
    color: var(--primary-black-color); 
    
    font-size: 12px; 
    font-family: var(--primary-font); 
    font-weight: 400; 
    line-height: 18px
}

.snooze-better {
    /* background-color: rgb(0, 14, 136); */

    width: 100%;
    height: auto;

    gap: 10px;

    display: flex;
    align-items: center;
    flex-direction: row;    
}

.text-snooze-better {
    /* background-color: #ab95ec; */

    width: 65%;
    height: auto;

    gap: 10px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    text-align: right;
}

.text-snooze-better h3 {
    align-self: stretch;
    color: var(--primary-black-color); 

    font-family: var(--primary-font); 
    font-weight: 700; 
    line-height: 18px;
}

.text-snooze-better p {
    width: 100%;
    color: var(--primary-black-color); 
    
    font-size: 12px; 
    font-family: var(--primary-font); 
    font-weight: 400; 
    line-height: 18px
}

.image2{
    background-image: url(../image/snoozebetter.jpg);
    background-size: cover;
    background-position: center;
}

.mindful-living {
    /* background-color: rgb(240, 160, 173); */

    width: 100%;
    height: auto;

    gap: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.image3{
    background-image: url(../image/Mindfulliving.jpg);
    background-size: cover;
    background-position: center;
}


.text-mindful-living {
    /* background-color: #ab95ec; */

    width: 65%;
    height: auto;

    gap: 10px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.text-mindful-living h3 {
    align-self: stretch;
    color: var(--primary-black-color); 

    font-family: var(--primary-font); 
    font-weight: 700; 
    line-height: 18px;
}

.text-mindful-living p {
    color: var(--primary-black-color); 
    
    font-size: 12px; 
    font-family: var(--primary-font); 
    font-weight: 400; 
    line-height: 18px
}

.learn-more{
    /* background-color: #FFD233; */
    /* width: 100%; */
    cursor: pointer;
}

.learn-more p {
    /* background-color: aquamarine; */
    color: black; 
    font-size: 12px; 
    
    font-family: var(--primary-font); 
    font-weight: 500; 
    line-height: 12px;

    transition: all .3s ease;
    /* display: inline-block; */
    position: relative;
    
}

.learn-more p :hover{font-weight: 600;}
.learn-more p:after{
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -2px;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    background: currentColor;
}
.learn-more p:hover:after{
    width:100%;
    left:0;
    right:auto;
}
.learn-more p:hover{font-weight: 600 !important;}

.crack-line-snooze{
    width: 100%;

    display: flex;
    justify-content: flex-end;
}

#line-learn-more {
    width: 65px; 
    height: 0px; 
    border-bottom: 0.1px black solid;
}

.tools-box {
    /* background-color: yellow; */

    width: 100%;
    height: auto;

    padding-top: 50px;
    padding-bottom: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 20px;
}

.title4 {
    /* background-color: rgb(226, 103, 103); */

    width: 90%;
    height: auto;
    
    gap: 10px;

    padding-top: 30px;
    padding-bottom: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title4 h2 {
    text-align: center; 
    color: var(--primary-black-color); 

    font-size: 130%; 
    font-family: var(--primary-font); 
    font-weight: 700; 
    line-height: auto;
}

.title4 p {
    width: 100%;

    text-align: center; 
    color: var(--primary-black-color); 
    
    font-size: 12px; 
    font-family: var(--primary-font); 
    font-weight: 400; 
    line-height: 18px;
}

.tools-box-playlist {
    /* background-color: #e63b3b; */
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
}

.topic {
    /* background-color: #fff; */
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: -11px;
}

.frame-topic {
    /* background-color: #4ab2c0; */
    width: 360px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.name-topic {
    width: auto;
    height: 8px;

    text-align: center;
    color: var(--primary-white-color);
    font-size: 10px;
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 12px;
    
    padding: 10px;

    background: #461B93; 
    border-radius: 5px;

    display: flex;
    align-items: center;
    /* justify-content: flex-start; */
    cursor: pointer;
}

/* .name-topic-onclick {
    background-color: #F99417;
    height: auto;

    font-size: 20px;
    font-weight: 700;
} */

.playlist-frame {
    width: 90%;
    height: 550px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #EEEEEE;
    
    border-radius: 15px;
    /* padding: 40px; */
}

.playlist-content {
    /* background-color: darkmagenta; */
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 20px;

    position: relative;
}

.playlist-hightpx{
    display: none;
}

.playlist-text {
    /* background-color: blanchedalmond; */
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

.title-playlist{
    text-align: center;
    color: var(--primary-black-color);
    font-size: 14px;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 15px;
}

.playlist-text p {
    width: 90%;
    text-align: center;

    color: var(--primary-black-color);
    font-size: 12px;
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 18px;
}

.playlist-content img {
    width: 350px;
    height: 250px;

    border-radius: 10px;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
}

.play {
    /* background-color: aliceblue; */
    width: 350px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* align-items: center; */

    gap: 15px;

    position: relative;
}

.name-songs {
    /* background-color: rgb(177, 177, 130); */
    width: 300px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: var(--primary-font);
}

.text-name-song {
    /* background-color: darksalmon; */
    width: 100%;
}

.text-name-song p {
    color: black; 
    font-size: 12px;
    font-family: var(--primary-font);
    font-weight: 400;
}

.name-songs i {
    color: black; 
    cursor: pointer;
    
    transition: 0.5s ease;
}

.heart-active{
    scale: 150%;
    transform: rotate(360deg);

    transition: 1s ease;
}

.frame-music{
    width: 300px;
    /* background-color: #F99417; */
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.playpause-music{
    width: 30px;
    height: 30px;
    overflow: hidden;

    cursor: pointer;

    /* background-color: #4602b4; */
}
.playpause-music i{
    font-size: 30px;
}   

#music {
    display: none;
}

.seekBar{
    width: 100%;
    height: 5px;
    border: none;
    background-color: #c4c4c4;
}
.seekBar::-webkit-slider-thumb{
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background-color: #000000;

    border-radius: 50%;
}
/* #volumeControl{
    width: 50%;
    background-color: rgb(102, 102, 102);
    height: 5px;
    border: none;
} */

.volume{
    cursor: pointer;
}

.volumeControl {
    display: none;
    width:100px; 
    height: 3px; 
    background-color: #777777; 
    border-radius: 5px;
    outline: none; 
    border: none;

    position: absolute;
    bottom: -10px;
    right: -15px;
  }
  
  .volumeControl::-webkit-slider-thumb {
    -webkit-appearance: none; /* Ẩn giao diện mặc định của nút trượt */
    width: 10px; /* Chiều rộng của nút trượt */
    height: 10px; /* Độ cao của nút trượt */
    background-color: #000000; /* Màu nền của nút trượt */
    border-radius: 50%; /* Bo tròn nút trượt */
    cursor: pointer; /* Con trỏ chuột khi di chuyển qua nút */
  }

  .volume:active{
    scale: 80%;
  }

.logo-business {
    /* background-color: rgb(124, 180, 40); */

    width: 100%;
    height: auto;

    gap: 20px;

    padding-top: 30px;
    padding-bottom: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title5 h2 {
    text-align: center; 
    color: var(--primary-black-color); 

    font-size: 130%; 
    font-family: var(--primary-font); 
    font-weight: 700; 
    line-height: 18px;
}

.logo-business-box {
    /* background-color: #ab95ec; */
    
    width: 100%;
    height: 80px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; 

    overflow-x: auto;
    overflow-y: hidden;
}

.logo-img-wrapper {
    /* background-color: #FFD233; */
    width: 100%; 
    
    margin-left: 30px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
}

.logo-img-wrapper img {
    width: 100px;
}

#logo6 {
    margin-right: 35px;
}

.reset-next{
    opacity: 0;
    transform:  translateX(200%);
}

.reset-prev{
    opacity: 0;
    transform:  translateX(-100%);
}


.visible-next{

    transform:  translateX(0);
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hidden-prev{

    transform: translateX(200%); /* right */
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hidden-next{

    transform: translateX(-100%); /* left*/
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.an{
    scale: 80%;
    opacity: 0.5;
    transition: 0.5s ease;
}

.hien{
    scale: 100%;
    opacity: 1;
    transition: 0.5s ease;
}


#Slide {
     /* background-color: #FFD233; */
     width: 100%;
     height: 300px;
 
     display: flex;
     justify-content: center;
     align-items: center;
 
     flex-direction: row;
     gap: 0px;
 
     position: relative;
 
     overflow-x: hidden; 
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-slide {
    width: 400px;
    height: 280px;

    background: linear-gradient(180deg, #461B93 32%, #F99417 100%);
    border-radius: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    gap: 15px;

    position: absolute;
}


.blissify-stories {
    /* background-color: aquamarine; */
    width: auto;
    height: 450px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    gap: 30px;
    
    padding-bottom: 50px;

    position: relative;
}

.blissify-stories h2 {
    font-family: var(--primary-font);

}

.slide-icon {
    color: #F99417;

    width: 85%;
    height: 45px;
    font-size: 70px;
    line-height: 50px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.text-slide {
    width: 85%;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.text-slide p {
    color: var(--primary-white-color); 
    font-size: 12px; 
    font-family: var(--primary-font);
    font-weight: 400; 
    line-height: 18px; 
}

.author-slide {
    width: 85%;

    display: flex;
    flex-direction: row;

    gap: 15px;
}

.author-img{
    /* background-color: #EEEEEE; */
    width: 80px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    border-radius: 50%;

    overflow: hidden;
}

/* #element1{
    display: none;
}

#element2{
    display: none;
}
#element3{
    display: none;
} */


#prev, #next {
    cursor: pointer;
  }

.nav{
    font-size: 20px;
    font-weight: 700;

    /* background-color: #4621B2; */

    display: flex;
    justify-items: center;
    align-items: center;

    gap: 30px;
}


.author-name{
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    flex-direction: column;

    font-family: var(--primary-font);
    color: var(--primary-white-color);
    font-size: 12px;
    font-weight: 500;

    gap: 3px;
}

.author-name p {
    font-family: var(--primary-font); 
    font-size: 12px;
    font-weight: 200;
    line-height: 12px;
}

.blog-box {
    background-color:#EEEEEE;
    width: 100%;
    height: auto;

    /* padding: 20px;
    margin: 20px; */
    gap: 40px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.blog-box-hightpx {
    display: none;
}

.title7 {
    /* background-color: #4621B2; */
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center; 
    align-items: center; 
    line-height: 16px; 

    padding-top: 30px;
}

.title7 h2 {
    /* background-color: #F99417; */
    width: 80%; 
    text-align: center; 
    
    color: var(--primary-black-color); 
    font-size: 130%; 
    font-family: var(--primary-font); 
    font-weight: 700; 
    line-height: 30px;
}

.feature-blog-box {
    width: 100%; 
    height: auto; 

    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 

    gap: 25px; 
}

.blog {
    /* color: brown; */
    width: 85%;
    height: 200px;

    position: relative;

    border-radius: 20px;
    box-shadow: 7px 10px 8px 0px rgba(41, 41, 41, 0.25);
    overflow: hidden;

    transition: 0.3s ease;

    cursor: pointer;
}

#blog-1 {
    height: 220px;
}

#blog-2 {
    height: 220px;
}

#blog-3 {
    height: 400px;
}

.blog-title {
    background: #EEEEEE;

    position: absolute;
    bottom: 15px;
    left: 15px;
    
    /* padding-top: 5px; 
    padding-bottom: 5px; 
    padding-left: 10.50px;  */

    border-radius: 10px; 
    
    overflow: hidden; 
    justify-content: center; 
    align-items: center; 
    display: flex;
}

.blog-title p {    
    color: #323232; 
    font-size: 12px; 
    font-family: var(--primary-font); 
    font-weight: 500; 
    /* line-height: 12px; */

    text-align: center;
    padding: 10px;
}

.blog-image {
    width: 100%;
    height: 100%;
}

.blog-image img {
    border-radius: 10px; 
}

/* .CTA-blog {
    background: var(--primary-black-color); 
    width: 100px; 
    height: 25px; 

    color: white;
    
    padding-left: 24px; 
    padding-right: 24px; 
    padding-top: 12px; 
    padding-bottom: 12px; 

    margin-bottom: 40px;
     
    display: inline-flex;
    justify-content: center; 
    align-items: center; 

    border: 1px solid #000000;
    border-radius: 5px; 
    transition: 0.5s ease;

    cursor: pointer;
}

.CTA-blog p { 
    font-size: 14px; 
    font-family: var(--primary-font); 
    font-weight: 500; 
    line-height: 16.80px;
}

.CTA-blog:hover{
    color: rgb(0, 0, 0);
    background-color: transparent !important;
    transition: 0.5s ease;
} */



.CTA-blog {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    font-size: 15px; 
    font-family: var(--primary-font); 
    font-weight: 500; 
    line-height: 16.80px;

    margin-bottom: 40px;
    
    transition: all 0.5s ease;

  }
  .CTA-blog .shape {
    position: relative;
    width: 150px;
    height: 51px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-border-radius: 5px;
         border-radius: 5px;
    /* border: 1px solid #07051c; */
    background-color: #000000;
    -webkit-box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
       -moz-box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
            box-shadow: 0px 6px 38px -9px rgba(105, 29, 255, 0.34);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .CTA-blog .shape em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 20%;
         border-radius: 80%;
    background-color: #ffffff;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
  }
  .CTA-blog .shape p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 49%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    color: #ffffff;
    z-index: 2;
    -webkit-transition: color 0.3s 0s ease-in-out;
    -o-transition: color 0.3s 0s ease-in-out;
    -moz-transition: color 0.3s 0s ease-in-out;
    transition: color 0.3s 0s ease-in-out;
  }
  .no-touch .CTA-blog .shape:hover {
    background-color: transparent;
    -webkit-transition: background-color 0.3s 0.2s, -webkit-box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, -webkit-box-shadow 0.3s 0s;
    -o-transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s;
    -moz-transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s, -moz-box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s;
    transition: background-color 0.3s 0.2s, box-shadow 0.3s 0s, -webkit-box-shadow 0.3s 0s, -moz-box-shadow 0.3s 0s;
  }
  .no-touch .CTA-blog .shape:hover em {
    width: 225%;
    height: 15rem;
  }
  .no-touch .CTA-blog .shape:hover p {
    color: #000000;
  }
  .no-touch .CTA-blog:hover .shape {
    -webkit-box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
       -moz-box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
            box-shadow: 0px 10px 38px -9px rgba(105, 29, 255, 0.64);
  }

/* .btn-bottom-2:hover{
    scale: 110%;
} */


/* --------------------------------------------------- */




.QA-box {
    /* background-color: coral; */
    width: 100%;
    height: auto;

    margin-top: 50px;
    /* padding-top: 20px; */
    padding-bottom: 50px;

    gap: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.frame-QA-box {
    width: 100%;
    display: flex;

    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 20px;

    margin-top: 20px;
    margin-bottom: 20px;
}

.title8 h2 {
    color: var(--primary-black-color); 
    
    font-size: 150%;
    font-family: var(--primary-font); 
    font-weight: 700; 
    text-align: center;
}

.column-QA-box {
    display: flex;
    align-items: center;
    flex-direction: column;

    width: 100%;
    gap: 25px;
}

.general-box, .meditation-box, .stress-box, .sleep-box {
    /* background-color: rgb(88, 146, 197); */
    width: 90%;
    height: auto;

    /* position: relative; */

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    font-family: var(--primary-font); 
    
    gap: 10px;
}

.general-box h3 {
    color: var(--primary-black-color); 
    
    font-size: 18px; 
    font-family: var(--primary-font); 
    font-weight: 700;
}

.text-QA-box{
    /* background-color: rgb(113, 141, 10); */
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
}

.text-QA-box p{
    color: var(--primary-black-color); 
    
    font-size: 12px; 
    font-weight: 500; 
}

.QA-box i {
    /* background-color: #8ae77d; */
    width: 10%;
    height: auto;

    font-size: 20px;

    color: #000000;
    display: flex;
    justify-content: center;
}

.crack-line{
    width: 100%;
    border-bottom: 1px black solid;
}

.meditation-box h3 {
    color: var(--primary-black-color); 
    
    font-size: 18px; 
    font-family: var(--primary-font); 
    font-weight: 700;
}
.stress-box h3 {
    color: var(--primary-black-color); 
    
    font-size: 18px; 
    font-family: var(--primary-font); 
    font-weight: 700;
}

.sleep-box h3 {
    color: var(--primary-black-color); 
    
    font-size: 18px; 
    font-family: var(--primary-font); 
    font-weight: 700;
}

.box {
    display: none;
}

.box p{
    line-height: 25px;
    font-weight: 300; 
}

.footer {
    background-color: #2B1961;
    width: 100%;
    height: auto;

    /* padding: 40px; */
    
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.main-footer {
    /* background-color: rgb(197, 159, 81); */
    width: 90%;
    gap: 30px;

    padding-top: 40px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.main-footer p{  
    color: white; 
    
    font-size: 13px; 
    font-family: var(--primary-font); 
    font-weight: 400;
    line-height: 20px;

    cursor: pointer;

    transition: all .3s ease;
    display: inline-block;
    position: relative;
}

.main-footer p:hover{font-size: 15px;}
.main-footer p:after{
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    background: currentColor;
}
.main-footer p:hover:after{
    width:100%;
    left:0;
    right:auto;
}
.main-footer p:hover{font-size: 15px !important;}



.main-footer h3{  
    color: white; 

    font-size: 18px;    
    font-family: var(--primary-font); 
    font-weight: 700; 
}

.about-us {
    width: 100%;
    /* background-color: aqua; */
    gap: 15px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.content {
    width: 100%;
    gap: 7px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.get-some-blissify {
    width: 100%;
    /* background-color: aqua; */
    gap: 15px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.support {
    width: 100%;
    /* background-color: aqua; */
    gap: 15px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.socialicon{
    /* background-color: burlywood; */
    width: 100%;
    height: 50px;

    font-size: 30px;

    display: flex;
    justify-content: center; 
    align-items: center; 

    gap: 20px; 

    color: var(--primary-white-color);
}


.copyright {
    /* background-color: chocolate; */
    width: 100%; 
    
    text-align: center; 
    
    color: white; 
    font-size: 12px; 
    font-family: var(--primary-font); 
    font-weight: 600; 
    line-height: 15px;
}

.copyright-hightpx{
    display: none;
}

#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #F78F1E; /* Set a background color */
    color: #461B93; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #scrollToTopBtn:hover {
    background-color: #ff7b00; /*background color on hover */
  }