@import url("https://fonts.cdnfonts.com/css/calibri-light");
@import url("https://fonts.cdnfonts.com/css/calibri-light");

body {
    direction: ltr;
    font-family: 'Calibri Light', sans-serif;
}

/* mixin for responsive it takes
    type : min or max
    size : 100px for the width of target screen
*/
a {
    text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

textarea {
    resize: none;
}

:root {
    scroll-behavior: smooth;
}

* {
    /* Track */
    /* Handle */
    /* Handle on hover */
}

*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
    background: #CADBCE;
    border-radius: 1rem;
}

*::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    position: relative;
    transition: all .3s ease-in-out;
    scroll-behavior: smooth;
}

input {
    outline: none;
    border: none;
}

input[type='date']::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    flex: 1 0 0;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

a {
    text-decoration: none;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
}

/* customize pages with main section*/
main {
    margin-top: 105px;
}

.content {
    padding: 10px 80px;
}

@media (max-width: 991px) {
    .content {
        padding: 10px 30px;
    }
}

@media (max-width: 600px) {
    .content {
        padding: 10px 15px;
    }
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: black;
    transition: all 0.6s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
    background: black;
}

#preloader .loader {
    width: 10%;
    height: 3.5px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-color: #726e6e;
}

@media (max-width: 991px) {
    #preloader .loader {
        width: 30%;
    }
}

#preloader .loader::after {
    content: '';
    width: 50px;
    height: 4.8px;
    background: #CADBCE;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: hitZak 1s ease-in-out infinite alternate;
}

@keyframes hitZak {
    0% {
        left: 0;
        transform: translateX(-1%);
    }

    100% {
        left: 100%;
        transform: translateX(-99%);
    }
}

.banner {
    background-color: #CADBCE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-block: 10px;
    max-height: 164px;
}

.banner__header {
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    line-height: 56.32px;
    color: #333333;
    margin: 0;
    max-width: max-content;
}

@media (max-width: 991px) {
    .banner__header {
        font-size: 32px;
        line-height: 47.42px;
    }
}

@media (max-width: 480px) {
    .banner__header {
        font-size: 20px;
        line-height: 29.64px;
    }
}

.banner__desc {
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #4C4C4C;
    margin: 0;
    max-width: 600px;
    text-align: center;
}

@media (max-width: 991px) {
    .banner__desc {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (max-width: 991px) {
    .banner__desc {
        font-size: 10px;
        line-height: 15px;
        max-width: 234px;
        text-align: center;
    }
}

nav {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    height: 98px;
    box-shadow: 0px 4px 8px 0px #0000000F;
    padding: 10px 80px;
}

@media (max-width: 991px) {
    nav {
        padding: 10px 20px;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 10px 15px;
    }
}

nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog {
    margin-top: 30px;
    margin-inline: 120px;
}

@media (max-width: 600px) {
    .blog {
        margin-top: 15px;
    }
}

.blog__mainly {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 991px) {
    .blog__mainly {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 32px;
    }
}

.blog__mainly__img {
    width: 60%;
    height: 296px;
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .blog__mainly__img {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .blog__mainly__img {
        width: 100%;
        height: 40y0px;
    }
}

.blog__mainly__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog__mainly__details {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 991px) {
    .blog__mainly__details {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .blog__mainly__details {
        width: 100%;
        gap: 8px;
    }
}

.blog__date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.blog__date__title {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #31764080;
    color: white;
    padding: 10px;
    font-family: "Oswald", sans-serif;
    font-weight: 400px;
    font-size: 16px;
}

.blog__date__time {
    font-family: "Oswald", sans-serif;
    font-weight: 400px;
    font-size: 16px;
    font-family: "Oswald", sans-serif;
    color: #13131680;
}

.blog__header {
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    line-height: 44px;
    color: #2C2C2C;
    margin: 0;
}

@media (max-width: 600px) {
    .blog__header {
        font-size: 18px;
        line-height: 24.92px;
    }
}

.blog__descreption {
    font-weight: 400px;
    font-size: 16px;
    font-family: "Oswald", sans-serif;
    line-height: 23.71px;
    color: #6E6E6E;
    max-height: 72px;
    overflow: hidden;
    margin-bottom: 0;
}

.blog__footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blog__footer__time {
    margin: 0;
    font-weight: 400px;
    font-size: 16px;
    font-family: "Oswald", sans-serif;
    line-height: 23.71px;
    color: #6E6E6E;
}

.blog__container {
    margin-block: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
}

.blog__container__card {
    width: calc((100% / 3) - 24px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .blog__container__card {
        width: calc((100% / 2) - 24px);
    }
}

@media (max-width: 600px) {
    .blog__container__card {
        width: 100%;
    }
}

.blog__container__card .image {
    width: 100%;
    height: 211px;
}

.blog__container__card .image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all .3s ease-out;
}

.blog__container__card .image img:hover {
    transform: scale(1.1);
}

.blog__container__card__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 10px;
}

@media (max-width: 991px) {
    .blog__container__card__details {
        gap: 5px;
    }
}

.blog__container__card__details .blog__date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.blog__container__card__details .blog__date__title {
    font-size: 14px;
}

.blog__container__card__details .blog__date__time {
    font-size: 14px;
}

.blog__container__card__details .blog__header {
    font-size: 24px;
}

.blog__container__card__details .blog__descreption {
    font-size: 16px;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .blog__container__card__details .blog__descreption {
        line-height: 1.5;
    }
}

.blog__container__card__details .blog__footer__time {
    font-size: 14px;
}

.blog__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 50px 25px;
    gap: 15px;
}

.blog__pagination__box {
    border: 1px solid #C4C4C4;
    border-radius: 5px;
    color: #89898B;
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    font-weight: 400;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .blog__pagination__box {
        width: 24px;
        height: 24px;
    }
}

.blog__pagination__prev {
    height: 40px;
    padding: 13px 26px 13px 26px;
    border: 1px solid #C4C4C4;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #89898B;
    font-weight: 400;
    font-size: 16px;
}

.blog__pagination__next {
    height: 40px;
    padding: 13px 26px 13px 26px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #317640;
    color: white;
    font-weight: 400;
    font-size: 16px;
}

@media (max-width: 600px) {

    .blog__pagination__prev,
    .blog__pagination__next,
    .blog__pagination__box {
        font-size: 12px;
    }
}

@media (max-width: 600px) {

    .blog__pagination__prev,
    .blog__pagination__next {
        width: 64px;
        height: 24px;
    }
}

.blog-details {
    margin-top: 50px;
}

.blog-details__header .title {
    font-family: "Oswald", sans-serif;
    color: #2C2C2C;
    font-weight: 700;
    font-size: 55px;
    text-align: center;
    max-width: 950px;
    line-height: 1.4;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .blog-details__header .title {
        font-size: 30px;
        max-width: 520px;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .blog-details__header .title {
        font-size: 22px;
        max-width: 300px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .blog-details__header__time {
        gap: 8px !important;
    }
}

.blog-details__header__time .blog__date__title {
    margin-right: 5px;
}

.blog-details__item {
    width: 100%;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .blog-details__item {
        margin-top: 15px;
    }
}

.blog-details__item__image {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .blog-details__item__image {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .blog-details__item__image {
        height: 182px;
    }
}

.blog-details__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details__item__details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.blog-details__item__details #result {
    font-family: 'Calibri Light', sans-serif !important;
    padding: 10px !important;
    background-color: transparent !important;
}

.blog-details__item__details .support-paragraph {
    background-color: transparent !important;
    font-family: 'Calibri Light', sans-serif !important;
}

.blog-details__item__details .descreption {
    font-size: 14px;
    background-color: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Calibri Light', sans-serif;
}

.blog-details__item__details .descreption p {
    max-width: 815px;
    font-size: 14px;
    font-weight: 200;
}

@media (max-width: 991px) {
    .blog-details__item__details .descreption p {
        width: 590px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .blog-details__item__details .descreption p {
        width: 294px;
        font-size: 16px;
    }
}

.blog-details__item__details .image-2 {
    width: 815px;
    height: 490px;
    border-radius: 8px;
    overflow: hidden;
    margin-block: 20px;
}

@media (max-width: 991px) {
    .blog-details__item__details .image-2 {
        width: 590px;
        height: 350px;
    }
}

@media (max-width: 600px) {
    .blog-details__item__details .image-2 {
        width: 294px;
        height: 176px;
    }
}

.blog-details__item__details .image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details__item__details .hedaer-2 {
    position: relative;
    padding-left: 30px;
    width: 815px;
    margin-block: 30px;
}

@media (max-width: 991px) {
    .blog-details__item__details .hedaer-2 {
        width: 590px;
    }
}

@media (max-width: 991px) {
    .blog-details__item__details .hedaer-2 {
        width: 294px;
    }
}

.blog-details__item__details .hedaer-2 p {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 32px;
    width: 750px;
}

@media (max-width: 991px) {
    .blog-details__item__details .hedaer-2 p {
        width: 570px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .blog-details__item__details .hedaer-2 p {
        width: 275px;
        font-size: 20px;
    }
}

.blog-details__item__details .hedaer-2::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 100px;
    left: 0%;
    background-color: #317640;
}

@media (max-width: 991px) {
    .blog-details__item__details .hedaer-2::before {
        height: 70px;
    }
}

.blog-details__recomended {
    margin-block: 30px;
}

.blog-details__recomended .header {
    font-weight: 600;
    font-size: 40px;
    font-family: "Oswald", sans-serif;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .blog-details__recomended .header {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.blog-details__recomended__container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .blog-details__recomended__container {
        row-gap: 24px;
    }
}

.blog-details__recomended__container__card {
    width: calc((100% / 3) - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px !important;
}

.blog-details__recomended__container__card .blog__container__card__details {
    gap: 8px;
}

@media (max-width: 991px) {
    .blog-details__recomended__container__card {
        width: calc((100% / 2) - 20px);
    }
}

@media (max-width: 600px) {
    .blog-details__recomended__container__card {
        width: 100%;
    }
}

.blog-details__recomended__container__card .blog__header {
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .blog-details__recomended__container__card .blog__header {
        line-height: 1.2;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .blog-details__recomended__container__card .blog__descreption {
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .blog-details__recomended__container__card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 600px) {
    .blog-details__recomended__container__card:nth-child(3) {
        display: flex;
    }
}

.blog-details__footer .header {
    font-size: 24px;
    font-family: "Oswald", sans-serif;
    color: #2C2C2C;
    font-weight: 500;
}

@media (max-width: 600px) {
    .blog-details__footer .header {
        font-size: 16px;
    }
}

.blog-details__footer .header p {
    margin-bottom: 0;
}

.blog-details__footer .header p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: #89898B;
}

.blog-details__footer__share .social-icons {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 600px) {
    .blog-details__footer__share .social-icons {
        gap: 10px;
    }
}

.blog-details__footer__share .social-icons img {
    width: 50px;
    height: 75px;
}

@media (max-width: 600px) {
    .blog-details__footer__share .social-icons img {
        width: 36px;
        height: 52px;
    }
}

.blog-details__footer__share .share-copy {
    cursor: pointer;
    position: relative;
    margin-top: 15px;
    width: 400px;
    height: 48px;
    padding-left: 20px;
    border-radius: 4px;
    border: 1px solid #34434B26;
    color: #8D9CA5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 600px) {
    .blog-details__footer__share .share-copy {
        width: 225px;
        height: 25px;
        font-size: 8px;
    }
}

.blog-details__footer__share .share-copy .share-icon {
    position: absolute;
    right: 5%;
    z-index: 0;
}

.blog-details__footer__tagged {
    margin-top: 30px;
    width: 370px;
}

@media (max-width: 600px) {
    .blog-details__footer__tagged {
        width: 295px;
    }
}

.blog-details__footer__tagged .suggestion {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-details__footer__tagged .suggestion .tagged__btn {
    padding: 12px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DDDDDD;
    color: #89898B;
    font-weight: 400;
    font-size: 16px;
    font-family: "Oswald", sans-serif;
}

@media (max-width: 600px) {
    .blog-details__footer__tagged .suggestion .tagged__btn {
        font-size: 12px;
    }
}

.survey {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 100px;
}

@media (max-width: 991px) {
    .survey {
        gap: 50px;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .survey {
        margin-top: 15px;
    }
}

.survey__header {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #333333;
}

@media (max-width: 991px) {
    .survey__header {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .survey__header {
        font-size: 16px;
    }
}

.survey__box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media (max-width: 600px) {
    .survey__box {
        gap: 5px;
    }
}

.survey__box__form {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.survey__box__form textarea {
    width: 525px;
    height: 120px;
    border-radius: 8px;
    border: 1px solid #686868;
}

@media (max-width: 600px) {
    .survey__box__form textarea {
        width: 100%;
        height: 64px;
    }
}

.survey__box .rating,
.survey__box .recommended {
    display: flex;
    align-items: center;
    gap: 32px;
    direction: rtl;
    padding-left: 15px;
    margin-bottom: 10px;
}

.survey__box .rating label,
.survey__box .recommended label {
    display: block;
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

@media (max-width: 600px) {

    .survey__box .rating label,
    .survey__box .recommended label {
        width: 22.5px;
        height: 22.5px;
    }
}

.survey__box .rating label::after,
.survey__box .recommended label::after {
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    content: "\f006";
    color: #8F8F8F;
    font-family: fontAwesome;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 40px;
}

.survey__box .rating input,
.survey__box .recommended input {
    display: none;
}

.survey__box .rating input:checked+label::after,
.survey__box .rating input:checked~label::after,
.survey__box .recommended input:checked+label::after,
.survey__box .recommended input:checked~label::after {
    content: "\f005";
    color: #FFD233;
}

.survey__box .instructor {
    display: flex;
    align-items: center;
    gap: 32px;
    direction: rtl;
    counter-reset: my-counter 6;
}

@media (max-width: 600px) {
    .survey__box .instructor {
        gap: 8px;
    }
}

.survey__box .instructor label {
    display: block;
    position: relative;
    cursor: pointer;
    width: 106px;
    height: 40px;
    counter-increment: my-counter -1;
}

@media (max-width: 600px) {
    .survey__box .instructor label {
        width: 40px;
    }
}

.survey__box .instructor label::after {
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    content: counter(my-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #686868;
    color: #333333;
    background-color: transparent;
    font-family: fontAwesome;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    font-size: 20px;
    margin-inline: 20px;
}

@media (max-width: 600px) {
    .survey__box .instructor label::after {
        font-size: 11px;
        margin-inline: 0px;
    }
}

.survey__box .instructor input {
    display: none;
}

.survey__box .instructor input:hover+label::after,
.survey__box .instructor input:hover~label::after {
    background-color: #CADBCE;
    color: black;
}

.survey__box .instructor input:checked+label::after,
.survey__box .instructor input:checked~label::after {
    background-color: #317640;
    color: white;
}

.survey .submit-survey {
    width: 70%;
    background-color: #317640;
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 32px;
    border-radius: 8px;
    margin: auto;
    margin-block: 30px;
    padding-block: 10px;
}

@media (max-width: 991px) {
    .survey .submit-survey {
        width: 100%;
        margin-block: 15px;
    }
}

@media (max-width: 600px) {
    .survey .submit-survey {
        width: 100%;
        font-size: 16px;
        margin-block: 15px;
    }
}

.submit-modal {
    padding: 20px 40px;
    width: 100%;
}

.submit-modal .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
}

.submit-modal .modal-content .modal-header {
    border-bottom: 0;
}

@media (max-width: 600px) {
    .submit-modal .modal-content .modal-header img {
        width: 40px;
        height: 40px;
    }
}

.submit-modal .modal-content .modal-body {
    text-align: center;
}

@media (max-width: 600px) {
    .submit-modal .modal-content .modal-body {
        padding: 0px;
    }
}

.submit-modal .modal-content .modal-body .header {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    font-family: "Oswald", sans-serif;
    color: #1C1C1A;
}

@media (max-width: 600px) {
    .submit-modal .modal-content .modal-body .header {
        font-size: 16px;
    }
}

.submit-modal .modal-content .modal-body .desc {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .submit-modal .modal-content .modal-body .desc {
        font-size: 8px;
    }
}

.submit-modal .modal-content .modal-footer {
    border-top: 0;
    width: 100%;
}

.submit-modal .modal-content .modal-footer .done-btn {
    width: 100%;
    background-color: #317640;
    color: white;
}

/*# sourceMappingURL=main-ltr.css.map */
.blog-image {
    /* border-radius:16px; */
}

.blog-image img {
    height:300px;
    transition:all .3s ease-in-out
}

.blog-image img:hover {
    transform:scale(1.05)
}

.blog-card {
    overflow:hidden;
    box-shadow:0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius:8px;
}

.blog-card .data {
    padding:16px;
}


.blog__container  {
    justify-content:flex-start;
    gap:16px;
}

@media (max-width: 991px) {
    .blog {
        margin-inline:40px;
    }
}
