@import url('../components/main_header.css');

/* Body */

#iphone13 {
    width: auto;
    height: 60vh;
    object-fit: contain;
}

.home-content-box{
    border: 0.2vw solid #92A4A954;
    border-radius: 50px;
    height: 500px;
    width: 80%;
    background: rgba(35, 65, 73, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    padding: 0px 40px 0px 40px;
    margin: 30px auto 30px auto;
}

.home-content-text{
    height: auto;
    width: 70%;
    margin: auto;
}

.home-content-title:dir(rtl){
    padding-left: 40px;
}

.home-content-title:dir(ltr){
    padding-right: 40px;
}

.home-content-title{
    border-bottom: 2px solid #fff;
    width: fit-content;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.home-content-title h3{
    color: #E0EEF2;
    font-size: 2vw;
    font-weight: 500 !important;
}
.home-content-body p{
    color: #E0EEF2;
    font-size: 1.5vw;
    font-weight: 500 !important;
}


.home-content-image{
    padding-top: 100px;
    padding-right: 40px;
    padding-left: 40px;
}

.home-content-image img{
    height: 100%;
    width: auto;
}

.home-content-button{
    margin-top: 30px;
}

.home-content-button a{
    color: #E0EEF2;
    font-size: 12px;
    padding: 5px 10px;
    border: 0.1vw solid #C1DBE2;
    border-radius: 50px;
    background-color: #FFFFFF17;
    width: fit-content;
    transition: 0.3s;
}

.home-content-button a:hover{
    background-color: #46859667 !important;
    transition: 0.3s;
}

.partnerTitle{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* End Body */


/* CSS for Desktop size above */
/* ... */

/* For tablet devices */
@media(max-width: 768px) {

    .home-content-box{
    }

    .home-content-text, .home-content-image {
    }

    .home-content-image {
    }

    .home-content-button a{
    }
}

/* For mobile devices */
@media(max-width: 480px) {

    .home-content-box{
        border-radius: 20px;
        padding: 40px;
        position: relative;
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .home-content-text{
        width: 100%;
    }

    .home-content-title h3 {
        font-size: 24px;
    }

    .home-content-body p {
        font-size: 16px;
    }

    .home-content-image{
        display: none;
    }

    .home-content-button a {
        font-size: 14px;
        padding: 10px 20px;
    }
}
