#verticals {
    width: 100%;
    height: max-content;
    padding: 20px;
    background: #F7F7F7;
}

.verticals {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}


.verticals-title-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.verticals-title  {
    font-size: var(--large);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
    text-align: center;
    font-family: var(--font-poppins);
}

.verticals-title span {
    color: var(--heading-color-2);
}

.verticals-text  {
    font-size: var(--small);
    color: var(--text-color);
    line-height: 1.5;
    text-align: center;
    font-family: var(--font-inter);
}

.verticals-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.verticals-grid-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 25px;
    padding: 30px 30px;
    border-radius: 10px;
    border: 1px solid #F5F5F5;
    background: #FFF;
    
    
}

.verticals-stars {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
}



.verticals-stars img {
    width: 25px;
    height: 25px;
}

.verticals-group {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.verticals-group-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.verticals-name {
    font-size: var(--body);
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.5;
    font-family: var(--font-inter);
}

.verticals-position {
    font-size: 14px;
    font-weight: 400;
    color: #6B6B6B;
    line-height: 1.5;
    font-family: var(--font-inter);
}

.verticals-description {
    font-size: var(--body);
    font-weight: 400;
    color: #6B6B6B;
    line-height: 1.5;
    font-family: var(--font-poppins);
}

.verticals-image {
    width: 44px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

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





/* Media Queries */

@media (min-width: 425px) {
    .verticals-title  {
        font-size: var(--h5);
    }

    .verticals-text  {
        font-size: var(--body);
    }
    
}

@media (min-width: 768px) {
    #verticals {
        padding: 40px 20px;
        margin-top: 0;
    }

    .verticals-grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .verticals-title {
        font-size: var(--h6);
    }

    .verticals-grid-item {
        gap: 20px;
        padding: 20px 20px;
    }
   
}

@media (min-width: 1024px) {
    #verticals {
        padding: 60px ;
        margin-top: 0;
    }

    .verticals-title  {
        font-size: var(--h6);
    }

    .verticals-text  {
        font-size: var(--body);
    }

    .verticals-title-container {
        gap: 15px;
    }

    .verticals {
        gap: 50px;
    }

    .verticals-grid{
     
        gap: 30px;
    }

    .verticals-grid-item {
        gap: 25px;
        padding: 30px 30px;
    }
}

@media (min-width: 1440px) {
    #verticals {
        padding: 60px 40px;
        margin: 0 auto;
        
    }

    .verticals-title  {
        font-size: 42px;
    }

    .verticals-text  {
        font-size: 18px;
    }

    .verticals {
        gap: 60px;
    }

    .verticals-grid {
        gap: 35px;
        max-width: 1300px;
    }

    .verticals-description p {
        font-size: var(--title);
        line-height: 1.6;
    }
    
}