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

@font-face {
    font-family: myFont;
    src: url(../font/ITC\ Avant\ Garde\ Gothic\ Std\ Demi.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background-color: #F2F2F2;
}

:root {
    --primary-bg-color: #FF5349;
}

.wrapper {
    background-color: var(--primary-bg-color);
}

.container_Div {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Logo_Section */

.logoDiv {
    display: flex;
    justify-content: center;
}

.logoDiv img {
    width: 12rem;
    padding: 30px 0 0;
}

/* Hero_Section */

.main_Div {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;

}

.content_Div {
    width: 50%;
    padding: 0 0 100px;
}

.content_Div h1 {
    color: #fafafa;
    font-family: myFont;
    font-size: 54px;

}

.content_Div p {
    padding: 16px 0 20px;
    color: #fafafa;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
}

.content_Div button,
.reason_text>button {
    background-color: #F2F2F2;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
}

.content_Div button a,
.reason_text>button a {
    font-size: 12px;
    font-family: myFont;
    color: var(--primary-bg-color);
    text-decoration: none;
}

.right_side {
    display: flex;
    justify-content: right;
    width: 50%;
}

.image_Div {
    bottom: -60px;
    position: relative;
}

.image_Div img {
    width: 320px;
    z-index: 0;

}

.noti1 {
    background-color: #ffffff;
    padding: 16px 22px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    top: 30px;
    left: -60px;
    font-size: 15px;
    color: #1A293C;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    z-index: 1;
}

.noti2 {
    background-color: #ffffff;
    padding: 16px 22px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    bottom: 120px;
    right: 8px;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    color: #1A293C;
    font-weight: 600;
    z-index: 1;
}

@media (max-width: 1050px) {
    .content_Div h1 {
        color: #fafafa;
        font-family: myFont;
        font-size: 50px;

    }

}

@media (max-width: 992px) {
    .logoDiv img {
        padding: 30px 0;
    }

    .main_Div {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .content_Div {
        width: 100%;
        padding-bottom: 40px;
    }

    .content_Div h1 {
        font-size: 42px;
    }

    .content_Div p {
        font-size: 13px;
        padding: 12px 0 18px;
    }

    .right_side {
        width: 100%;
        justify-content: center;
    }

    .image_Div img {
        width: 280px;
    }

    .image_Div {
        bottom: 0;
    }

    .noti1 {
        top: 28px;
        left: -60px;
        font-size: 14px;
        padding: 14px 18px;
    }

    .noti2 {
        bottom: 106px;
        right: 4px;
        font-size: 14px;
        padding: 14px 18px;
    }
}

@media (max-width: 576px) {

    .container_Div {
        padding: 0 40px;
    }

    .logoDiv img {
        width: 9rem;
    }

    .content_Div h1 {
        font-size: 34px;
    }

    .content_Div p {
        font-size: 12px;
    }

    .content_Div button {
        padding: 10px 28px;
    }

    .image_Div img {
        width: 240px;
    }

    .noti1 {
        top: 24px;
        left: -38px;
        font-size: 11px;
        padding: 10px 14px;
    }

    .noti2 {
        bottom: 90px;
        right: 12px;
        font-size: 11px;
        padding: 10px 14px;
    }
}

@media (max-width: 400px) {
    .container_Div {
        padding: 0 20px;
    }
}

/* Card_Section */

.card_text {
    margin: 90px 0 40px;
    text-align: center;
}

.card_text h1 {
    font-size: 42px;
    font-family: "Outfit", sans-serif;
    color: #282722;
    font-weight: 600;
    letter-spacing: -2px;

}

.card_text p {
    color: #222222;
    margin-top: 12px;
    font-family: myFont;
    font-size: 14px;
}

.cards_Div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;

}

.card {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 28px 52px;
    box-shadow:
        4px 4px 4px -1px rgba(0, 0, 0, 0.1),
        -4px -4px 4px -1px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 12px;

}

.card:hover {
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.12),
        -8px -8px 16px rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.card h4 {
    font-size: 18px;
    color: #1A293C;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    letter-spacing: -1px;

}

.card p {
    font-size: 12px;
    font-family: "Outfit", sans-serif;
}

@media (max-width: 1260px) {
    .cards_Div {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media (max-width: 880px) {
    .cards_Div {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .card_text h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .card_text p {
        font-size: 13px;
    }

    .cards_Div {
        gap: 30px;
    }

    .card {
        padding: 24px 30px;
    }

    .card h4 {
        font-size: 16px;
    }

    .card p {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .card_text {
        margin: 60px 0 30px;
    }

    .card_text h1 {
        font-size: 26px;
        letter-spacing: -1px;
    }

    .card_text p {
        font-size: 14px;
    }

    .cards_Div {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .card {
        padding: 20px;
        gap: 10px;
    }

    .card h4 {
        font-size: 15px;
    }

    .card p {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {

    .card_text h1 {
        font-size: 24px;
    }

    .card_text p {
        font-size: 12px;
    }


    .cards_Div {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Click_Section */

.Click-section {
    margin-top: 80px;

}

.two_coloum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.mobile_image {
    width: 56%;
    width: 334px;
    height: 340px;
    background-color: var(--primary-bg-color);
    border-radius: 50%;
    padding: 0 20px;
    display: flex;
    position: relative;
}

.mobile_image .imageDiv1 img {
    width: 240px;
    position: relative;
    top: -20px;
    left: -50px;
    z-index: 1;
}

.mobile_image .imageDiv2 img {
    width: 320px;
    position: absolute;
    top: -56px;
    left: 96px;
    z-index: 1;
}

.right_coloum {
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.right_coloum h1 {
    color: #222222;
    font-family: myFont;
    font-size: 36px;
    letter-spacing: -2px;
}

.right_coloum p {
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    color: #525252;
}

.right_card {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 10px;
    box-shadow:
        4px 4px 4px -1px rgba(0, 0, 0, 0.1),
        -4px -4px 4px -1px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.right_card:hover {
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.12),
        -8px -8px 16px rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.right_card h4 {
    font-size: 16px;
    color: #222222;
    font-weight: 600;
    font-family: myFont;
    letter-spacing: -1px;
}

@media (max-width: 992px) {
    .Click-section {
        margin-top: 100px;
    }

    .two_coloum {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .mobile_image {
        width: 290px;
        height: 290px;
        margin-bottom: 20px;
    }

    .mobile_image .imageDiv1 img {
        width: 220px;
        top: -32px;
        left: -48px;
    }

    .mobile_image .imageDiv2 img {
        width: 280px;
        top: -54px;
        left: 88px;
    }

    .right_coloum {
        width: 100%;
        padding: 0;
    }

    .right_coloum h1 {
        font-size: 32px;
    }

    .right_coloum p {
        font-size: 13px;
    }

    .right_coloum>h1>br {
        display: none;
    }
}

@media (max-width: 810px) {
    .right_coloum>h1>br {
        display: none;
    }

    .right_coloum h1 {
        font-size: 28px;
    }
}

@media (max-width: 648px) {
    .two_coloum {
        gap: 40px;
    }

    .Click-section {
        margin-top: 100px;
    }

    .mobile_image {
        width: 240px;
        height: 240px;
    }

    .mobile_image .imageDiv1 img {
        width: 180px;
        top: -32px;
        left: -48px;
    }

    .mobile_image .imageDiv2 img {
        width: 240px;
        top: -60px;
        left: 66px;
    }

    .right_coloum {
        gap: 16px;
    }

    .right_coloum h1 {
        font-size: 24px;
    }

    .right_coloum>h1>br {
        display: none;
    }

    .right_coloum p {
        font-size: 12px;
        line-height: 1.5;
    }

    .right_card {
        padding: 14px 12px;
    }

    .right_card h4 {
        font-size: 14px;
    }

    .right_card p {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .two_coloum {
        gap: 40px;
    }

    .Click-section {
        margin-top: 100px;
    }

    .mobile_image {
        width: 200px;
        height: 200px;
    }

    .mobile_image .imageDiv1 img {
        width: 150px;
        top: -28px;
        left: -44px;
    }

    .mobile_image .imageDiv2 img {
        width: 200px;
        top: -50px;
        left: 56px;
    }
}

/* App_Section */

.app_Div {
    margin-top: 80px;
    display: grid;
    text-align: center;
    gap: 24px;
}

.app_Div h1 {
    color: #222222;
    font-family: myFont;
    font-size: 36px;
    letter-spacing: -2px;
}

.app_Div>p {
    font-family: myFont;
    font-size: 10px;
    color: #222222;
}

.number_Div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.number_Div p {
    font-family: "Outfit";
    font-weight: 600;
    font-size: 24px;
}


.number_Div span {
    text-align: center;
    background-color: #8F8F8F;
    width: 220px;
    height: 1px;
}

.app_card_DIv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
}

.app_cards {
    padding: 22px 38px;
    box-shadow:
        4px 4px 4px -1px rgba(0, 0, 0, 0.1),
        -4px -4px 4px -1px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app_cards h4 {
    font-size: 16px;
    color: #222222;
    font-weight: 600;
    font-family: myFont;
    letter-spacing: -1px;
}

.app_cards p {
    font-family: myFont;
    font-weight: 600;
    color: #222222;
    font-size: 10px;
}

.app_cards:hover {
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.12),
        -8px -8px 16px rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .app_Div h1 {
        font-size: 32px;
    }

    .number_Div span {
        width: 180px;
    }

    .app_card_DIv {
        justify-content: center;
        gap: 20px;
    }

    .app_cards {
        flex: 1 1 45%;
        min-width: 220px;
    }

    .app_card_DIv {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 769px) {
    .app_Div h1 {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .number_Div span {
        width: 120px;
    }

    .number_Div {
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .app_card_DIv {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .number_Div p {
        font-family: "Outfit";
        font-weight: 600;
        font-size: 24px;
    }

    .number_Div span {
        width: 80px;
    }

    .number_Div p {
        font-size: 22px;
    }

}

/* Reason-Section */

.red_wrapper {
    max-width: 1500px;
    margin: 80px auto 0;
    padding: 0 60px;
}

.container {
    background-color: var(--primary-bg-color);
    padding: 60px 70px 0px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    gap: 30px;

}

.reason_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason_text h1 {
    font-family: myFont;
    color: #ffffff;
    font-size: 40px;
    letter-spacing: -1px;
}

.reason_text>p {
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}

.reason_text>button {
    width: fit-content;
}

.reason_image {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.phone_mockup {
    display: flex;
}

.phone_mockup img {
    width: 100%;
}

.phone_mockup.small {
    width: 220px;
    overflow: hidden;

}

.phone_mockup.large {
    width: 240px;
    overflow: hidden;

}

@media (max-width: 1210px) {
    .phone_mockup.small {
        width: 180px;
    }

    .reason_text h1 {
        font-size: 36px !important;
    }

    .phone_mockup.large {
        width: 200px;
    }
}

@media (max-width: 992px) {

    .red_wrapper {
        padding: 0 40px;
    }

    .container {
        padding: 50px 50px 0;
        flex-direction: column;
        text-align: center;
    }

    .reason_text {
        align-items: center;
    }

    .reason_text h1 {
        font-size: 34px !important;
    }

    .reason_text>p {
        font-size: 13px;
        max-width: 600px;
    }

    .reason_text>button {
        align-self: center;
    }

    .reason_image {
        margin-top: 40px;
        justify-content: center;
    }

    .phone_mockup.small {
        width: 180px;
    }

    .phone_mockup.large {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .red_wrapper {
        padding: 0 25px;
    }

    .container {
        padding: 40px 40px 0;
    }

    .reason_text h1 {
        font-size: 28px !important;
    }

    .reason_text>p {
        font-size: 12px;
    }

    .reason_text>button {
        padding: 10px 24px;
    }

    .phone_mockup.small {
        width: 160px;
    }

    .phone_mockup.large {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 30px 25px 0;
    }

    .reason_text h1 {
        font-size: 22px !important;
    }

    .reason_text>p {
        font-size: 11px;
    }

    .phone_mockup.small {
        width: 120px;
        transform: rotate(-6deg);
    }

    .phone_mockup.large {
        width: 140px;
        transform: rotate(4deg);
    }
}

@media (max-width: 400px) {
    .container {
        padding: 25px 20px 0;
    }

    .reason_text h1 {
        font-size: 18px !important;
    }

    .reason_text>p {
        font-size: 10px;
    }

    .reason_text>button {
        font-size: 12px;
        padding: 8px 18px;
    }

    .phone_mockup.small {
        width: 100px;
    }

    .phone_mockup.large {
        width: 120px;
    }
}

/* User_Section */

.users_card_text {
    margin: 80px 0 40px;
    text-align: center;
}

.users_card_text h1 {
    font-size: 34px;
    font-family: myFont;
    color: #282722;
    font-weight: 600;
    letter-spacing: -2px;

}

.users_cards_Div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;

}

.users_card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 10px;
    box-shadow:
        4px 4px 4px -1px rgba(0, 0, 0, 0.1),
        -4px -4px 4px -1px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 20px;

}

.users_card img {
    width: 100px;
}

.users_card:hover {
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.12),
        -8px -8px 16px rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}


.users_card p {
    font-size: 14px;
    font-family: "Outfit", sans-serif;
}

.users_Div {
    display: flex;
    gap: 16px;
}

.users_Div img {
    width: 30px;
    height: 30px;
}

.users_Div h4 {
    font-size: 12px;
    color: #212121;
    font-weight: 600;
    font-family: myFont;
    margin-bottom: 2px;
}

.users_Div p {
    font-size: 12px;
    color: #828487;
    font-family: "Outfit", sans-serif;
}

.see_more {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.see_more button {
    padding: 14px 44px;
    font-size: 16px;
    font-family: myFont;
    border-radius: 10px;
    box-shadow:
        4px 4px 4px -1px rgba(0, 0, 0, 0),
        -4px -4px 4px -1px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border: none;
    color: var(--primary-bg-color);
}


@media (max-width: 1280px) {
    .users_cards_Div {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;

    }

}

@media (max-width: 872px) {
    .users_cards_Div {
        display: grid;
        grid-template-columns: 1fr 1fr;

    }

    .users_card_text h1 {
        font-size: 32px;

    }

    .users_card p {
        font-size: 13px;
    }

    .users_card>img {
        width: 90px;
    }
}

@media (max-width: 620px) {
    .users_cards_Div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .users_card_text h1 {
        font-size: 26px;

    }

}

/* Download_Section */

.container_two {
    background-color: var(--primary-bg-color);
    padding: 60px 70px 0px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.download_Div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: end;
    margin-bottom: 8px;
}

.store_Div,
.google_Div {
    display: flex;
    gap: 20px;
    align-items: center;
}


.apple_Div {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #ffffff;
    border-radius: 26px;
    padding: 8px 14px 8px 10px;
    cursor: pointer;

}

.google_Div {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border-radius: 26px;
    padding: 8px 14px 8px 12px;
    cursor: pointer;

}

.apple_Div:hover,
.google_Div:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.apple_Div i {
    font-size: 22px;
}


.apple_Div p,
.google_text p {
    color: #000000;
    font-size: 6px;
    font-family: "Outfit", sans-serif;
    letter-spacing: 1px;

}

.apple_Div h4,
.google_text h4 {
    color: #000000;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-family: myFont;

}

.apple_text,
.google_text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.google_Div img {
    width: 22px;
}

@media (max-width: 1210px) {
    .phone_mockup.small {
        width: 180px;
    }

    .reason_text h1 {
        font-size: 36px;
    }

    .phone_mockup.large {
        width: 200px;
    }

    .apple_text,
    .google_text {
        align-items: flex-start;
    }
}

@media (max-width: 992px) {
    .red_wrapper {
        padding: 0 40px;
    }

    .container_two {
        padding: 50px 50px 0;
        flex-direction: column;
        text-align: center;
    }

    .download_Div {
        align-items: center;
    }


    .download_Div>p {
        font-size: 13px;
    }

    .store_Div {
        justify-content: center;

    }

    .phone_mockup.small {
        width: 180px;
    }

    .phone_mockup.large {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .red_wrapper {
        padding: 0 25px;
    }

    .container_two {
        padding: 40px 40px 0;
    }

    .download_Div>p {
        font-size: 12px;
    }

    .phone_mockup.small {
        width: 160px;
    }

    .phone_mockup.large {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .container_two {
        padding: 30px 25px 0;
    }

    .download_Div>p {
        font-size: 11px;
    }

    .phone_mockup.small {
        width: 120px;
        transform: rotate(-6deg);
    }

    .phone_mockup.large {
        width: 140px;
        transform: rotate(4deg);
    }
}

@media (max-width: 400px) {
    .container_two {
        padding: 25px 20px 0;
    }

    .download_Div>p {
        font-size: 10px;
    }

    .store_Div {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .apple_Div p,
    .google_text p {
        color: #000000;
        font-size: 6px;
        font-family: "Outfit", sans-serif;
        letter-spacing: 1px;

    }

    .apple_Div h4,
    .google_text h4 {
        color: #000000;
        font-size: 10px;
        letter-spacing: 0.5px;
        font-family: myFont;

    }

    .google_Div img {
        width: 18px;
    }

    .apple_Div i {
        font-size: 18px;
    }

    .phone_mockup.small {
        width: 100px;
    }

    .phone_mockup.large {
        width: 120px;
    }
}