/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Font */
    --fira-sans: 'Fira Sans', sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #d2408a;
    --primary-light: #c4307a;
    --primary-dark: #9a3367;
    --dark: #222;
    --dark-light: #333;
    --grey: #898989;
    --yellow-light: #f6d774;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--dark-light);
    font-size: 16px;
    font-family: var(--fira-sans);
    font-weight: 400;
    line-height: 1.89;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    text-transform: uppercase;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}
::selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}

/* ===== Custom CSS Start ===== */

/* ----- Typography Start ----- */
.fs-1 {
    font-size: 28px !important;
    line-height: 1.52;
}
/* ----- Typography End ----- */

/* ----- Colors Start ----- */
.text-primary {
    color: var(--primary) !important;
}
.text-grey {
    color: var(--grey) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-dark-light {
    color: var(--dark-light) !important;
}
.bg-primary {
    background-color: var(--primary-dark) !important;
}
.border-primary {
    border-color: var(--primary) !important;
}
/* ----- Colors End----- */

/* ----- Buttons Start ----- */
.btn {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}
.btn--sm,
.btn--common {
    padding: 10px 24px;
    height: 44px;
    border-radius: 0 12px 12px 12px;
}
.btn:hover {
    color: var(--primary);
    background-color: var(--yellow-light);
}
/* ----- Buttons End----- */

/* ----- Animations Start ----- */
/* Button Animation */
.btn__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.btn:hover .btnShakeAnim {
    animation: shakeAnim 1s infinite ease-in-out;
}
@keyframes shakeAnim {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(8deg);
    }
    60% {
        transform: rotate(-6deg);
    }
    80% {
        transform: rotate(6deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Hover Transition */
.transition-common {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* ----- Animations End----- */

/* ----- Random Classes & Components ----- */
.section__tag {
    font-size: 14px;
    padding: 11px 20px;
}
.body__ellipse {
    width: 36.8%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: block;
    background-color: var(--primary-light);
    filter: blur(170px);
    opacity: 0.75;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

/* ===== Custom CSS End ===== */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header--area {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.logo--header {
    max-width: 112px;
}
.mobile-menu-open,
.mobile-menu-close {
    font-size: 20px;
    color: var(--white);
}
.mobile-menu .offcanvas {
    background-color: var(--primary-dark);
}
.mobile-menu__nav__link,
.nav__link {
    color: var(--white);
    font-size: 15px;
    line-height: normal;
}
.mobile-menu__nav__link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.mobile-menu__nav__link:hover,
.nav__link:hover {
    color: var(--yellow-light);
}
/* ----- Desktop Navigation Start */
.nav--header {
    gap: 28px;
}
.nav__ul {
    gap: 24px;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--yellow-light);
    transition: all 0.3s ease-in-out;
}
.nav__link:hover::after {
    left: 0;
    width: 100%;
}
.header__tel__btn {
    font-size: 17px;
    color: var(--white);
    gap: 10px;
}
.header__tel__btn:hover {
    color: var(--primary);
}
.header__tel__btn .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--white);
}
.header__tel__btn:hover .icon {
    background-color: var(--white);
}
.header__tel__btn .icon svg {
    width: 24px;
    height: 24px;
}
.header__tel__btn:hover .icon svg {
    animation: shakeAnim 1s infinite ease;
}
@keyframes shakeAnim {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(8deg);
    }
    60% {
        transform: rotate(-8deg);
    }
    80% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.header__tel__btn:hover .text {
    color: var(--white);
}
.btn--headerMail {
    padding: 12px 18px;
    font-size: 14px !important;
}
/* ----- Desktop Navigation End */

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero__inner {
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.hero__thumb {
    max-width: 476px;
    width: 100%;
}
.hero__thumb__image {
    border-radius: 0 24px 24px 24px;
}
.hero__thumb__top__object {
    position: absolute;
    top: -10%;
    right: -13%;
    max-width: 28.21%;
    width: 100%;
    z-index: -1;
}
.hero__thumb__bottom__object {
    position: absolute;
    bottom: -12%;
    left: -16%;
    max-width: 38.31%;
    width: 100%;
    z-index: -1;
}
.hoer__lines__object {
    position: absolute;
    left: 0;
    bottom: 44px;
    max-width: 65%;
    width: 100%;
    z-index: -1;
}
.hero__ellipse {
    width: 31.52%;
    aspect-ratio: 1 / 1.035;
    border-radius: 50%;
    display: block;
    background-color: var(--primary-light);
    filter: blur(170px);
    opacity: 0.75;
    position: absolute;
    right: -10%;
    bottom: 48px;
    z-index: -1;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Training Section CSS Start */
/* =============================== */
.training--section {
    padding: 48px 0;
}

/* ----- Card CSS ----- */
.card {
    height: 100%;
    padding: 10px;
    border-radius: 0 24px 24px 24px;
}
.card__thumb {
    width: 100%;
    height: 230px;
    border-radius: 0 14px 24px 24px;
}
.card__thumb__image {
    transition: all 0.4s linear;
}
.card:hover .card__thumb__image {
    transform: scale(1.05);
}
.card__title {
    font-size: 20px;
}
.card__meta__fs-base {
    font-size: 16px;
}
.ratings {
    font-size: 16px;
    gap: 6px;
}
.card__price__monthly {
    font-size: 10px;
}
.card__object {
    max-width: 61.5%;
}
/* ----- Card CSS ----- */

.card--training {
    background-color: var(--white);
}
.card--training .card__thumb {
    margin-bottom: 20px;
}
.card--training .card__content {
    padding-left: 10px;
}
.ratings__wrap {
    gap: 5px;
    margin-top: -2px;
}
.ratings__wrap .star {
    width: 13px;
    max-width: 13px;
    height: 12px;
    max-height: 12px;
}
.card--training__button {
    width: 56px;
    height: 56px;
    color: var(--white);
    padding: 10px;
    font-size: 13px;
    line-height: 1.38;
    background-color: var(--primary);
}
.card--training__button:hover {
    color: var(--primary);
    background-color: var(--yellow-light);
}
/* =============================== */
/* :: 6.0 Training Section CSS End */
/* =============================== */

/* =============================================== */
/* :: 7.0 ContentBlock (Balance) Section CSS Start */
/* =============================================== */
.contentBlock--section {
    padding: 48px 0;
}
.section__para__link {
    color: var(--dark-light);
}
.section__para__link:hover {
    color: var(--primary);
}
.contentBlock__content {
    height: 100%;
}
.contentBlock__thumb__inner {
    width: 100%;
    height: 300px;
    padding: 12px;
    border-radius: 0 40px 40px 40px;
    background-color: #f1e2db;
    transform: rotate(6.2deg);
    margin-bottom: 80px;
}
.contentBlock__thumb__image {
    border-radius: 0 28px 28px 28px;
}
/* List Card CSS */
.list-card {
    min-width: 248px;
    padding: 16px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(1px);
    box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}
.list-card__item {
    white-space: nowrap;
}
.list-card__icon {
    width: 27px;
}
.list-card__text {
    font-size: 16px;
}
/* List Card CSS */
.contentBlock--section .list-card--one {
    position: absolute;
    bottom: -13%;
    left: 50%;
    transform: translateX(-50%);
}
.contentBlock__thumb__object {
    max-width: 31%;
    width: 100%;
    position: absolute;
    right: -10%;
    top: -10%;
    z-index: -1;
}
/* ===================================ContentBlock (Practice) ========== */
/* :: 7.0 ContentBlock (Balance) Section CSS End */
/* =====================================ContentBlock (Practice) ======== */

/* =================================== */
/* :: 8.0 Newsletter Section CSS Start */
/* =================================== */
.newsletter--section {
    padding: 48px 0;
}
.form--newsletter {
    max-width: 956px;
}
.newsletter__item {
    gap: 12px;
}
.newsletter__input {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px 0 10px 10px;
    padding: 16px;
    color: var(--white);
    font-size: 16px;
    background-color: transparent;
    transition: all 0.3s ease-in;
}
.newsletter__input:focus,
.newsletter__input:not(:placeholder-shown) {
    border-color: var(--white);
}
.newsletter__input::placeholder {
    color: var(--white);
    font-size: 16px;
    opacity: 0.75;
}
.newsletter__submit {
    width: 100%;
    height: 48px;

    border-radius: 0 10px 10px 10px;
}
.newsletter__logo__icon__obj {
    width: clamp(80px, 11.6%, 168px);
    position: absolute;
    right: -12px;
    bottom: -8px;
    opacity: 0.2;
    z-index: -1;
}
.newsletter__lines {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.75;
}
.newsletter__ellipse {
    display: block;
    background-color: var(--primary-light);
    filter: blur(170px);
}
/* ================================= */
/* :: 8.0 Newsletter Section CSS End */
/* ================================= */

/* =============================== */
/* :: 9.0 Blog Section CSS Start */
/* =============================== */
.blog--section {
    padding: 48px 0;
}
.blog--section .section__head {
    max-width: 972px;
}
.blog__item {
    padding: 24px 0;
    border-bottom: 1px solid #d9d9d9;
}
.blog__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.blog__content {
    gap: 20px;
}
.blog__thumb {
    max-width: 316px;
    padding: 10px;
    border-radius: 0 20px 20px 20px;
    background-color: #dcd7ef;
}
.blog__thumb__image {
    border-radius: 0 20px 20px 20px;
}
.blog__title {
    font-size: 20px;
}
.blog__date {
    font-size: 15px;
}
/* =============================== */
/* :: 9.0 Blog Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Review Section CSS Start */
/* =============================== */
.review--section {
    padding: 48px 0;
    background-color: #fbf3f8;
}
.review--section .section__head {
    max-width: 972px;
}
.review__content {
    max-width: 826px;
    width: 100%;
}
.review__inner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 36px);
    border-radius: 0 34px 34px 34px;
    background-color: var(--primary-dark);
}
.review__item {
    padding: 0 16px 20px;
}
.review__thumb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--primary-dark);
    margin-bottom: 16px;
}
.review__para {
    max-width: 680px;
}
.reviewerName {
    font-size: 16px;
}
.review__quote {
    color: var(--white);
    font-size: 100px;
    opacity: 0.2;
    position: absolute;
    top: 48px;
    left: 8px;
    line-height: 1;
}
.review--section .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: static;
    line-height: 1;
}
.review--section
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 2px;
}
.review--section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-dark);
    background-color: var(--primary-dark);
    opacity: 1;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.review--section .swiper-pagination-bullet::after {
    content: '';
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: var(--primary-dark);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.review--section .swiper-pagination-bullet-active {
    background-color: transparent;
}
.review__lines__object {
    position: absolute;
    width: clamp(64px, 7%, 100px);
}
.review__lines__object--one {
    top: 0;
    right: 0;
}
.review__lines__object--two {
    left: 0;
    bottom: 0;
}
/* =============================== */
/* :: 10.0 Review Section CSS End */
/* =============================== */

/* ================================================= */
/* :: 11.0 ContentBlock (Practice) Section CSS Start */
/* ================================================= */
.contentBlock--even .contentBlock__thumb__inner {
    transform: rotate(-6.2deg);
}
.contentBlock--even .contentBlock__thumb__object {
    right: auto;
    top: -8%;
    left: -20%;
}
.contentBlock--even .list-card--two {
    min-width: 270px;
    position: absolute;
    top: -10%;
    right: 50%;
    transform: translateX(50%);
}
/* =============================================== */
/* :: 11.0 ContentBlock (Practice) Section CSS End */
/* =============================================== */

/* =============================== */
/* :: 12.0 Footer Area CSS Start */
/* =============================== */
.footer--area {
    padding: 48px 0 32px;
}
.footer__wrapper__inner {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.logo--footer {
    max-width: 200px;
}
.widget__title {
    font-size: 20px;
}
.footer__nav__link,
.footer__contact__item,
.footer__contact__link,
.footer__copyright,
.footer__link {
    color: var(--white);
    font-size: 15px;
    line-height: 2.267;
}

.footer__nav__link:hover,
.footer__contact__link:hover {
    color: var(--yellow-light);
}
.footer__social__item {
    color: var(--white);
    gap: 8px;
    transition: all 0.3s ease-in-out;
}
.footer__social__item:hover {
    color: var(--yellow-light);
}
.footer__social__item .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 6px;
    font-size: 15px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}
.footer__social__item:hover .icon {
    background-color: var(--yellow-light);
}
.footer__social__item .icon img {
    max-width: 16px;
}
.footer__ellipse {
    width: clamp(40px, 6%, 76px);
    position: absolute;
    left: 0;
    bottom: -48px;
    z-index: -1;
}
.footer__circle__object {
    width: clamp(64px, 10%, 134px);
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}
/* =============================== */
/* :: 12.0 Footer Area CSS End */
/* =============================== */
