
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}


.pic-section {
    position: relative;
}
.blog-mob-image{
    display: none;
}
.blog-image {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
}
.main-text {
    padding: 35px 25px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

.blog-section {
    direction: rtl;
    width: 80%;
    margin: 32px auto;
    text-align: center;
}

.blog-header {
    color: #000;
    margin-top: 46px;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 24px;
}

.blog-detail {
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    margin-top: 16px;
    text-align: right;
}

.more-blogs {
    direction: rtl;
    text-align: right;
    width: 80%;
    margin: 32px auto;
}

.more-blogs .blog {
    width: 30%;
    background: #FFFFFF;
    box-shadow: 0px 0px 2px rgba(130, 136, 148, 0.16), 0px 4px 6px rgba(130, 136, 148, 0.16);
    border-radius: 8px;
}

.more-blogs .blog img {
    width: 100%;
}

.blog h2 {
    margin: 20px auto 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    width: 90%;
}

.blog p {
    font-family: 'Circular Std';
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    margin: 0 auto;
    color: #8D8D94;
    width: 90%;
}

.blog a {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    text-decoration-line: underline;
    margin: 20px auto;
    color: #FB5E07;
    width: 90%;
    padding-bottom: 20px;
}

@media (max-width: 600px)  {
    .pic-section {
        margin-top: 60px;
    } 
    .blog-mob-image{
        display: block;
        width: 100%;
    }
    .main-text{
        width: 75%;
    }
    .blog-image{
        display: none;
    }
    .more-blogs .blog{
        width: 90%;
        margin: 0 auto;
    }
}