#section-characteristics-agency-v5 {
    height: max-content;
    background-color: var(--colorTwo);
    display: flex;
    justify-content: center;
    padding: 50px 0px;
}

#section-characteristics-agency-v5 .section-characteristics {
    height: 100%;
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    align-items: start;
    justify-items: center;
    gap: 40px;
}

.informative-characteristics h1 {
    font-size: 3rem;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0px;
    margin-bottom: 15px;
    color: var(--colorOne);
}

.container-characteristics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 200px;
    width: 100%;
}

.first-informative,
.second-informative,
.third-informative,
.fourth-informative {
    height: 200px;
    width: 100%;
    background-color: var(--colorOne);
    border-radius: 0px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

.first-informative::before,
.second-informative::before,
.third-informative::before,
.fourth-informative::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    height: 0;
    background-color: var(--colorFour);
    border-radius: 0px;
    transition: height 0.5s ease-in-out, top 0.5s ease-in-out;
    z-index: -1;
}

.first-informative:hover,
.second-informative:hover,
.third-informative:hover,
.fourth-informative:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    color: var(--colorTwo);
}

.first-informative:hover::before,
.second-informative:hover::before,
.third-informative:hover::before,
.fourth-informative:hover::before {
    height: 100%;
    top: 0;
}

.first-informative h2,
.second-informative h2,
.third-informative h2,
.fourth-informative h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--colorTwo);
}

.first-informative p,
.second-informative p,
.third-informative p,
.fourth-informative p {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: start;
    margin: 0px;
    color: var(--colorTwo);
}

.text-characteristics p {
    font-size: 1rem;
    margin: 25px 20px 20px 20px;
    text-align: start;
    color: var(--colorEight);
}

.collage-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 75px) repeat(3, 110px);
    gap: 15px;
    width: 85%;
}

.first-image {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.second-image {
    grid-column: 1 / 3;
    grid-row: 3 / span 2;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}

.third-image {
    grid-column: 3 / 6;
    grid-row: 3 / span 3;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease-out;
}

.circle-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    height: 100%;
    width: 100%;
    z-index: 99;
}

.circular-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.curved-text-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--colorSeven);
    border: 2px solid var(--colorTwo);
    border-radius: 50%;
    transition: all 0.3s ease-in;
}

.curved-text-container text {
    fill: var(--colorTwo);
    font-family: sans-serif;
    font-size: 14px;
    transition: all 0.3s ease-in;
}

.circular-icon-container i {
    position: relative;
    z-index: 2;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-icon-container i::before {
    font-size: 1.5rem;
    color: var(--colorTwo);
}

.circular-icon-container:hover .curved-text-container {
    transform: scale(1.2);
    background-color: var(--colorFour);
}

.circular-icon-container:hover .curved-text-container text {
    font-size: 16px;
}

.circular-icon-container:hover i {
    transform: scale(1.2);
}

.circular-icon-container:hover i::before {
    font-size: 1.7rem;
}

.first-image img,
.second-image img,
.third-image img,
.fourth-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.first-image:hover,
.second-image:hover,
.third-image:hover,
.fourth-image:hover {
    transform: scale(1.045);
    z-index: 1;
    border-radius: 0px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1536px) {
    .collage-images {
        width: 100%;
    }

    .first-informative h2,
    .second-informative h2,
    .third-informative h2,
    .fourth-informative h2 {
        font-size: 2rem;
    }

    .first-informative,
    .second-informative,
    .third-informative,
    .fourth-informative {

        padding: 25px;
    }
}

@media (max-width: 1280px) {
    .informative-characteristics h1 {
        font-size: 2.8rem;
    }

    .text-characteristics {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 100%;
    }

    .first-informative h2,
    .second-informative h2,
    .third-informative h2,
    .fourth-informative h2 {
        font-size: 1.8rem;
    }

    .first-informative,
    .second-informative,
    .third-informative,
    .fourth-informative {

        padding: 20px;
    }#section-characteristics-agency-v5 .section-characteristics {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 20px;
    }

    .informative-characteristics {
        grid-column: 1;
        grid-row: 1;
    }

    .text-characteristics {
        grid-column: 1;
        grid-row: 2;
    }

    .container-characteristics {
        grid-column: 1;
        grid-row: 3;
        height: 100%;
    }

    .collage-images {
        grid-column: 1;
        grid-row: 4;
    }
}

@media (max-width: 1024px) {
    

    .first-informative h2,
    .second-informative h2,
    .third-informative h2,
    .fourth-informative h2 {
        font-size: 1.6rem;
    }

    .first-informative,
    .second-informative,
    .third-informative,
    .fourth-informative {

        padding: 25px;
    }
}

@media (max-width: 768px) {}

@media (max-width: 640px) {
    .informative-characteristics h1 {
        font-size: 2.4rem;
    }

    .text-characteristics p {
        margin: 0px;
    }

    .container-characteristics {
        grid-template-columns: 1fr;
    }

    .first-informative,
    .second-informative,
    .third-informative,
    .fourth-informative {
        height: 180px 28px;
    }

    .collage-images {
        grid-template-rows: 1fr;
    }

    .second-image,
    .third-image {
        display: none;
    }

    .circle-arrow {
        position: relative;
        right: 80px;
    }

}