.hero_section.hero_companies .hero_overlay {
    background: linear-gradient(-145deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 1;
}
.hero_section.hero_companies::before{
    display: none;
}
.hero_section.hero_companies .hero_content .content_row .intro_header{
    max-width: 585px;
    margin-bottom: 10px;
}
.hero_section.hero_companies .hero_content .content_row .intro_header .tagline{
    color: #80C72B;
    margin-bottom: 2px;
}
.hero_section.hero_companies .hero_content .title {
    margin-bottom: 28px;
    max-width: 500px;
}
.hero_section.hero_companies .scroll_down {
    position: absolute;
    left: 50%;
    bottom: 30px;
}

.companies_hero .companies_header{
    text-align: center;
    max-width: 870px;
    margin: 0 auto;
}
.companies_hero .companies_header .tagline, .companies_hero .companies_header .description{
    color: var(--steel-blue);
}
.companies_hero .companies_header .tagline{
    margin-bottom: 12px;
}
.companies_hero .companies_header .title{
    margin-bottom: 8px;
}

.companies_section{
    background-color: #E8ECF2;
    border-radius: 30px;
    padding-block: 72px;
}
.companies_grid{
    display: flex;
    flex-flow: column;
    row-gap: 72px;
    margin-top: 72px;
}
.companies_grid .company_card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}
.companies_grid .figure {
    background: linear-gradient(0deg, rgba(232, 236, 242, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    justify-content: center;
    aspect-ratio: 538 / 374;
    padding: 94px;
    width: 100%;
    height: 100%;
}
.companies_grid .figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.companies_grid .company_card:nth-child(6) .figure img {
    max-height: 220px;
    height: auto;
}
.companies_grid .company_key_feature ul {
    display: flex;
    gap: 10px;
}
.companies_grid .company-card-content{
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.companies_grid .company-card-content h3, .companies_grid .company-card-content .company_sub_title, .companies_grid .company-card-content .description{
    color: var(--steel-blue);
}
.companies_grid .company-card-content .company_sub_title{
    margin-bottom: 8px;
}
.companies_grid .company-card-content .link_wrap .link_btn {
    font-weight: 500;
    background-color: #ffffff;
    border-radius: 24px;
    padding-block: 10px;
    padding-inline: 24px 48px;
    position: relative;
}
.companies_grid .company-card-content .link_wrap .link_btn::after{
    content: '';
    background-image: url(../../assets/images/visit-website-icon.svg);
    background-repeat: no-repeat;
    width:16px;
    height: 16px;
    position: absolute;
    right: 25px;
    top: 48%;
    transform: translateY(-50%);
}
.companies_grid .company_card:nth-child(even) figure {
    grid-column: 2;
    grid-row: 1;
}
.companies_grid .company_card:nth-child(even) .company-card-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.companies_grid .company_key_feature ul li{
    background-color: rgba(58, 142, 194, 0.12);
    color: #3A8EC2;
    border-radius: 12px;
    padding-inline: 13px;
    padding-block: 4px;
}

.companies_grid .company-card-content h3 {
    margin-bottom: 7px;
}
.companies_grid .company-card-content .description{
    margin-bottom: 14px;
}
.companies_section .company_key_feature{
    margin-bottom: 32px;
}

.companies_grid .company_key_feature ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;    
}
.companies_grid .company_card:nth-child(even) .company-card-content .company_key_feature ul{
    justify-content: right;
}

/*********************Responsive**********************/

@media all and (max-width:1199px){
    .companies_grid .company_card {
        gap: 50px;
    }
    .companies_grid .figure {
        padding: 84px;;
    }

    .companies_grid .company_card:nth-child(6) .figure img {
        max-height: 200px;
    }
}
@media all and (max-width:991px){
    .hero_section.hero_companies .hero_content .content_row .intro_header {
        max-width: none;
        margin-bottom: 30px;
    }
    .companies_section {
        padding-block: 52px;
    }
    .companies_grid {
        row-gap: 42px;
        margin-top: 52px;
    }
}
@media all and (max-width:767px){
    .companies_grid .company_card {
        gap: 20px;
    }
    .companies_grid .figure {
        padding: 44px;
    }
}
@media all and (max-width:650px){
    .companies_grid .company_card:nth-child(even) figure {
        grid-column: auto;
        grid-row: auto;
    }
    .companies_grid .company_card:nth-child(even) .company-card-content {
        grid-column: auto;
        grid-row: auto;
        text-align: left;
    }
    .companies_grid .company_card {
        grid-template-columns: 1fr;
    }
    .companies_grid .company_card figure {
        height: 200px;
    }
    .companies_grid .figure {
        padding: 24px;
    }
    .companies_grid .figure img {
        height: 60%;
    }
    .companies_grid .company_card:nth-child(6) .figure img {
        height: 80%;
    }
    .companies_grid {
        row-gap: 20px;
        margin-top: 42px;
    }
}