:root {
    --primary-color: #2D2D2D;

    --border-color: #CCCCCC;
    --black: #000000;
    --white: #ffffff;
}

body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: "Manrope", sans-serif;
    /* font-family: "Poppins", sans-serif; */
    color: var(--black);
    text-rendering: geometricPrecision;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    min-height: 100vh;
}

::selection {
    background-color: var(--primary-color);
    color: var(--white);
}


a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: var(--white);
    text-decoration: none;
}

.clear {
    clear: both;
}
img:not(table img) {
    max-width: 100%;
}

p {
    font-size: 16px;
    color: var(--grey-color-text);
    line-height: 1.5;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar {
    width: 4px;
}

*::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 7px;
}

*::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 7px;
}


.container{
    padding: 0 12px;
    margin: 0 auto;
}


body {
    display: flex;
    flex-direction: column;
}
.flex-part{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-item {
    width: 100%;
    max-width: calc(100% / 3);
}
.home_section{
    flex: 1;
    padding: 116px 0 52px;
    position: relative;
    z-index: 1;
}
.home_section::before, .home_section::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 90px);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    z-index: -1;
}
.home_section::before {
    background-image: url(../img/bg-design-top-left.png);
    left: 0;
    background-position: left top;
}
.home_section::after {
    background-image: url(../img/bg-design-top-right.png);
    right: 0;
    background-position: right top;
}
.logo_outer {
    max-width: 190px;
    margin: auto;
}
.down_title {
    color: var(--black);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}
.download_app{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.home_section h1 {
    color: var(--black);
    font-size: 70px;
    font-weight: 700;
    line-height: 1.5;
    text-align: right;
}
.home_section h1 span {
    color: var(--white);
    background-color: var(--black);
    font-size: 85px;
    font-weight: 800;
    border-radius: 6px;
    max-height: 90px;
    padding: 3px;
    display: inline-block;
    line-height: 1;
}
.badge_outer {
    padding-top: 90px;
}
.badge_list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.badge_img {
    width: 150px;
    aspect-ratio: 1/1;
    flex: 0 0 auto;
}
.badge_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.badge_outer .title {
    color: var(--black);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 50px;
    margin-top: 8px;
}
.badge_outer .title::before, .badge_outer .title::after {
    content: '';
    display: block;
    width: 190px;
    height: 1px;
    background-color: var(--border-color);
}
.copy_right {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    margin: 0;
}
.footer_link_outer, .social_outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.social_outer{
    gap: 16px;
    justify-content: end;
}
.footer-link {
    transition: opacity .3s ease-in-out;
}
.footer-link:hover {
    opacity: .9;
}
.social-link {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid var(--white);
    transition: ease-in-out .3s;
}
.social-link:hover {
    color: var(--black);
    background-color: var(--white);
}
.app_link {
    width: fit-content;
}
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 28px 0;
    position: relative;
    z-index: 1;
}

header {
    padding: 20px 0;
    text-align: center;
}
.header_logo_outer {
    max-width: 50px;
    margin: 0 auto;
}
.cms-content h4, .cms-title {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 30px;
}
.cms-content {
    padding: 30px 0 80px;
    flex: 1;
}
.cms-content h3, .cms-content-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #424242;
    margin: 0 0 10px;
}
.cms-content p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    color: #696969;
    margin: 0 0 8px;
}
.cms-content p:has(+h3) {
    margin: 0 0 20px;
}


/* Responsive CSS */
@media (min-width:576px) {
    .container{
        max-width: 540px;
    }
}
@media (min-width:768px) {
    .container{
        max-width: 720px;
    }
}
@media (min-width:992px) {
    .container{
        max-width: 960px;
    }
}
@media (min-width:1200px) {
    .container{
        max-width: 1140px;
    }
}
@media (min-width:1300px) {
    .container{
        max-width: 1240px;
    }
}


@media (max-width:1399.98px) {
    .logo_outer {
        max-width: 160px;
    }
    .home_section h1 {
        font-size: 60px;
    }
    .home_section h1 span {
        font-size: 70px;
    }
    .badge_img{
        width: 120px;
    }
}
@media (max-width:1199.98px) {
    .logo_outer {
        max-width: 120px;
    }
    .home_section h1 {
        font-size: 50px;
    }
    .home_section h1 span {
        font-size: 55px;
    }
    .home_section {
        padding: 80px 0 50px;
    }
    .download_app {
        gap: 12px;
    }
    .badge_img{
        width: 90px;
    }
    .badge_outer .title {
        font-size: 16px;
        gap: 30px;
    }
    .badge_outer .title::before, .badge_outer .title::after {
        width: 100px;
    }
    .badge_outer {
        padding-top: 50px;
    }
    footer .flex-part {
        flex-wrap: wrap;
    }
    footer .flex-item {
        width: 100%;
        max-width: calc(100% / 2 - 9px);
    }
    .main_footer .flex-item:nth-child(1) {
        order: 3;
        max-width: unset;
    }
    .copy_right {
        text-align: center;
        color: #666;
        font-size: 13px;
        font-weight: 400;
        line-height: 1;
    }
    .main_footer .flex-part {
        gap: 18px;
    }
    .header_logo_outer {
        max-width: 40px;
    }
    .cms-heading h4, .cms-title {
        font-size: 28px;
    }
    .cms-content {
        padding: 60px 0;
    }
}
@media (max-width:767.98px) {
    .logo_outer {
        max-width: 100px;
    }
    .home_section h1 {
        font-size: 40px;
        text-align: center;
    }
    .home_section h1 span {
        font-size: 45px;
    }
    .home_section {
        padding: 50px 0;
    }
    .download_app {
        gap: 12px;
        align-items: center;
    }
    .badge_img{
        width: 80px;
    }
    .badge_outer {
        padding-top: 50px;
    }
    .flex-part {
        flex-direction: column;
        align-items: center;
    }
    .flex-item, footer .flex-item {
        width: 100%;
        max-width: unset;
    }
    .home_section .flex-item:nth-child(2) {
        order: 1;
    }
    .home_section .flex-item:nth-child(3) {
        order: 2;
    }
    .home_section .flex-item:nth-child(1) {
        order: 3;
    }
    footer {
        padding: 20px 0;
    }
    .main_footer .flex-item:nth-child(2) {
        order: 2;
    }
    .main_footer .flex-item:nth-child(3) {
        order: 1;
    }
    .social_outer {
        justify-content: center;
    }
    .down_title {
        text-align: center;
        margin-bottom: 12px;
    }
    .home_section::before, .home_section::after {
        min-height: unset;
    }
    .home_section::before {
        width: 260px;
        height: 226px;
        background-image: url(../img/bg-mobile-top-left.png);
        left: 0;
        background-position: left top;
    }
    .home_section::after {
        width: 140px;
        height: 415px;
        background-image: url(../img/bg-mobile-bottom-right.png);
        top: auto;
        bottom: 0;
        right: 0;
        background-position: right bottom;
    }
    .footer_link_outer, .social_outer {
        gap: 30px;
    }
    .cms-heading h4, .cms-title {
        font-size: 24px;
    }
    .cms-content {
        padding: 40px 0;
    }
}
@media (max-width:575.98px) {
    .badge_outer .title::before, .badge_outer .title::after {
        width: 50px;
    }
    .badge_outer .title {
        font-size: 14px;
        gap: 12px;
    }
    .cms-content h3, .cms-content-title {
        font-size: 18px;
    }
    .cms-content p {
        font-size: 14px;
    }
}