.home_hero_sides {
    display: flex;
    position: relative;
    z-index: 9999999;
}

.home_hero_sides > div {
    width: 50%;
}

.home_hero_left {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    padding-left: 100px;
    padding-top: 70px;
}

.home_hero_item {
    display: flex;
    gap: 25px;
    box-shadow: 0px 4px 15.6px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    background: white;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home_hero_item img {
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 15px;
}

.home_hero_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

p.home_hero_title {
    font-size: 20px;
    font-weight: 700;
    color: #202844;
}

p.home_hero_desc {
    font-size: 14px;
    font-weight: 400;
    color: #6F7F7A;
    margin-top: 8px;
    margin-bottom: 11px;
}

.home_hero_things {
    display: flex;
    gap: 10px;
}

.home_hero_things a {
    color: #4D4D4D;
    background: #ecede7;
    padding: 15px;
    border-radius: 25px;
}

.home_hero {
    overflow: hidden;
    padding: 50px 0px;
    padding-top: 150px;
    position: relative;
}

.home_hero_item.first {position: relative;z-index: 3;left: 30%;}

.home_hero_item.second {
    position: relative;
    margin: -70px 0px;
    z-index: 2;
    left: 20%;
}

.home_hero_item.third {
    position: relative;
    z-index: 1;
    left: 10%;
}

.home_hero_left h3 {
    color: #16384C;
    font-size: 58px;
    font-weight: 700;
}

.home_hero_left h4 {
    font-size: 58px;
    font-weight: 700;
    background: linear-gradient(#14374B, #194259);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     /* Drop shadow */
}

.home_hero_left p {
    font-size: 20px;
    max-width: 580px;
    margin-top: 15px;
    margin-bottom: 54px;
}

.home_hero_left a {
    background: #14374B;
    max-width: 280px;
    color: white;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
}

.hero_gradient {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /* background: red; */
    background: linear-gradient(169deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 87%);
}

.home_hero .grid-item {
    border: 1px solid #f6f6f6;
    transition: all 2s ease;
}

.home_hero .grid-item.active {
    background: #e6e6e6;
}

.home_hero_right:hover .home_hero_item {
    left: 0px;
    position: relative;
    margin: 10px 0px;
}