@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DE413D;
    --primary-yellow: #FFF200;
    --black-color: #0A0A0A;
    --color-light-pink: #FFE3E2;
    --color-gray-700: #5E5E5E;
    --color-gray-400: #6A7282;
    --color-gray-100: #E2E8EF;
    --color-gray-500: #5F6670;

    --primary-hover: #c42732;
    --bg-color: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #23221F;
    --bg-black: #000000;

    --bg-card-dark: #383838;
    --text-muted: #AEB7C3;
    --text-light: #FFFFFF;

    --border-color: #E9ECEF;
    --border-dark: #343A40;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-md-2: 20px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-40: 0px 4px 40px 0px #A1A1A140;
    --shadow-30: 0px 4px 30px 0px #A1A1A140;
    --shadow-black-40: 0px 4px 40px 0px #00000040;

    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    --font-family: "Bitter", serif;
    --font-family-montserrat: "Montserrat", sans-serif;
    --transition: all 0.3s ease;
    --bg-gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F4F7FC 100%);

    --letter-spacing-3: 0.3px;
    --letter-spacing-30: -0.30px;
    --letter-spacing-4: -0.45px;
    --root-font-size: 16px;

    --fs-xs: 14px;

    --fs-sm: 15px;


    --fs-base: 1rem;

    --fs-md: 1.25rem;

    --fs-lg: 1.5rem;

    --fs-xl: 2rem;

    --fs-2xl: 3rem;

    --fs-3xl: 4rem;
}

html {

    font-size: var(--root-font-size);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-family: var(--font-family) !important;

}

body {
    font-family: var(--font-family) !important;
    color: var(--black-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--fs-base);
}

.gl__landing-page p {
    margin: 0;
}

.gl__landing-page button:hover {
    background-color: transparent;
}

.gl__landing-page button:focus {
    outline: none;
    border: none;
    background-color: transparent;
}

.gl__landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6 {
    font-family: var(--font-family);
}


p {
    font-size: var(--fs-base);
}

h4 {
    font-size: var(--fs-md);
}

h3 {
    font-size: var(--fs-lg);
}

h2 {
    font-size: var(--fs-xl);
}

h1 {
    font-size: var(--fs-2xl);
}

.hero-title {
    font-size: var(--fs-3xl);
}


.container {
    max-width: 1318px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;


    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

@media (max-width: 767px) {
    br {
        display: none;
    }

    .section-header p {
        max-width: 60%;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .section-header p {
        max-width: 86%;
    }
}




.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: var(--fs-2xl);
    letter-spacing: var(--letter-spacing-3);
    margin-bottom: 13px;
    font-weight: 700;
}

.gl__landing-page .section-header h2 {
    color: var(--black-color);
}

.section-header p {
    font-size: var(--fs-base);
    color: var(--text-muted);
    letter-spacing: var(--letter-spacing-30);
}

.pricing .section-header p {
    color: var(--color-gray-700);
}

.section-header.dark h2 {
    color: var(--text-light);
}

.section-header.dark p {
    color: #A0A0A0;
}

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .included-card h3 {
        font-size: 1.5rem;
    }
}


.gl__landing-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 3rem;
    padding: 0px 44px;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--fs-base);
    cursor: pointer;
    border: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: var(--letter-spacing-30);
}

.gl__landing-page .btn:focus {
    box-shadow: none !important;
}

.gl__landing-page .btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.gl__landing-page .btn i {
    transition: transform 0.3s ease;
}

.gl__landing-page .btn:hover i {
    transform: translateX(4px) scale(1.1);
}

.gl__landing-page .btn:active {
    transform: translateY(-1px) scale(0.98);
    background-color: var(--primary-color) !important;
}

.gl__landing-page .btn-outline:active,
.gl__landing-page .btn.btn-light:active {
    background-color: var(--bg-color) !important;
}

.gl__landing-page .btn.btn-light:active {
    color: var(--primary-color) !important;
}

.gl__landing-page .btn.btn-dark:active {
    background-color: var(--black-color) !important;
}

.gl__landing-page .btn.sm {
    padding: 10px 20px;
    font-size: var(--fs-base);
}

.gl__landing-page .btn.sm.latest-editions {
    padding: 10px 35px;
}

.gl__landing-page .btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.gl__landing-page .btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.gl__landing-page .btn-outline {
    background-color: var(--bg-color);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.gl__landing-page .btn-primary-outline {
    background-color: transparent;
    color: var(--color-gray-400);
    border: 1px solid #D2CFCF;
}

.gl__landing-page .btn-outline:hover {
    background-color: var(--bg-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gl__landing-page .btn-dark {
    background-color: var(--black-color);
    color: var(--text-light);
}

.gl__landing-page .btn-dark:hover {
    background-color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gl__landing-page .btn-light {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.gl__landing-page .btn-light:hover {
    background-color: #f0f0f0;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.full-width {
    width: 100%;
}

.span-600 {
    font-weight: 600;
}

.span-700 {
    font-weight: 700;
}

@media (max-width: 1024px) {
    :root {
        --root-font-size: 1.5625vw;
    }
}

@media (max-width: 767px) {
    :root {
        --root-font-size: 16px;
    }
}

@media (max-width: 425px) {
    :root {
        --root-font-size: 14px;
    }
}




.hero {
    position: relative;
    padding: 4.625rem 0;
    background: url('../images/banner2.jpg');
    overflow: hidden;
    background-position: center bottom;
    min-height: 48.875rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3.125rem;
}

.hero-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(0.625rem);
    padding: 3.5625rem 3.5625rem 3.5625rem 2.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-30);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    max-width: 38.4375rem;
    width: 100%;
}

.hero-content h1 {
    font-size: var(--fs-2xl);
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: var(--letter-spacing-3);
}

.hero-content h1 span {
    display: block;
    color: var(--black-color);
}

.border-banner {
    border: none;
    height: 2px;
    background-color: #CFCFCF;
    margin-block-start: 2.3125rem;
    margin-block-end: 1.4375rem;
    padding: 0;
}

.mark-true {
    background-color: var(--primary-yellow);
    border-radius: 100%;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.mark-true img {
    width: 0.5rem;

}

.hero-content .subtitle {
    font-family: var(--font-family-montserrat);
    font-size: var(--fs-md);
    margin-bottom: 1rem;
    color: var(--black-color);
    letter-spacing: var(--letter-spacing-4);
}

.hero-content .subtitle span {
    font-weight: 700;
}

.feature-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}

ul {
    margin-left: 0;
}

.feature-list li {
    display: flex;
    /* align-items: center; */
    gap: 0.75rem;

    font-size: var(--fs-base);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-3);
}

.feature-list li p {
    font-size: var(--fs-base);
    letter-spacing: var(--letter-spacing-30);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 0.9375rem;
}

.hero-image {
    flex: 1;
    position: absolute;
    z-index: 1;

}

.hero-image img {
    width: 130%;

}

@media (max-width: 992px) {
    .feature-list {
        margin-bottom: 2rem;
    }

    .hero-content h1 span {
        display: inline;
        margin-left: 0.2rem;
    }

    .hero-content .subtitle {
        margin-bottom: 1rem;
    }

    .border-banner {
        margin-block-start: 1rem;
        margin-block-end: 1rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        padding: 1.875rem;
    }

}

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
    }
}


.whats-included {
    background-color: var(--bg-dark);
    position: relative;
    padding-block-start: 2.6875rem;
    padding-block-end: 3.1875rem;
}


.whats-included .section-header {
    margin-bottom: 1.9375rem;
}

.whats-tab.fixed {
    position: fixed;
    bottom: 1.25rem;
    top: auto;

    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: #38383869;
    backdrop-filter: blur(0.625rem);
}

.whats-tab {
    position: relative;
    border-radius: 2.5rem;
    max-width: 43.3125rem;
    width: 100%;
    height: 2.5625rem;
    margin: auto;
    background-color: rgba(255, 251, 251, 0.43);
    margin-block-end: 2.3125rem;
    transition: var(--transition);
    font-family: var(--font-family-montserrat);
}

.whats-tab ul {
    display: flex;
    align-items: center;
    height: 100%;
    padding-inline: 0.75rem;
    justify-content: center;
    padding: 0;
}

.whats-tab li {
    transition: var(--transition);
    font-weight: 400;
    font-size: 0.9375rem;
    color: var(--bg-color);
    line-height: 150%;
    display: inline-block;
    border-radius: 2.5rem;
    padding: 0 1.5rem;
    height: 1.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
}

.whats-tab li:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.30);
    color: rgba(255, 255, 255, 1);
}

.whats-tab li.active {
    pointer-events: none;
    color: var(--bg-color);
    background-color: rgba(0, 0, 0, 1);
    font-weight: 700;
}

.whats-tab span {
    transition: width 0.2s, left 0.2s;
    border-radius: 2.5rem;
    z-index: 1;
    position: absolute;
    left: 0;
    display: block;
    width: auto;
    height: 1.9375rem;
    top: 0.3125rem;
    background-color: var(--bg-black);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 0.9375rem;
    margin-bottom: 2.625rem;
}

.included-card {
    background-color: var(--bg-card-dark);
    padding: 2.5rem 1.5625rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-black-40);
    color: var(--text-light);
    border: 1px solid var(--border-dark);
    transition: var(--transition);
}

/* .included-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-0.3125rem);
} */

.included-card .icon-wrapper {
    width: 4.625rem;
    height: 4.625rem;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
}

.included-card h3 {
    margin-bottom: 0.9375rem;
    font-size: var(--fs-lg);
    color: var(--bg-color);
    font-weight: 700;
}

.included-card p {
    color: var(--bg-color);
    font-size: var(--fs-base);
    letter-spacing: var(--letter-spacing-30);
    line-height: 1.4;
    font-weight: 400;
}

.center-action {
    text-align: center;


}

.gl__landing-page .whats-included .terms-text {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: 0.875rem;
}

.gl__landing-page .choose--work-text {
    color: var(--color-gray-500);
    font-weight: 700;
    margin-top: 1.5625rem;
    font-family: var(--font-family-montserrat);
    letter-spacing: var(--letter-spacing-30);
}

@media(max-width: 767px) {
    .whats-tab {
        display: none;
    }
}


.pricing {
    background: var(--bg-gradient-light);
    padding-block: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21.875rem, 1fr));
    gap: 3.75rem;
    max-width: 60rem;
    margin: 0 auto 2.25rem;
}

.pricing-card {
    background-color: var(--bg-color);
    padding: 1.5625rem 1.875rem 2.25rem 1.875rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-40);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* .pricing-card.featured {

    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
} */

.pricing-card .mark-true {
    width: 1.375rem;
    height: 1.375rem;
    min-width: 1.375rem;
    background-color: transparent;
    margin-top: 0;
}

.pricing-card .mark-true img {
    width: auto;
}

.pricing-card .badge {
    position: absolute;
    top: -0.9375rem;
    right: 1.875rem;
    background-color: var(--bg-card-dark);
    color: var(--text-light);
    padding: 0.375rem 1rem;
    border-radius: 1.25rem;
    font-size: var(--fs-xs);
    letter-spacing: var(--letter-spacing-30);
    font-weight: 400;
}

.pricing-card .badge.Popular {
    background-color: var(--primary-color);
}

.plan-header {
    margin-bottom: 1.25rem;

    border-bottom: 1px solid var(--border-color);

}

.plan-name {
    font-family: "Bitter", serif;
    display: block;
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--color-gray-400);
    letter-spacing: var(--letter-spacing-30);
}

.plan-price {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--black-color);
    letter-spacing: var(--letter-spacing-30);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-color);
}

.plan-features {
    margin-bottom: 3.5rem;
    padding: 0;
}

.pricing-card .btn.btn-primary,
.pricing-card .btn.btn-primary-outline {
    display: flex;
    max-width: max-content;
    margin: auto;
    margin-top: auto;
    margin-bottom: 0;
    font-family: var(--font-family-montserrat);
}

.pricing-card .btn.btn-primary-outline:active {
    background-color: transparent !important;
}

.plan-features li p {
    font-size: var(--fs-xs);
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9375rem;
    font-size: 1rem;
}

.plan-features i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.gl__landing-page .promo-banner .promo-trial {
    background-color: var(--bg-card-dark);
    font-size: var(--fs-xs);
    color: var(--bg-color);
    border-radius: 3.125rem;
    max-width: max-content;
    margin: auto;
    min-width: 3.75rem;
    padding-block: 0.1875rem;
    margin-block-end: 0.8125rem;
    letter-spacing: var(--letter-spacing-30);
}

.gl__landing-page .pricing .subscription-text {
    font-size: 0.75rem;
    color: var(--bg-black);
    font-weight: 400;
    line-height: 2;
    margin-top: 0.75rem;
    letter-spacing: var(--letter-spacing-30);
    font-family: var(--font-family-montserrat);
}

.promo-banner .btn-primary {
    font-family: var(--font-family-montserrat);
}

.promo-banner {
    background: url(../images/offer_bg.jpeg);
    border-radius: var(--radius-lg);
    padding-block-start: 2.25rem;
    padding-block-end: 1.375rem;
    color: var(--text-light);
    text-align: center;
    position: relative;
    background-size: cover;
    max-width: 60rem;
    margin: 0 auto;
    overflow: hidden;
    z-index: 4;
    box-shadow: var(--shadow-40);
    transition: var(--transition);
}

.promo-banner:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.promo-banner::after {
    content: "";
    background-color: #FFF2007A;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.promo-banner .mark-true {
    background-color: transparent;
    width: 1.375rem;
    height: 1.375rem;
    min-width: 1.375rem;
    margin-top: 0;
}

.promo-banner .mark-true img {
    width: auto;
}

.promo-badge {
    font-family: "Bitter", serif;
    display: inline-block;
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.promo-banner h2 {
    font-size: var(--fs-3xl);
    /* margin-bottom: 2.125rem; */
    color: var(--black-color);
    line-height: 0.8;
}

.promo-banner .promo-border {
    border: none;
    height: 1px;
    width: 100%;
    background-color: var(--black-color);
    max-width: 749px;
    margin: auto;
    margin-block-start: 10px;
    margin-block-end: 24px;
}

.promo-banner .promo-title {
    font-size: var(--fs-xs);
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.7;
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 2.1875rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.promo-features ul li p {
    font-size: var(--fs-xs);
    font-weight: 400;
    color: var(--bg-black);
    font-family: var(--font-family-montserrat);
    letter-spacing: var(--letter-spacing-30);
}

.promo-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    font-size: 1.1rem;
}

.promo-features i {
    color: var(--text-main);
}

@media (max-width: 992px) {
    .plan-price {
        font-size: 2.5rem;
    }

    .pricing {
        padding-block-start: 4rem;
        padding-block-end: 4rem;
    }
}

@media (max-width: 768px) {
    .promo-features {
        flex-direction: column;
        gap: 0.9375rem;

        width: 100%;
        margin-inline: auto;
    }

    .promo-banner {
        padding-inline: 4rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .plan-price {
        font-size: 3rem;
    }

    .pricing {
        padding-block-start: 2.8125rem;
        padding-block-end: 2.8125rem;
    }

    .promo-banner h2 {
        font-size: 2rem;
    }

    .promo-badge {
        font-size: 1rem;
    }
}


.why-subscribe {
    position: relative;
    overflow: hidden;
    padding-block-start: 5.625rem;
    padding-block-end: 5.625rem;
    background: url(../images/why_subscribe_banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    left: 0;
    top: 0;
}

.bg-shape img {
    height: 100%;
}

.why-container {
    display: flex;
    align-items: center;
    gap: 3.75rem;
    position: relative;
    z-index: 2;
}

.why-content {
    flex: 1;
    background: #FFFFFFD9;
    padding: 2.3125rem 2.625rem 2.875rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-black-40);
    max-width: 40rem;
    width: 100%;
}

.why-content h2 {
    font-size: var(--fs-2xl);
    font-weight: 700;
    margin-bottom: 2.125rem;
    color: var(--black-color);
}

.why-content h2 span {
    color: var(--primary-color);
}

.why-item {
    display: flex;
    gap: 2.8125rem;
    margin-bottom: 0.875rem;
}

.why-icon {
    width: 3.375rem;
    height: 3.375rem;
    background-color: var(--primary-yellow);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-text h3 {
    font-size: var(--fs-lg);
    margin-bottom: 2px;
    font-weight: 700;
}

.why-text p {
    color: var(--black-color);
    font-size: var(--fs-xs);
    letter-spacing: var(--letter-spacing-30);
}

.why-actions {
    margin-top: 2.3125rem;
    display: flex;
    gap: 0.9375rem;
}

.why-image {
    flex: 1;
}

.why-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

@media (max-width: 992px) {

    .bg-shape {
        clip-path: none;
        height: 50%;
    }

    .why-content {
        padding: 1.875rem;
    }

    .why-content h2 {
        font-size: 2rem;
    }

    .why-text h3 {
        font-size: 1.25rem;
    }

    .why-item {
        gap: 1.875rem;
    }
}

@media (max-width: 767px) {
    .why-actions {
        flex-direction: column;
    }

    .why-subscribe {
        padding-block: 4rem;
    }
}

@media (max-width: 425px) {}


.testimonials {
    padding-block-start: 4rem;



    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    max-width: 100%;

    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.testimonials .section-header p {
    color: var(--color-gray-700);
}

.testimonial-swiper {
    padding: 2rem 0.625rem 4.0625rem 0.625rem;
}

.testimonial-wrapper {
    padding: 0 1.625rem;
}


.swiper-slide {
    height: auto;
}


.testimonial-swiper .swiper-wrapper {
    transition-timing-function: linear !important;

}

.testimonials .section-header {
    margin-bottom: 0;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 2.625rem 1.5625rem;
    border-radius: var(--radius-md-2);
    box-shadow: 0 0.25rem 0.625rem 0 #A1A1A140;
    transition: all 0.4s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100%;


    border: none;
}

.testimonial-card:hover {
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.08);
}

.swiper-slide-active .testimonial-card {
    opacity: 1;


    background-color: #fff;
    z-index: 2;
}

.user-info {
    display: block;
    gap: 0.9375rem;
    margin-bottom: 0.75rem;
}

.user-info img {
    width: 4.625rem;
    height: 4.625rem;
    min-width: 4.625rem;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
    margin-top: 0.625rem;
}

.user-details h4 {
    margin: 0;
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.3;
}

.user-role {
    font-size: var(--fs-xs);
    color: var(--color-gray-400);
    margin-top: 0.25rem;
    letter-spacing: -0.15px;
}

.stars {
    display: flex;
    gap: 0.3125rem;
    margin-bottom: 0.9375rem;
}

.testimonial-card p {
    color: var(--color-gray-700);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .user-details h4 {
        font-size: 1.25rem;
    }

    .testimonials {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .testimonial-swiper {
        padding-top: 2rem;
    }
}


.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;

}

.slider-arrow {
    width: 2.4375rem;
    height: 2.4375rem;
    min-width: 2.4375rem;
    border-radius: 50%;
    background-color: var(--bg-color);
    box-shadow: 0 0 1.875rem 0 #86868640;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    position: relative;
    left: auto;
    right: auto;
}

.slider-arrow:hover svg path {
    fill: var(--bg-color);
}

.slider-arrow svg path {
    transition: all 0.3s;
}

.slider-arrow svg {
    width: 0.6875rem;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media (max-width: 768px) {}


.quick-links {

    background: var(--bg-gradient-light);

    padding-block-end: 6.8rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

.link-card {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-40);
    border-radius: var(--radius-md-2);
    padding: 1.75rem 1.875rem;

    transition: var(--transition);
    display: flex;
    flex-direction: column;

}

.download_badge {
    height: 3.375rem;
}

.links-grid .link-card .btn.btn-primary {
    max-width: max-content;
    font-size: var(--fs-base);
}

.links-grid .link-card .btn.btn-primary,
.download_badge {
    margin-top: auto;
}

.link-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-0.3125rem);
}

.link-icon {
    width: 4.375rem;
    height: 4.375rem;
    background-color: var(--primary-yellow);
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    font-size: 2rem;
}

.link-card:nth-child(1) .link-icon {
    color: var(--primary-color);
}

.link-card:nth-child(2) .link-icon,
.link-card:nth-child(3) .link-icon {
    color: var(--text-main);
}

.link-card h3 {
    font-size: var(--fs-xl);
    margin-bottom: 0.9375rem;
}

.link-card p {
    color: var(--black-color);
    margin-bottom: 1.875rem;
    letter-spacing: var(--letter-spacing-30);
    font-size: var(--fs-base);
}

@media (max-width: 992px) {
    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .quick-links {
        padding-block-end: 4rem;
    }
}

@media (max-width: 768px) {
    .link-card h3 {
        font-size: 1.25rem;
    }
}


.latest-editions {
    padding-top: 5.25rem;

}

.editions-grid {
    display: flex;
    max-width: 603px;
    width: 100%;
    /* grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr)); */
    margin: auto;
    gap: 1.4375rem;

}

@media (max-width: 1024px) {
    /* .editions-grid {
        grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
        row-gap: 3rem;
    } */
}

@media (max-width: 425px) {
    /* .editions-grid {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    } */
}

.edition-card {
    display: flex;
    background-color: var(--primary-yellow);
    border-radius: var(--radius-md);
    position: relative;
    width: 100%;
    /* margin-top: 1.375rem; */
    align-items: center;
    box-shadow: var(--shadow-md);
}

.edition-image {
    max-width: 8.8125rem;
    width: 100%;
    margin-left: -3px;
    z-index: 1;
    position: absolute;
}

.edition-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: var(--shadow-black-40);
}

.edition-content {
    padding: 1.5rem 0.75rem 1.5rem 10.0625rem;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.edition-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.edition-info img {
    height: 36px;
    /* width: 100%; */
    margin-left: -11px;
}

.edition-info p {
    color: var(--black-color);
    margin-top: 0.5rem;
    font-family: var(--font-family);
    letter-spacing: var(--letter-spacing-30);
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .edition-image {
        margin-left: -1rem;
        max-width: 7rem;
    }

    .edition-card {
        padding-left: 1rem;
    }
}


@media (max-width: 767px) {
    .edition-content {
        padding: 1.5rem 0.75rem 1.5rem 8rem;
    }

    .edition-info img {
        height: 30px;
    }
}

@media (max-width: 570px) {
    .edition-content {
        flex-direction: column;
    }

    .editions-grid {
        max-width: 90%;
    }

    .edition-image {
        margin-left: -2rem;
        max-width: 11rem;
    }

    .edition-content {
        padding: 1.5rem 0.75rem 1.5rem 7rem;
    }

    .gl__landing-page .btn.sm.latest-editions {
        font-size: 0.9rem;
        padding: 10px 25px;
    }

    .edition-content {
        align-items: end;
    }

    .edition-info img {
        margin-left: -8px;
    }
}

@media (max-width: 375px) {
    .edition-content {
        padding: 0;
    }

    .edition-card {
        flex-direction: column;
        position: relative;
        gap: 1.5rem;
    }

    .edition-card {
        padding: 0.75rem;
    }

    .edition-image {
        padding-left: 0rem;
        margin-left: 0rem;
        position: relative;
        margin-top: -2rem;
    }

    .edition-info {
        align-items: center;
    }

    .edition-content {
        align-items: center;
    }

    .edition-info img {
        margin-left: 0px;
    }
}

.faq-section {
    padding-block: 4rem;
}

.faq-section .section-header {
    margin-bottom: 2.3125rem;
}

.faq-list {
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
}

.faq-item {
    background-color: var(--black-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    color: var(--text-light);
    transition: var(--transition);
}

.faq-summary {
    width: 100%;
    padding: 1.5625rem 1.5625rem;
    background-color: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 400;
    font-size: var(--fs-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: var(--transition);
    border-bottom-left-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
    position: relative;
    margin: 0;
}

.faq-summary i {
    transition: transform 0.4s ease;
}

.faq-summary:hover {
    background-color: #000;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    background-color: transparent;
}

.faq-item.active .faq-summary {
    background-color: var(--primary-yellow);
    color: var(--black-color);
    font-weight: 600;
}

.fa-chevron-up {
    transition: var(--transition);
    color: var(--bg-black);
}

.faq-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out;
}

.faq-content a,
.faq-content a:hover {
    color: var(--black-color);
}

.faq-content a {
    font-weight: 700;
}

.faq-item.active .faq-content-wrapper {
    grid-template-rows: 1fr;
    margin-top: -0.375rem;
}

.faq-content {
    overflow: hidden;
}

.faq-content p {
    background-color: var(--bg-light);
    padding: 2rem 1.5625rem 1.5625rem;
    color: var(--black-color);
    border: 2px solid #D4D4D4;
    border-top: none;
    border-bottom-left-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
    line-height: 1.7;
    margin: 0;
    margin-top: -0.625rem;
}

@media (max-width: 992px) {
    .faq-content p {
        font-size: 1rem;
    }

    .faq-summary {
        font-size: 1rem;
        padding: 1rem 1rem;
        line-height: 1.4;
        gap: 1rem;
    }

    .faq-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* 20-03-2026 */
.row.row-main-menu.new-landingpage-menu,
.row.row-main-menu.new-landingpage-breadcrumb {
    max-width: 100%;
    padding: 0;
    background-color: #333333;
}

.row.row-main-menu.new-landingpage-menu .mainmenu,
.row.row-main-menu.new-landingpage-breadcrumb .breadcrumbs {
    margin: 0 auto;
    max-width: 68.75rem;
    width: 100%;
}

.row.row-main-menu.new-landingpage-menu .mainmenu {
    padding-inline: .3125rem;
}

.row.row-main-menu.new-landingpage-breadcrumb {
    background-color: #eeeeee;
}

.new-landingpage-footer {
    background-color: #414040;
}