.header{
    width: 100%;
    min-height: 500px;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    background-image: url("assets/img/header_bg.webp");
    background-position: right;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.header .list{
    position: absolute;
    width: fit-content;
    height: fit-content;
    background-color: var(--first-color);
    bottom: -100px;
    right: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 50px 30px;
    border-radius: 10px;
}

.header .list .list-line{
    font-size: 18px;
    color: var(--second-color) !important;
    font-weight: 500;
}
.header .list .list-line i{
    margin-inline: 0px 10px;
    font-size: 20px;
    
}

@keyframes onJoinContent {
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0px);
    }
}

.header .content{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    margin-left: 70px;
}

.header .title{
    color: white;
    font-size: 50px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: var(--bg-color);
    animation: onJoinContent 0.5s normal ease-in-out;
}

.header .subtitle{
    color: var(--bg-color);
    font-size: 18px;
    max-width: 500px;
    animation: onJoinContent 0.6s normal ease-in-out;
}

span.pointed{
    color: var(--first-color);
}

.header .buttons{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    animation: onJoinContent 0.8s normal ease-in-out;
}

section.info{
    width: 100%;
    height: fit-content;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
}

.info .counters{
    width: 100%;
    height: 150px;
    background: white;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.info .counters .counter:nth-child(1){
    margin-left: 50px;
}

.counter{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

@keyframes scrollNumber{
    from{
        color: red;
    }
    to{
        color: white;
    }
}

.counter .number.numberanimation{
    animation: scrollNumber 1s normal ease-in;
}

.counter .number{
    background-color: var(--second-color);
    color: var(--first-color);
    font-size: 35px;
    font-weight: 600;
    padding-inline: 5px;
}

.counter .desc{
    font-size: 16px;
    font-weight: 500;
    max-width: 90px;
}

.info .container{
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.info .container .start{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 3;
}

.info .container .end{
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.info .container .start img{
    width: 100%;
    height: auto;
}

.info .container .end .title{
    font-size: 40px;
    display: flex;
    flex-direction: column;
    font-weight: 600;
}

.info .container .end .title span{
    width: fit-content;
    padding: 3px 15px;
}

.info .container .end .title span:nth-child(1){
    background-color: var(--second-color);
    color: var(--first-color);
}

.info .container .end .title span:nth-child(2){
    background-color: var(--first-color);
    color: var(--second-color);
}

.info .container .end .desc{
    font-size: 20px;
    width: fit-content;
    height: fit-content;
}

.info .container .end .desc p{
    width: 90%;
}

.info .container .end .firma{
    width: 250px;
    height: fit-content;
    margin-top: 20px;
}

.info .container .end .firma img{
    width: 100%;
    height: fit-content;
}

.info .container .end .firma span{
    font-size: 15px;
}

@media screen and (max-width: 1200px) {
    .info .container .start{
        display: none;
        
    }

    .info {
        padding-bottom: 40px;
    }

    .info .container .end{
        flex: unset;
        width: calc(100% - 50px);
        margin-left: 50px;
    }

    .header .list{
        display: none;
    }
}

section.feedbacks {
    width: 100%;
    height: fit-content;
    background-color: var(--second-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding-block: 30px;
}

.feedbacks .title{
    color: var(--first-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feedback-content{
    color: var(--bg-color);
    text-align: center;
    max-width: 1000px;
    margin-bottom: 20px;
}

.feedback-user{
    font-size: 17px;
    color: var(--bg-color);
}
.feedback-location{
    font-size: 15px;
    color: var(--bg-color);
}

.avatars-container{
    width: fit-content;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.avatars-container .avatars{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.avatars-container .avatars img{
    width: 50px;
    border-radius: 50%;
}
.avatars-container .avatars img.main-avatar{
    width: 60px !important;
    box-shadow: 0px 0px 0px 5px var(--second-color), 
        0px 0px 0px 10px var(--first-color);

}

.avatars-container .arrow{
    color: var(--bg-color);
    font-size: 20px;
    padding: 20px;
}


@media screen and (max-width: 1000px) {
    .feedback-content {
        width: 80%;
    }
}
@media screen and (max-width: 640px) {
    .header .content {
        margin-inline: 20px;
    }
}

@media screen and (max-width: 560px) {
    .header .title {
        font-size: 2.5rem;
    }
}


@media screen and (max-width: 500px) {
    .info .counters {
        height: fit-content;
        flex-direction: column;
        align-items: flex-start;
        padding-block: 50px;
    }
    
    .info .counters .counter{
        margin-left: 0 !important;
        margin-left: 20px !important;
    }

    .info .container .end {
        flex: unset;
        width: calc(100% - 20px);
        margin-left: 20px;
    }

    .info .container .end .desc {
        font-size: 18px;
    }
}


@media screen and (max-width: 440px) {
    .header .buttons {
        flex-direction: column;
    }

    .avatars-container .avatars .sec-avatar {
        display: none;
    }
}