* {
    outline: none;
}
body{
	position: relative;
	margin: 0 auto;
}

.banner-ecommerce {
    min-height: 567px;
}

.strategic {
    width: 95%;
    background-color: var(--color-white);
    min-height: 650px;
    border-radius: 33px;

    display: flex;
    align-items: flex-end;
}

.banner-catalog-ext .card-form {
    position: relative;
    top: 80px;
}

.strategic img.image {
    width: 100%;
    bottom: -10px;
    object-fit: cover;
}

.depoiment {
    background-image: url("../../images/fundo-01.webp");
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 676px;
    min-height: 450px;
    align-items: center;
    display: flex;
}

.faq .col-lg-6 img.grafic{
    position: sticky;
    top: 10px;
    object-fit: cover;
}

.banner-franchise{
    width: 100%;
    min-height: 567px;
    padding: 20px 0;
}

.score {
    width: 95%;
    min-height: 150px;
    background-color: var(--color-white);
    border-radius: 0px 8px 8px 0px;
    padding: 40px 0;
    margin: 120px 0 56px;
}

.card-company {
    border-radius: 4px;
    background: #FFF;
    padding: 16px;
}

.your-company .card-company:hover {
    box-shadow: 16px 16px 30.3px 0px rgba(52, 78, 115, 0.10);
    transition: all 0.2s;
}

.your-company .card-company:hover svg path{
    stroke: var(--color-primary);
    stroke-width: 1px;
    transition: all 0.2s;
}

.your-company img {
    object-fit: cover;
}

.about-cards{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.about-card{
    width: 40%;
    background: #F3F6F8;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
    transition: all .3s ease;
}

.about-card.active{
border: 1px solid var(--color-primary);
}

.about-card.active path{
    fill: var(--color-primary)
}
.about-card.active svg.stroke path{
    stroke: var(--color-primary);
    fill: none;
}

.about-card .row{
    justify-content: space-between;
    align-items: center;
}

.about-card img{
    width: 35px;
}

.about-card p{
    font-size: 16px;
    font-weight: 500;
    margin-top: 32px;
}

.about-details img{
    max-width: 75%;
}

.about-details h5{
    color: var(--color-text);
    font-size: 19px;
    margin-bottom: 10px;
}

.about-details{
    transition: opacity .5s;
   
}

.about-details .hide{
    opacity: 0;
    position: absolute;
}

.about-details .active{
    opacity: 1;
    animation: .4s ease-in-out forwards fadeFeature;
    border-radius: 8px;
    height: 550px;
   
}

.strategic svg{
    top: -25px;
}

.strategic svg path {
    animation: svg-animate 4s forwards infinite;
}

  .strategic {
    width: 100%;
    border-radius: 0;
    padding: 50px 0;
}

.your-company{
    padding-bottom: 56px;
}

@keyframes fadeFeature {
    from {
        transform: translateY(10px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes svg-animate {
    from {}
    to {
      stroke-dashoffset: 0;
    }
  }