
@font-face {
    font-family: 'CairoBold';
    src: url('webfonts/Cairo-Bold.woff2') format('woff2'),
    url('webfonts/Cairo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CairoExtraLight';
    src: url('webfonts/Cairo-ExtraLight.woff2') format('woff2'),
    url('webfonts/Cairo-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CairoRegular';
    src: url('webfonts/Cairo-Regular.woff2') format('woff2'),
    url('webfonts/Cairo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CairoBlack';
    src: url('webfonts/Cairo-Black.woff2') format('woff2'),
    url('webfonts/Cairo-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CairoSemiBold';
    src: url('webfonts/Cairo-SemiBold.woff2') format('woff2'),
    url('webfonts/Cairo-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


.MyBody {
    margin: 0;
    font-family: 'CairoRegular', serif;
    background-color: #0d1b2a;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.MyHeader {
    position: relative;
    flex: 1;
    background: url('../img/bg_2.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background: #0000009d;
    flex-wrap: wrap;
}

.logo {
    padding: 5px 0;
    height: 35px;
}

.lang {
    color: white;
    font-family: 'CairoBold', serif;
    text-decoration: none;
    margin-inline-start: 30px;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.quote-btn {
    font-family: 'CairoRegular', serif;
    background-color: #c9ff89;
    color: #0000009d;
    border: none;
    width: 115px;
    height: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.quote-btn:hover {
    background-color: #bdf081;
}

.JoinUsToday {
    margin-top: 20px;
    font-family: 'CairoBold', serif;
    background-color: #ffffff;
    color: #532eef;
    border: none;
    width: 200px;
    height: 45px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}


.JoinUsToday:hover {
    background-color: #eaeaea;
}

.login-btn {
    color: white;
    text-decoration: none !important;
    font-size: 16px;
    background: #532eef;
    border: none;
    min-width: 120px;
    height: 40px;
    cursor: pointer;
    border-radius: 8px;
}

.login-btn:hover
{
    background: #5831ff;
    transition: 0.5s;
}

.CloseButton {
    color: white;
    text-decoration: none;
    font-size: 16px;
    background: #59616f;
    border: none;
    min-width: 100px;
    height: 40px;
    cursor: pointer;
    border-radius: 8px;
}

.CloseButton:hover
{
    background-color: #6f798b;
    transition: 0.5s;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    margin-inline-start: 60px;
    max-width: 50rem;
}

.hero h1 {
    font-family: 'CairoBold', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #c9ff89;
}

.hero h1 span {
    margin-inline-start: 10px;
    color: #ffffff;
}

.hero .text {
    font-family: 'CairoRegular', serif;
    line-height: 1.8;
    font-size: 1.25rem;
}

.AppStoreButt {
    margin-top: 30px;
    height: 50px;
    cursor: pointer;
}

/*.discover-btn {*/
/*    background-color: #ffd700;*/
/*    color: #ffffff;*/
/*    border: none;*/
/*    padding: 0.75rem 1.5rem;*/
/*    font-size: 1rem;*/
/*    font-weight: bold;*/
/*    cursor: pointer;*/
/*    border-radius: 0.5rem;*/
/*    transition: background-color 0.3s;*/
/*}*/

/*.discover-btn:hover {*/
/*    background-color: #e6b800;*/
/*}*/

.parent_statistics {
    display: flex;
    flex-direction: column;
}

.statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    margin: 1rem;
    flex: 1 1 15rem;
}

.stat h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #c9ff89;
}

.stat p {
    font-size: 1.25rem;
    color: #adb5bd;
}

.footer {
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 5px;
    flex-wrap: wrap; /* Important for responsiveness */
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.footer-copy {
    text-align: right;
}

@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        order: 1;
        margin-bottom: 10px;
    }

    .footer-copy {
        order: 2;
    }
}

/* iPhone 8 screen width is 375 */
@media only screen and (max-width:375px) {


    .quote-btn {
        display: none;
    }

    .hero-content {
        background-color: rgba(0, 0, 0, 0.26);
        border-radius: 20px;
        padding: 8px;
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.8;
        font-size: 0.65rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 0.8rem;
    }


    .JoinUsToday {
        display: none;
        width: 150px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* iPhone 13 screen width is 390.0     HERE*/
@media only screen and (min-width:376px) and (max-width:390px) {

    .quote-btn {
        display: none;
    }

    .hero-content {
        background-color: rgba(0, 0, 0, 0.26);
        border-radius: 20px;
        padding: 8px;
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.8;
        font-size: 0.65rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 0.8rem;
    }


    .JoinUsToday {
        display: none;
        width: 150px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* iPhone 14 Pro screen width is 393.0 */
@media only screen and (min-width:391px) and (max-width:393px) {

    .quote-btn {
        display: none;
    }

    .hero-content {
        background-color: rgba(0, 0, 0, 0.26);
        border-radius: 20px;
        padding: 8px;
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.8;
        font-size: 0.65rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 0.8rem;
    }

    .JoinUsToday {
        display: none;
        width: 150px;
        height: 35px;
        font-size: 0.8rem;
    }

}

/* iPhone 11 screen width is 414.0 */
@media only screen and (min-width:394px) and (max-width:414px) {

    .quote-btn {
        display: none;
    }

    .hero-content {
        background-color: rgba(0, 0, 0, 0.26);
        border-radius: 20px;
        padding: 8px;
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.8;
        font-size: 0.65rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 0.8rem;
    }


    .JoinUsToday {
        display: none;
        width: 150px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* iPhone 11 Pro Max screen width is 428.0 */
@media only screen and (min-width:415px) and (max-width:428px) {

    .quote-btn {
        display: none;
    }

    .hero-content {
        background-color: rgba(0, 0, 0, 0.26);
        border-radius: 20px;
        padding: 8px;
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.7;
        font-size: 0.80rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 1rem;
    }


    .JoinUsToday {
        display: none;
        width: 150px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* iPhone 14 Pro Max screen width is 430.0 */
@media only screen and (min-width:429px) and (max-width:430px) {

    .quote-btn {
        display: none;
    }

    .hero-content {
        background-color: rgba(0, 0, 0, 0.26);
        border-radius: 20px;
        padding: 8px;
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.7;
        font-size: 0.80rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 1rem;
    }


    .JoinUsToday {
        display: none;
        width: 150px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* Surface Dou screen width is 540.0 */
@media only screen and (min-width:431px) and (max-width:540px) {

    .quote-btn {
        display: none;
    }

    .hero-content {
        background-color: rgba(0, 0, 0, 0.26);
        border-radius: 20px;
        padding: 8px;
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.7;
        font-size: 0.80rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 1rem;
    }


    .JoinUsToday {
        display: none;
        width: 150px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* iPad Mini screen width is 768.0 */
@media only screen and (min-width:541px) and (max-width:768px) {

    .quote-btn {
        display: none;
    }

    .hero-content {
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.7;
        font-size: 0.80rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 1rem;
    }


    .JoinUsToday {
        display: none;
        width: 180px;
        height: 38px;
        font-size: 0.8rem;
    }
}

/* iPad Air Pro screen width is 820.0 */
@media only screen and (min-width:769px) and (max-width:820px) {

    .quote-btn {
        display: none;
    }

    .hero-content {
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.7;
        font-size: 0.80rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 1rem;
    }


    .JoinUsToday {
        display: none;
        width: 190px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Surface Pro screen width is 912.0 */
@media only screen and (min-width:821px) and (max-width:912px)  {

    .hero-content {
        margin-inline-start: 0;
        max-width: 28rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .text {
        font-family: 'CairoRegular', serif;
        line-height: 1.7;
        font-size: 0.80rem;
    }

    .AppStoreButt {
        margin-top: 20px;
        height: 40px;
        cursor: pointer;
    }

    .stat h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #c9ff89;
    }

    .stat p {
        font-size: 1rem;
    }

    .JoinUsToday {
        /*display: none;*/
        width: 200px;
        height: 45px;
        font-size: 0.9rem;
    }
}


/*    !* Media Queries for Responsive Design *!*/
/*@media (max-width: 768px) {*/
/*    .hero h1 {*/
/*        font-size: 2.5rem;*/
/*    }*/

/*    .hero p {*/
/*        font-size: 1rem;*/
/*    }*/

/*    .hero-content {*/
/*        margin: 0;*/
/*    }*/

/*    .discover-btn {*/
/*        padding: 0.5rem 1rem;*/
/*        font-size: 0.875rem;*/
/*    }*/

/*    .quote-btn {*/
/*        width: 100px;*/
/*        height: 30px;*/
/*    }*/

/*    .stat h2 {*/
/*        font-size: 2.5rem;*/
/*    }*/

/*    .stat p {*/
/*        font-size: 1rem;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .nav ul {*/
/*        flex-direction: column;*/
/*        align-items: flex-start;*/
/*    }*/

/*    .hero h1 {*/
/*        font-size: 2rem;*/
/*    }*/

/*    .hero p {*/
/*        font-size: 0.875rem;*/
/*    }*/

/*    .hero-content {*/
/*        margin: 0;*/
/*    }*/

/*    .discover-btn {*/
/*        padding: 0.5rem 0.75rem;*/
/*        font-size: 0.75rem;*/
/*    }*/

/*    .quote-btn {*/
/*        width: 100px;*/
/*        height: 30px;*/
/*    }*/

/*    .stat h2 {*/
/*        font-size: 2rem;*/
/*    }*/

/*    .stat p {*/
/*        font-size: 0.875rem;*/
/*    }*/
/*}*/
