@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}
body {
    background-color: rgb(255, 255, 255);
}
.main {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.about-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.about-container .heading {
    width: 50%;
    height: auto;
    display: block;
    justify-content: center;
    margin-top: 100px;
}
.about-container .heading h1 {
    font-size: 80px;
    font-weight: 700;
    text-align: center;
    color: #000000;
}
.about-container .heading p {
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    color: #000000;
    margin-top: 30px;
    line-height: 25px;
    animation: fadeInText 1.5s ease-in-out;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.mockup-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.mockup-container img {
    width: 35%;
    object-fit: cover;
    animation: reloadFromBottom 1.5s ease-in-out;
}

@keyframes reloadFromBottom {
    0% {
        transform: translateY(30%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.about1-container {
    width: 50%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-bottom: 20px;
    justify-content: center;
}
.about1-container .heading {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 20px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.about1-container .heading h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    text-align: center;
}
span {
    color: #aa832c;
}
.about1-container .heading p {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    margin-top: 30px;
    line-height: 25px;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}
.mission-vision-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.vision {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.vision {
    width: 800px;
    height: auto;
    background-color: #f8f8f8;
    margin: 30px;
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 100px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    padding: 50px;
}
.vision:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

@keyframes smallBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.text-frame {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}
.text-frame h3 {
    font-size: 25px;
    font-weight: 600;
    color: #aa832c;
    text-align: center;
}
.text-frame p {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    text-align: left;
    margin-top: 10px;
    line-height: 25px;
}
.about2-container {
    width: 100%;
    height: auto;
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}
.about2-container .heading {
    width: 100%;
    height: auto;
    padding: 20px;
    justify-content: center;
    display: block;
    flex-wrap: wrap;
}
.about2-container .heading h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    text-align: center;
}
.about2-container .heading p {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    margin-top: 30px;
    line-height: 25px;
    text-align: center;
}
.offer-list {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.offer {
    width: 500px;
    height: auto;
    background-color: #aa832c;
    border-radius: 30px;
    margin: 20px;
}
.offer p {
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 50px;
    line-height: 25px;
}
@keyframes appear {
    from {
        opacity: 0;
        scale:0.5;
    }
    to {
        opacity: 1;
        scale:1;
    }
}
.offer {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.about3-container {
    width: 50%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-bottom: 20px;
    justify-content: center;
    margin-top: 50px;
}
.about3-container .heading {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 20px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.about3-container .heading h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    text-align: center;
}
span {
    color: #aa832c;
}
.about3-container .heading p {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    margin-top: 30px;
    line-height: 25px;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}
.download-container {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 30px;
    margin-bottom: 50px;
}
.download-frame {
    width: 60%;
    height: auto;
    justify-content: center;
    background-color: #f8f8f8;
    display: flex;
    flex-wrap: wrap;
    border-radius: 80px;
    padding: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.download-frame {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}
.download-frame h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-align: center;
}
.download-frame p {
    font-size: 17px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: 20px;
    line-height: 30px;
    padding-left: 100px;
    padding-right: 100px;
}
.download-frame h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: 20px;
}
.download-buttons-footer {
    width: 100%;
    height: auto;
    margin-top: 30px;
    justify-content: center;
    display: flex;
}
.download-buttons {
    width: auto;
    height: auto;
    margin-left: 70px;
    margin-top: 30px;
    justify-content: left;
    display: flex;
}
.playstore {
    width: 240px;
}
.playstore img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}
.playstore img:hover {
    animation: bounce 0.5s ease-in-out;
}
.appstore {
    width: 240px;
}
.appstore img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}
.appstore img:hover {
    animation: bounce 0.5s ease-in-out;
}



@media (max-width: 1440px) {
    .about-container .heading {
        width: 75%;
    }
    .about-container .heading h1 {
        font-size: 60px;
    }
    .about-container .heading p {
        font-size: 15px;
    }
    .about1-container {
        width: 70%;
    }
    .about1-container .heading h2 {
        font-size: 40px;
    }
    .about1-container .heading p {
        font-size: 15px;
    }
    .text-frame h3 {
        font-size: 22px;

    }
    .text-frame p {
        font-size: 15px;
    }
    .about2-container .heading h2 {
        font-size: 40px;
    }
    .about2-container .heading p {
        font-size: 15px;
    }
    .offer p {
        font-size: 15px;
        margin: 30px;
    }
    .about3-container {
        width: 70%;
    }
    .about3-container .heading h2 {
        font-size: 40px;
    }
    .about3-container .heading p {
        font-size: 15px;
    }
    .download-frame h2 {
        font-size: 40px;
    }
    .download-frame p {
        font-size: 15px;
    }
    .download-frame h3 {
        font-size: 17px;
    }
    .playstore {
        width: 150px;
    }
    .appstore {
        width: 150px;
    }
}

@media (max-width: 1024px) {
    .about-container .heading {
        width: 90%;
        margin-top: 150px;
    }
    .mockup-container img {
        width: 55%;
        object-fit: cover;
        animation: reloadFromBottom 1.5s ease-in-out;
    }
    .about-container .heading h1 {
        font-size: 50px;
    }
    .about-container .heading p {
        font-size: 15px;
    }
    .about1-container {
        width: 70%;
    }
    .about1-container .heading h2 {
        font-size: 30px;
    }
    .about1-container .heading p {
        font-size: 15px;
    }
    .text-frame h3 {
        font-size: 20px;

    }
    .text-frame p {
        font-size: 15px;
    }
    .about2-container .heading h2 {
        font-size: 30px;
    }
    .about2-container .heading p {
        font-size: 15px;
    }
    .offer p {
        font-size: 15px;
        margin: 30px;
    }
    .about3-container {
        width: 70%;
    }
    .about3-container .heading h2 {
        font-size: 30px;
    }
    .about3-container .heading p {
        font-size: 15px;
    }
    .download-frame h2 {
        font-size: 30px;
    }
    .download-frame p {
        font-size: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .download-frame h3 {
        font-size: 17px;
    }
    .playstore {
        width: 150px;
    }
    .appstore {
        width: 150px;
    }
    .download-frame {
        width: 90%;
        border-radius: 50px;
        padding: 30px;;
    }

}


@media (max-width: 480px) {
    .about-container .heading {
        width: 90%;
    }
    .mockup-container img {
        width: 80%;
        object-fit: cover;
        animation: reloadFromBottom 1.5s ease-in-out;
    }
    .about-container .heading h1 {
        font-size: 35px;
    }
    .about-container .heading p {
        font-size: 15px;
    }
    .about1-container {
        width: 90%;
    }
    .about1-container .heading h2 {
        font-size: 30px;
    }
    .about1-container .heading p {
        font-size: 15px;
    }
    .text-frame h3 {
        font-size: 20px;

    }
    .text-frame p {
        font-size: 15px;
    }
    .about2-container .heading h2 {
        font-size: 30px;
    }
    .about2-container .heading p {
        font-size: 15px;
    }
    .offer p {
        font-size: 15px;
        margin: 30px;
    }
    .about3-container {
        width: 90%;
    }
    .about3-container .heading h2 {
        font-size: 30px;
    }
    .about3-container .heading p {
        font-size: 15px;
    }
    .download-frame h2 {
        font-size: 30px;
    }
    .download-frame p {
        font-size: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .download-frame h3 {
        font-size: 17px;
    }
    .playstore {
        width: 150px;
    }
    .appstore {
        width: 150px;
    }
    .download-frame {
        width: 100%;
        border-radius: 50px;
        padding: 30px;;
    }
    .vision {
        border-radius: 30px;
        margin: 20px;
    }
    .offer {
        margin: 20px;
    }

}
