

.cicatrix {
    width: 100%;
    max-width: 1920px;
    height: 648px;
    margin: 0px auto;
    background-color: #fafafe;
    background-image: url("../assets/cicatrix/cicatrix_main.png");
    background-position: 90% top;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cicatrix-main {
    width: 100%;
    max-width: 1190px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 15px;
    margin-bottom: 150px;
}

.cicatrix-main-text {
    max-width: 600px;
    width: 80%;
}

.cicatrix-main .cicatrix-main-text h1 {
    font-size: 90px;
    margin-bottom: 15px;
}

.cicatrix-main .cicatrix-main-text p {
    width: 90%;
    font-size: 24px;
}


/* CICATRIX RECOMMENDATIONS */

section.cicatrix-recommendations {
    flex-direction: column;
}

.cicatrix-recommendations h1 {
    text-align: left;
    margin-left: 15px;
    margin-bottom: 50px;
}

.cicatrix-recommendations .recommendations-block {
    width: 100%;
    height: 168px;
    display: flex;
    justify-content: space-between;
}

.cicatrix-recommendations .recommendations-block > * {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cicatrix-recommendations .recommendations-block .recommendation-number {
    font-size: 60px;
}

.cicatrix-recommendations .recommendations-block .recommendation-text {
    width: 370px;
    font-size: 20px;
}

.cicatrix-recommendations .recommendations-block img {
    max-width: 460px;
    height: 167px;
    width: 90%;
}

.cicatrix-recommendations  .line {
    margin: 20px 0;  
}

/* CICATRIX-COMPONENTS */

section.cicatrix-components {
    max-width: 100%;
    flex-direction: column;
    padding: 10px 0px;
} 

.cicatrix-components h1 {
    text-align: center;
}

.cicatrix-components-main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #ebe9f7;
}

.cicatrix-components-content {
    width: 100%;
    max-width: 1190px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cicatrix-components-content img {
    max-width: 456px;
    width: 45%;
    height: 434px;
    margin-right: 50px;
}


.cicatrix-components-blocks-container {
    max-width: 642px;
    width: 45%;
    display: flex;
    justify-content: space-evenly;
}

.cicatrix-components-blocks-col {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin: 0 25px;
}

.cicatrix-components-block {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.cicatrix-components-block img {
    width: 87px;
    height: 87px;
    margin-right: 10px;
}



.cicatrix-components-block p {
    font-size: 20px;
    font-weight: bold;
}

/* CICATRIX-CONTRIBUTE */

section.cicatrix-contribute {
    flex-direction: initial;
    justify-content: space-evenly;
}

.cicatrix-contribute > img {
    width: 50%;
    max-height: 620px;
}

.cicatrix-contribute-container {
    width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cicatrix-contribute-container h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.check-block {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.check {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    background-image: url("../assets/cicatrix/check.svg");
}

.check-block p {
    width: calc(100% - 45px);
    font-size: 21px;
}

.cicatrix-contribute-additional {
    font-size: 20px;
    margin-top: 15px;
}

.cicatrix-contribute-container img {
    width: 561px;
    height: 634px;
}


/* CICATRIX RESEARCH */

section.cicatrix-research {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ebe9f7;
}


.cicatrix-research-text {
    max-width: 703px;
    width: 90%;
    font-size: 27px;
    margin: 35px 55px;
    text-align: center;
}

/* CICATRIX APPLICATION */

section.cicatrix-application {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.cicatrix-application img {
    max-width: 762px;
    width: 100%;
    height: 438px;
}

.cicatrix-application-text-container {
    max-width: 560px;
    position: absolute;
    background-image: url("../assets/cicatrix/application-text-background.png");
    background-size: cover;
    padding: 30px;
    color: #ffff ;
    right: 0%;
}

.cicatrix-application-text-container h3{
    font-size: 25px;
    margin-bottom: 15px;
}

.cicatrix-application-text-container p{
    font-size: 21px;
}


@media (max-width: 1281px) {

    section.cicatrix {
        background-position: 150% top;
    }
}

@media (max-width: 1081px) {

    section.cicatrix {
        background-position: 180px top;
    }

    .cicatrix-main {
        margin-bottom: 350px;
    }

    .cicatrix-components-content {
        flex-direction: column;

    }

    /* cicatrix-recommendations */

    .cicatrix-recommendations .recommendations-block {
        flex-direction: column;
        height: initial;
        align-items: center;
    }

    .cicatrix-recommendations .recommendations-block .recommendation-text {
        width: 100%;
        text-align: center;
        margin: 30px 0;
    }

    .cicatrix-components-content > img {
        width: 100%;
        margin-right: 0px;
    }

    .cicatrix-components-blocks-container {
        max-width: 100%;
        width: 100%;
    }

    .cicatrix-components-blocks-col {
        width: 40%;
        align-items: center;
        text-align: center;
    }

    .cicatrix-components-block {
        flex-direction: column;
    }

    /* cicatrix-contribute */

    section.cicatrix-contribute {
        flex-direction: column;
    }

    .cicatrix-contribute-container {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .cicatrix-contribute-container h2 {
        text-align: center;
    }

    .cicatrix-contribute > img {
        width: 50%;
    }

    /* cicatrix-application */

    section.cicatrix-application {
        flex-direction: column-reverse;
    }

    .cicatrix-application-text-container {
        max-width: 100%;
        width: 100%;
        position: relative;
        margin-bottom: 35px;
    }

}


@media (max-width: 721px) {
    section.cicatrix {
        height: 600px;
        justify-content: flex-end;
            background-position: center top;
    }

    .cicatrix-main-text {
        max-width: 100%;
        width: 100%;
    }

    .cicatrix-main .cicatrix-main-text p {
        width: 100%;
    }
    

    .cicatrix-main {
        margin-bottom: 0;
    }

    .cicatrix-main .cicatrix-main-text h1 {
        font-size: 45px;
    }

    .cicatrix-contribute > img {
        width: 90%;
    }


}


@media (max-width: 581px) {
    section.cicatrix {
        height: 545px;
    }

    .cicatrix-contribute-container h2 {
        font-size: 29px;
    }

    section.cicatrix-application img{
            height: 285px;
    }

    .cicatrix-recommendations h1 , .cicatrix-components h1{
        text-align: center;
        font-size: 35px;
    }

   
}

@media (max-width: 431px) {
    section.cicatrix {
        height: 475px;
    }

    .cicatrix-research-text {
        font-size: 24px;
    }

    .cicatrix-contribute-container h2 {
        font-size: 27px;
    }
}

@media (max-width: 351px) {

    section.cicatrix {
        height: 400px;
    }

    .cicatrix-main .cicatrix-main-text h1 {
        font-size: 35px;
    }

    .cicatrix-main .cicatrix-main-text p {
        font-size: 20px;
    }

    .cicatrix-components-blocks-container {
        flex-direction: column;
        align-items: center;
    }

    .check-block p {
        font-size: 18px;
    }

    .cicatrix-contribute-additional {
        font-size: 17px;
    }
}

@media (max-width: 321px) {
    .cicatrix-main .cicatrix-main-text h1 {
        font-size: 30px;
    }

    .cicatrix-research-text {
        font-size: 21px;
    }
}