.hero-section {
    background-color: #F4F4F4;
    aspect-ratio: 1514 / 639;
    max-height: clamp(35rem, 100dvh, 43.75rem);
    display: flex;
    align-items: center;
    min-height: 35rem;
    width: 100%;
}
.hero-section h1 {
    font-size: 3.25rem;
}
.hero-section p {
    font-size: 1.1rem;
}

.banner__image img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.engagement-model h2,
.case-studies h2,
.blogs-section h2 {
    color: #7a2b2e;
}
.model__item__content h5 {
    font-family: 'Poppins';
    font-weight: 600;
}
.model__item__content p {
    line-height: 24px;
    margin-bottom: 6px;
}
.model__item__image img {
    max-width: 90px;
    height: auto;
}
.model__item:nth-child(2):before,.model__item:nth-child(2):after {
    position: absolute;
    content: "";
    height: 100%;
    border: 1px dashed var(--primary-color);
    left: 43px;
}
.model__item:nth-child(2) {
    position: relative;
}
.model__item:nth-child(2):before {
    top: -100%;
    z-index: -1;
}
.model__item:nth-child(2):after {
    z-index: -1;
}

/*blogs css*/
.blogs-section .blog__card .blog__image img {
    object-fit: cover;
}
.blogs-section .card-lg .blog__image img {
    height: 596px;
}
.blogs-section .card-sm .blog__image img {
    height: 292px;
}
.blogs__header a {
    padding: 0.7rem 2.9rem;
    font-size: 14px;
    transition: .3s;
    font-weight: 700;
}
.blog__wrap {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.blog__card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.arrow__btn {
    width: 26px;
    height: 26px;
    transform: rotate(-45deg);
}
.blog__link__text{
    font-size:1.4rem;
    font-family: 'Lato';
}
.blog__card .badge {
    font-family: 'Lato', sans-serif;
}
.blogs__header a:hover {
    background: var(--primary-color);
    color: #fff;
}


/*case studies css*/
.case__study__card__image {
    height: 452px;
}
.case__study__cards .slick-arrow {
    width: 48px;
    height: 48px;
    backdrop-filter: blur(0px);
    font-size: 22px;
    color: #6e6e6e;
    z-index: 9;
    bottom: -80px;
}
.case__study__cards .slick-next {right: 9%;}
.case__study__cards .slick-prev {
    right: 13%;
}
.case__study__cards .slick-list.draggable {
    padding-right: 12%;
    padding-left: 5%;
}


@media only screen and (max-width: 575px) {
    .hero-section{
        min-height: unset;
        max-height: unset;
    }
    .hero-section h1 {
        font-size: 2.3rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .model__item:nth-child(2):before {
    }
    
    .case__study__cards .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    
    .case__study__card__image {
        height: 400px;
    }
    .case__study__cards .slick-next {
        right: 17px;
    }
    .case__study__cards .slick-prev {
        right: 70px;
    }
    .case__study__cards .slick-arrow {
        bottom: -64px;
    }

    
    .blog__wrap {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }
    .blog__card:first-child {
        grid-column: unset;
        grid-row: unset;
    }
}