* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}

.navbar-brand img {
    width: 90px;
}

.navbar {
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    height: 12vh;
    background-color: #e7e9eb;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.navbar-nav {
    display: flex;
    margin: auto;
    gap: 1rem;
    background-color: #e7e9eb;
    margin-right: 10px;
}

.nav-item .nav-link {
    font-family: Inter;
    font-weight: 700;
    font-size: 17px;
    color: black;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(0, 0, 0);
}

.banner {
    width: 100%;
    object-fit: cover;

}
.hero{
    position: relative;
}
.hero .content {
    position:absolute ;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    top: 30%;
    left: 5%;
    z-index: 99999999;
    color: white;
}

.hero .content h1 {
    z-index: 9999999999;
    overflow: hidden;
    color: #ed2424;
    font-size: 90px;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
}

.hero .content p {
    font-size: 30px;
    width: 79%;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
}

.menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.menu-items img {
    width: 150px;
    height: 150px;
    background-color: aliceblue;
    box-shadow: 3px 7px 10px rgba(0, 0, 0.3);

    border: 1px solid rgba(58, 31, 31, 0.5);
    border-radius: 50%;
}

.menu-items img:hover {
    transform: scale(1.02);
    cursor: pointer;
    box-shadow: 3px 10px 10px rgba(0, 0, 0.3);
}

.menu1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.menu1 p {
    font-size: 18px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
}

.container {
    border-bottom: 3px solid rgb(215, 215, 215);
}

.container h1 {
    padding: 1rem 2rem;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
}

.aboutyocto {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.aboutyocto img {
    width: 50%;
    height: 60vh;
    margin-top: -100px;
}

.aboutyocto p {
    text-align: justify;
    line-height: 30px;
    font-size: 17px;
}

.OurApp {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.Download {
    display: flex;
    gap: 10px;
    padding: 2rem 0;
}

.Download img {
    width: 200px;
    height: 350px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(184, 184, 184);
    border-radius: 5px;
}

.Download img:nth-child(1) {
    width: 200px;
    height: 350px;
    margin-top: 22px;
}

.Download img:nth-child(3) {
    width: 200px;
    height: 350px;
    margin-top: 22px;
}

.playstore {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.playstore img {
    width: 220px;
}

.playstore p {
    font-size: 18px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
}

.container-fluid {
    background-color: #e7e9eb;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 33vh;
}

.sitemap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sitemap a {
    color: black;
    text-decoration: none;
    font-family: Inter;
    font-weight: 600;

    font-size: 18px;
}

@media (max-width: 1367px) {
    .navbar-brand img {
        width: 85px;
        height: 64px;
    }

    .menu-items {
        gap: 2.5rem;
    }

    .Download img {
        width: 150px;
        height: 290px;
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
        border: 1px solid rgb(184, 184, 184);
        border-radius: 5px;
    }

    .Download img:nth-child(1) {
        width: 140px;
        height: 250px;
        margin-top: 20px;
    }

    .Download img:nth-child(3) {
        width: 140px;
        height: 250px;
        margin-top: 20px;
    }

    .aboutyocto img {
        width: 50%;
        margin-top: -80px;
    }

    .aboutyocto p {
        font-size: 15px;
    }
}
@media(max-width:925px){
    .hero .content{
top: 25%;
    }
    .hero .content h1{
        font-size: 50px;
    }
    .hero .content p{
        font-size: 20px;
    }
    .aboutyocto {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0rem;
    }
    .aboutyocto img {
        width: 100%;
        height: auto;
    }
    .OurApp{
        flex-direction: column;
    }
}
@media(max-width:734px){
    .footer{
        padding: 1rem ;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: auto;
        gap: 10px;
    }
    .sitemap{
        justify-content: flex-start;
        align-items: flex-start;
    }
}
@media(max-width:450px){
    .Download img:nth-child(1) {
        width: 110px;
        height: 200px;
        margin-top: 20px;
    }
    .Download img:nth-child(3) {
        width: 110px;
        height: 200px;
        margin-top: 20px;
    }
    .Download img {
        width: 110px;
        height: 200px;
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
        border: 1px solid rgb(184, 184, 184);
        border-radius: 5px;
    }
    .hero .content h1{
        font-size: 25px;
    }
    .hero .content p {
        font-size: 14px;
        width: 50%;
    }
    .hero .content {
        top: 15%;
    }
    .container{
        padding: 1rem;
    }
    .navbar{
        padding: 0px 10px 0px 0px;
    }
    .hero .content{
        display: none;
    }
}