@font-face {
    font-family: "Regular";
    src: url(../fonts/Euclid-Circular-A-Regular.ttf);
}

@font-face {
    font-family: "Medium";
    src: url('../fonts/Euclid-Circular-A-Medium.ttf');
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Regular";
}

:root {
    --color-primary: #ed194e;
    --color-secondary: #FB642D;
}

html {
    scroll-behavior: smooth;
}

.container {
    margin: 0 auto;
    max-width: min(1280px, calc(100vw - 40px));
    box-sizing: border-box;
}

body {
    background: #f9f6f1;
}

/* Header start */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: all 0.3s ease-in-out;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

header nav {
    position: relative;
    display: flex;
    align-items: center;
}

header nav .left-bar a {
    display: inline-block;
    width: 100px;
    height: 100px;
}

header nav .left-bar a img {
    width: 100%;
    height: 100%;
}

header nav .right-bar {
    width: 81%;
}

nav .right-bar .nav-list {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.custom-select {
    position: relative;
    cursor: pointer;
}

.custom-select .selected {
    background-color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

#arrow {
    transition: transform 0.3s ease;
}

.custom-select.open #arrow {
    transform: rotate(180deg);
}

.custom-select .selected p {
    margin-right: 10px;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    font-size: 16px;
}

.options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 43px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
    display: none;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    z-index: 100;
}

.options li {
    font-size: 16px;
    border-radius: 4px;
    padding: 10px;
    transition: all 0.4s ease-in-out;
}

.options li:hover {
    background: var(--color-primary);
}

.custom-select.open .options {
    display: block;
}

nav .right-bar .nav-list .nav-item a {
    color: black;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
}

nav .right-bar .nav-list .nav-item a:hover {
    color: var(--color-secondary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    margin: 20px;
}

.menu-toggle span {
    height: 4px;
    background: black;
    margin: 2px 0;
    border-radius: 4px;
    transition: 0.4s;
}

.menu-toggle span:nth-child(2) {
    width: 80%;
    transform: translate(5px, 0);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -10px);
}

#menu {
    position: absolute;
    top: 80px;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 0px;
    overflow: hidden;
    background-color: white;
    border-radius: 15px;
    border: 1px solid #e3d3cf;
    padding: 20px 15px;
    transition: all 0.3s ease;
    z-index: 9;
}

#menu.active {
    height: 190px;
    opacity: 1;
}

#menu ul li {
    margin: 8px 0;
}

#menu ul li a {
    color: black;
    text-decoration: none;
    padding: 8px 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

#menu a:hover {
    color: var(--color-secondary);
}

/* Header end */

.hero-section {
    position: relative;
    width: 100%;
    height: 910px;
    overflow: hidden;
    padding: 0 60px;
}

.hero-section .hero {
    position: absolute;
    right: 0;
    top: 0;
    width: 783px;
    height: 910px;
    background-image: url("../../assets/images/hero-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.hero-content .left-content {
    margin-top: 60px;
    width: 45%;
}

.hero-content .left-content .banner-text .hero-typing {
    font-size: 16px;
    color: var(--color-secondary);
}

.hero-content .left-content .banner-text h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content .left-content .banner-text b {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 60px;
}

.hero-content .left-content .banner-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

#typed-output {
    font-size: 16px;
    color: var(--color-secondary);
    height: 20px;
}

.app-btns ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-btns ul li a {
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border: none;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}

.app-btns ul li a:hover {
    background-color: var(--color-primary);
}

.app-btns ul li a img {
    width: 100%;
    height: 100%;
}

.deletion-text {
    text-align: start;
}

.deletion-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
    margin-top: 9.5rem;
}


/* About Section start */

.about-section {
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-content ol li {
    padding: 10px 0;
}

.about-content p {
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    color: black;
}

.about-title {
    text-align: center;
}

.about-title2 h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-title h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: black;
}

.feature-list li i {
    color: var(--color-secondary);
    margin-right: 10px;
    font-size: 18px;
}

.right-content {
    width: 30%;
}

.right-content img {
    width: 100%;
    height: 100%;
}

/* About Section end */

/*Acardion Section start */

.faq-section .container {
    padding: 100px 0;
}

.section-title {
    padding: 50px 0;
    text-align: center;
}

.section-title h2 {
    font-size: 50px;
    font-weight: bold;
}

.title-badge {
    margin-bottom: 10px;
    display: inline-block;
    background-color: #fb642d2d;
    padding: 2px 18px;
    border-radius: 50px;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.faq-blocks {
    justify-content: center;
    display: flex;
    gap: 20px;
}

.faq-blocks ul {
    width: 553px;
}

.faq-blocks li {
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e3d3cf;
    transition: all 0.3s ease;
}

.faq-blocks li label {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: var(--color-secondary);
}

.faq-blocks li label h2 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-secondary);
    margin: 0;
}

.faq-blocks label span {
    font-size: 22px;
    color: #333;
    display: flex;
    gap: 5px;
}

.faq-blocks input[type="radio"] {
    display: none;
}

.faq-blocks .content {
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.faq-blocks input[type="radio"]:checked + label + .content {
    max-height: 500px;
}

.faq-blocks label span i.fa-minus {
    display: none;
}

.faq-blocks label span i.fa-plus {
    display: inline-block;
}

.faq-blocks input[type="radio"]:checked + label span i.fa-plus {
    display: none;
}

.faq-blocks input[type="radio"]:checked + label span i.fa-minus {
    display: inline-block;
}

/*Acardion Section end */


/* Terms start*/


.privacy-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
}

.privacy-subtitle {
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

ol {
    margin-top: 12px;
}

.privacy-text {
    text-align: justify;
}

.privacy-paragraph,
.privacy-item {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.privacy-note {
    background-color: #fff8dc;
    padding: 12px;
    border-left: 4px solid orange;
    margin-top: 20px;
    border-radius: 6px;
}

.privacy-updated {
    margin-top: 30px;
    font-style: italic;
    color: #555;
    text-align: right;
}

/* Terms end*/

/*Post start*/

.container-post {
    margin: 0 auto;
    max-width: 500px;
}

.card-section {
    padding: 0 !important;
    width: 100%;
    margin: 100px 0;
}

.post-card {
    cursor: pointer;
}

.post-card-header,
.post-card-footer {
    padding: 0 16px;
}

.post-card .post-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.post-card .post-card-header .card-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-card .post-card-header .card-left img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.post-card .post-card-header .card-left h2 {
    font-weight: 400;
    font-size: 16px;
}

.post-card .post-card-header .card-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-card .post-card-header .card-right button {
    background-color: var(--color-secondary);
    border-radius: 14px;
    padding: 8px 16px;
    border: 1px solid var(--color-secondary);
    font-size: 14px;
    color: white;
}

.post-card .post-card-body {
    position: relative;
    width: 100%;
}

.post-card .post-card-body img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.post-card .post-card-footer .post-card-footer-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
}

.post-card .post-card-footer .post-card-footer-left ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-card .post-card-footer .post-card-footer-left ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-card-content .liked-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-card-content .liked-text p {
    font-size: 14px;
    font-weight: 400;
}

.post-card-content .liked-text img {
    border-radius: 100%;
    -webkit-border-radius: 100%;
    width: 20px;
    height: 20px;
}

.user-text .text {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
}

.user-text .text span {
    color: #6c7072;
}

.user-text .gray-text {
    font-family: "Medium";
    color: #6c7072;
    font-size: 14px;
}

/*Post end*/

/*Reciepe start*/

.reciepe-position {
    position: absolute;
    width: 100%;
    height: 100%;
}

.reciepe-position .top {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 100%;
    height: 100%;
}

.reciepe-position .top img {
    width: 100px;
    height: 100px;
}

.reciepe-position .bottom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    background-color: #21212199;
    border-radius: 12px;
}

.reciepe-position .bottom .box {
    display: flex;
    align-items: center;
    padding: 8px;
    color: white;
}

.reciepe-position .bottom span {
    color: white;
}

.reciepe-position .bottom .box p {
    font-size: 14px;
    font-weight: 400;
    color: white;
}

.reciepe-position .bottom .box img {
    width: 16px;
    height: 16px;
}

.top-text {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 8px;
}

.top-text h3 {
    font-family: "Medium";
    font-size: 16px;
    font-weight: 400;
}

/*Reciepe end*/
.left-bar a:focus,
.left-bar a:active,
.left-bar a img:focus,
.left-bar a img:active {
    outline: none;
    box-shadow: none;
}

.privacy-section {
    padding: 150px 0;
}

/* Contact Section start */
#contact-section {
    position: relative;
    z-index: 2;
    top: 100px;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    background-color: var(--color-secondary);
    border-radius: 20px;
    padding: 60px 50px;
}

.contact-box .left-box {
    display: flex;
    align-items: center;
}

.contact-box .left-box img {
    background-color: white;
    border-radius: 20px;
    width: 62px;
    height: 62px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.contact-box .left-box .texts {
    margin-left: 10px;
}

.contact-box .left-box .texts h3 {
    font-size: 40px;
    font-weight: bold;
    color: white;
}

.contact-box .left-box .texts p {
    font-size: 18px;
    color: white;
}

.contact-box .right-box button {
    position: relative;
    cursor: pointer;
    padding: 12px 30px;
    border: none;
    background-color: white;
    color: black;
    border-radius: 10px;
    font-size: 18px;
    margin-right: 50px;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
}

.contact-box .right-box button i {
    margin-right: 10px;
    font-size: 18px;
}

.contact-box .right-box span {
    position: absolute;
    top: -20px;
    left: 10%;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: none;
}

.contact-box .right-box span.show {
    animation: jumpUp 0.8s forwards;
    opacity: 1;
}

@keyframes jumpUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) scale(0.9);
        opacity: 0;
    }
}

.contact-box .right-box button:hover {
    box-shadow: 0 0 10px rgb(255, 255, 255);
    background-color: var(--color-secondary);
    color: white;
}

/* Contact Section end */

/*OTP Section start */

.otp-section {
    min-height: 70vh;
}

.otp-back {
    margin-top: 24px;
}

.otp-back img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.otp-btn {
    display: flex;
    align-items: center;
    justify-content: center;

}

.otp-head {
    margin-top: 48px;
    margin-bottom: 98px;
}

.otp-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 8px;
}

.otp-timer-text {
    text-align: center;
    font-size: 14px;
    color: #000;
}

.otp-timer {
    display: inline-block;
    width: 38px;
    color: red;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 12px;
    padding: 0 34px;
}

.otp-input {
    width: 36px;
    height: 56px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.otp-input:focus {
    border-color: #4a90e2;
}

.otp-button {
    width: 60%;
    padding: 16px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.otp-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.otp-button:not(:disabled):hover {
    background-color: var(--color-secondary);
}

.otp-resend {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #555;
}

.otp-resend a {
    color: #007bff;
    text-decoration: none;
}

.otp-resend a:hover {
    text-decoration: underline;
}


/* OTP Section end */

/* Modal start */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    padding: 24px;
    width: 343px;
    border-radius: 24px;
    transform: translateY(-40px) scale(0.98);
    opacity: 0;
    transition: all 0.3s cubic-bezier(.4, 2, .6, 1);
}

.modal-content ul li {
    padding: 20px 0;
    text-align: center;
}

.modal-content-title {
    justify-content: center;
    display: flex;
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-content .modal-img {

    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 12px;
    height: 12px;
}

.modal-content img {
    width: 100%;
    height: 6rem;
}

.modal-content p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 70%;
    font-size: 20px;
    font-weight: 500;
    padding-top: 30px;
}

.error-modal {
    height: auto;
}

.modal-content .error-modal-title {
    height: auto;
    color: red;
}


.success-modal {
    height: auto;
}

.modal-content .success-modal-title {
    height: auto;
    color: green;
    padding-top: 1rem;
}

.modal-content .modal-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.modal-content .modal-btns button:first-of-type,
.modal-content .modal-btns a:first-of-type {
    background-color: transparent;
    border: 1px solid #CCD1D5;
    color: black;
}

.modal-content .modal-btns button,
.modal-content .modal-btns a {
    padding: .5rem 2rem;
    border-radius: 10px;
    background-color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

/* Modal end */


/* Payment Section start */

.payment-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

}

.payment-page {
    width: 600px;
}

.payment-title {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-title h1 {
    font-size: 24px;
    font-weight: 400;
}

.payment-title img {
    width: 24px;
    height: 24px;
}

.payment-box {
    margin-bottom: 40px;
    padding: 24px 16px;
    border-radius: 18px;
    /* height: 152px; */
    color: white;
    background-color: black;
}

.payment-box .top {
    margin-bottom: 22px;
}

.payment-box .top p {
    font-size: 24px;
    display: flex;
    align-items: center;
}


.payment-box .payment-center b {
    font-size: 48px;
}

.payment-content .payment-text img {
    width: 24px;
    height: 24px;
}

.payment-bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 294px;
}

.payment-bottom p {
    margin-top: 16px;
}

.payment-bottom .gray-btn {
    background-color: #C7C7CC !important;
}

.payment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-info img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.payment-bottom .payment-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.payment-bottom p {
    font-size: 24px;
}


/* Payment Section end */

/*Music Section start */

.music-section {
    margin: 150px 0;
}

.music-section .music-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.music-section .music-title::after {
    content: "";
    display: block;
    width: 343px;
    height: 2px;
    background-color: var(--color-primary);
    margin: 10px auto 0;
}

.music-section .music-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.music-section .music-list .music-box {
    width: 400px;
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.music-section .music-list .music-box .music-left {
    width: 56px;
    height: 56px;
}

.music-section .music-list .music-box .music-left img {
    width: 100%;
    height: 100%;
}

.music-section .music-list .music-box .music-center-box {
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
    margin-left: 8px;
}

.music-section .music-list .music-box .music-center-box h3 {
    display: inline-block;
    white-space: nowrap;
    font-weight: 400;
    font-size: 18px;
    padding-bottom: 6px;
}

.scroll-text {
    animation: scroll-text 8s linear infinite alternate;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--scroll-distance, -50%));
    }
}

.music-section .music-list .music-box .music-center-box p {
    font-weight: 400;
    font-size: 16px;
}

.music-section .music-list .music-box .music-center-box p span {
    display: inline-block;
    width: 60px;
    padding-left: 16px;
}

.music-section .music-list .music-box .music-right-box {
    margin-left: 8px;
}

.music-section .music-list .music-box .music-right-box .music-right {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.music-section
.music-list
.music-box
.music-right-box
.music-right
:nth-child(2) {
    width: 16px;
    height: 16px;
}

.music-section .music-list .music-box .music-right-box .music-right img {
    cursor: pointer;
    width: 24px;
    height: 24px;
}

/*Music Section end */

/*Footer Section start */
footer {
    background-color: black;
    position: relative;
}

.blur-box {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 100%;
    filter: blur(120px);
    background-color: var(--color-secondary);
}

.box1 {
    top: -200px;
    left: 250px;
}

.box2 {
    bottom: -250px;
    right: 250px;
    top: inherit;
}

footer .footer-top {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 200px 0 00px 0;
}

footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-content .left-footer {
    display: flex;
    flex-direction: column;
    width: 458px;
    padding-right: 100px;
}

footer .footer-content .left-footer p {
    font-size: 16px;
    padding-bottom: 30px;
}

footer .footer-content .left-footer .footer-logo {
    display: flex;
    align-items: center;
    width: 100px;
    height: 100px;
    gap: 20px;
}

footer .footer-content .left-footer .footer-logo img {
    width: 100%;
    height: 100%;
}

footer .footer-content .left-footer .footer-logo h1 {
    color: #74c944;
}

footer .footer-content .right-footer {
    display: flex;
    gap: 60px;
}

footer .footer-content .right-footer .links h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 55px;
    position: relative;
}

footer .footer-content .right-footer .links h3::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 18px;
    background-color: var(--color-secondary);
    top: 1px;
    transform: rotate(20deg);
    left: -10px;
}

footer .footer-content .right-footer .links ul li {
    margin-bottom: 16px;
}

footer .footer-content .right-footer .links ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}

footer .footer-content .right-footer .links ul li a:hover {
    color: var(--color-primary);
}

footer .footer-bottom {
    margin-top: 80px;
    padding: 30px 0 20px 0;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

footer .footer-bottom p {
    text-align: center;
}

footer .footer-content .left-footer .app-btns ul li {
    width: 198px;
}

/*Footer Section end */

.mobile-lang {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1600px) {
    .hero-section .hero {
        right: -300px;
    }
}

@media (max-width: 1024px) {
    header nav {
        justify-content: center;
    }

    section .hero {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content .left-content {
        width: 46%;
    }

    .hero-content .left-content .banner-text h1 {
        font-size: 50px;
    }

    .faq-blocks {
        padding: 0 20px;
    }

    .faq-blocks ul {
        width: 480px;
    }

    .hero-content .left-content p {
        font-size: 18px;
    }

    .about-section {
        padding: 0px 20px;
    }

    .about-content {
        padding-top: 50px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 16px;
        padding-right: 10px;
    }
}

@media (max-width: 768px) {

    .deletion-title {
        margin-top: 40px;
    }

    .deletion-text {
        margin-bottom: 40px;
        text-align: center;
    }

    .deletion-list-title {
        text-align: center;
    }

    .about-content ol {
        text-align: center;
    }

    .hero-section {
        height: auto;
    }

    .hero-content {
        margin-top: 50px;
    }

    .faq-section .container {
        padding: 0 20px;
    }

    .about-title2 {
        text-align: center;
    }

    .feature-list li {
        display: flex;
        align-items: center;
    }

    .feature-list li p {
        font-size: 14px;
    }

    .privacy-section {
        padding: 100px 20px !important;
    }

    section {
        padding: 0 60px !important;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .faq-blocks {
        gap: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .faq-blocks .content p {
        font-size: 16px;
    }

    .faq-blocks label span {
        font-size: 16px;
    }

    .faq-blocks ul {
        width: 100%;
    }

    .faq-blocks li label h2 {
        font-size: 16px;
    }

    .right-content {
        width: 100% !important;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-content .left-content {
        width: 100%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;
    }

    .hero-content .left-content .banner-text h1 {
        font-size: 40px;
    }

    .hero-content .left-content .banner-text b {
        font-size: 40px;
    }

    .about-section {
        flex-direction: column;
    }

    .about-title {
        text-align: center;
    }

    .about-section .about-content {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .about-section .about-content h2 {
        font-size: 40px;
        text-align: center;
    }

    .about-section .about-content p {
        text-align: center;
    }

    .contact-box {
        flex-direction: column;
    }

    footer .footer-content {
        padding: 0 20px;
    }

    footer .footer-bottom {
        padding: 30px 20px 20px 20px;
    }

    header nav .right-bar .nav-list {
        display: none;
    }

    header .menu-toggle {
        display: flex;
    }

    header nav {
        padding: 0 20px;
        justify-content: space-between;
    }

    header nav .right-bar {
        display: flex;
        align-items: center;
        width: auto;
    }

    .desktop-lang {
        display: none;
    }

    .mobile-lang {
        display: block;
    }

    footer .footer-top {
        padding: 100px 20px 0 20px;
    }

    .privacy-paragraph,
    .privacy-item,
    .privacy-subtitle,
    .privacy-note {
        text-align: left;
    }

    .music-section .music-title {
        font-size: 26px;
    }

    .payment-page {
        width: 100% !important;
    }

    .payment-title h1 {
        font-size: 20px;
    }

    .payment-title img {
        width: 24px;
        height: 24px;
    }

    .payment-text {
        font-size: 14px !important;
        text-align: start !important;
    }


    .payment-bottom .payment-btn {
        font-size: 16px;
    }

    .payment-bottom p {
        font-size: 14px;
    }


}

@media (max-width: 525px) {
    header {
        padding: 0 20px;
    }

    header nav .left-bar a {
        width: 80px;
        height: 80px;
    }

    header nav {
        padding: 0;
    }


    section {
        padding: 0 20px !important;
    }

    .about-media {
        width: 100%;
    }

    .about-media img {
        width: 100%;
        height: 100%;
    }

    .contact-box {
        align-items: end;
    }

    .contact-box .left-box {
        align-items: start;
    }

    .contact-box .left-box .texts h3 {
        font-size: 25px;
    }

    .contact-box .left-box .texts p {
        font-size: 14px;
    }

    .contact-box .right-box button {
        font-size: 16px;
    }

    .feature-list li i {
        display: none;
    }

    .modal-content {
        width: 90%;
    }

    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-content .left-footer {
        align-items: center;
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    footer .footer-content .left-footer .app-btns ul {
        flex-direction: column;
    }

    footer .footer-content .left-footer p {
        font-size: 12px;
    }

    footer .footer-content .right-footer {
        flex-direction: column;
        margin-top: 60px;
    }

    footer .footer-content .right-footer .links h3 {
        margin-bottom: 30px;
    }

    footer .footer-content .right-footer .links {
        text-align: center;
    }

    footer .footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 400px) {
    .music-section .music-list .music-box {
        width: 100%;
    }

    .music-section .music-list .music-box .music-center-box h3 {
        font-size: 14px;
    }

    .music-section .music-list .music-box .music-center-box p {
        font-size: 14px;
    }

    .music-section .music-title::after {
        width: 200px;
    }

    .otp-inputs {
        padding: 0;
    }
}
