body {
    background-color: white;
    font-family: Tajawal;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.navbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    padding-inline-start: 30px;
    padding-block-end: 30px;
    height: 80px;
    margin: 0px;
    box-sizing: border-box;
    background-color: white;
    font-family: Tajawal;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logoImage {
    width: 60px;
    height: 60px;
}

.lang {
    color: green;
    padding: 8px 20px 8px 20px;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: green;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
}

.main {
    box-sizing: border-box;
    padding: 22px;
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    width: 100%;
}


.slogen {
    font-size: 60px;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 26px;
}

.details {
    font-size: 19px;
    line-height: 180%;
    letter-spacing: 0.8px;
    color: rgb(44, 44, 44);
    font-weight: 300;
    margin-top: 12px;
}

.detailsSmall {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.8px;
    color: rgb(44, 44, 44);
    font-weight: 300;
    margin-top: 12px;
}

.download {
    text-decoration: none;
    color: black;
    width: 400px;
    height: 70px;
    display: flex;
    align-items: center;
    border-width: 1px;
    border-color: black;
    border-style: solid;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
}


.icon {
    width: 40px;
    height: 40px;
    margin-inline-end: 16px;
}

.mainImage {
    width: 500px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 30px;
    aspect-ratio: 1/1;
}

.mainGallery {
    box-sizing: border-box;
    padding: 22px;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: 100%;
}
.title{
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 16px;
}
.gallery {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.galleryItem {
    flex: 1;
    flex-direction: column;
    font-weight: 400;
    font-size: 22px;
}

.galleryImage{
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 16px;
    border-radius: 8px;
    object-fit: cover;
}
.footer{
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 16px;
    color: black;
    box-sizing: border-box;
    font-weight: 400;
}
.textMedium{
    font-weight: 400;
    font-size: 20px;
}
.contactItem{
    text-decoration: none;
    color: black;
    font-size: 24px;
    font-weight: 500;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.contactIcon{
    width: 24px;
    height: 24px;
    margin-inline-end: 16px;
}
@media only screen and (max-width: 600px) {
    .navbar{
        padding: 0px 12px 0px 12px;
    }
    .main {
        padding: 22px;
        display: flex;
        flex-direction: column;
    }

    .mainImage {
        width: 100%;
        padding: 0px;
        margin-top: 8px;
    }

    .slogen {
        font-size: 60px;
        font-weight: 800;
        margin-top: 8px;
        margin-bottom: 26px;
    }

    .download {
        width: 100%;
        margin-bottom: 16px;
    }
    .gallery{
        flex-direction: column;
    }
}