@charset "UTF-8";

:root{
    --fundo:#020235;
    --main_color: #3e3edd;
    --second_color: skyblue;
    --color1: #ffffff;
    --color2: #020235;
    --color3: #0324a1;
    --font-main: monospace;
    --font-second: Arial, Helvetica, sans-serif;
    --espaço: 25px;
    --radius: 35px;
    --indent: 35px;
    --margin_fixed: 98px;
}

body{
    background-color: var(--fundo);
}

main#sobre{
    margin-top: var(--margin_fixed);
}

main > section{
    height: 450px;
    margin-bottom: 30px;
}

/*TITULO E DESCRIÇÃO*/
main > section.sobre{
    border-radius: var(--radius);
}
main > section.sobre article{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding: 0px 3px;
    width: 45%;
    height: 100%;
}
main > section.sobre article > h2{
    color: var(--second_color);
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    font-family: var(--font-main);
    text-shadow: 4px 2px 1px rgba(0, 0, 0, 0.363);
}

main > section.sobre article > p{
    line-height: 23px;
    margin: 0px 20px;
    font-size: 18px;
    text-align: justify;
    text-indent: var(--indent);
    font-family: var(--font-second);
}
main > section.sobre article.content_rigth{
    border-radius:0px var(--radius) var(--radius) 0px;
    background-color: var(--main_color);
    float: right;
}
main > section.sobre article.content_left{
    border-radius: var(--radius) 0px 0px var(--radius);
    background-color: var(--main_color);
    float: left;
}
/*IMAGEM*/
main > section.sobre div{   
    width: 55%;
    height: 100%;
}
main > section.sobre div.img_left{
    float: left;
    border-radius: var(--radius) 0px 0px var(--radius);
    background-color: var(--main_color);
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
}
main > section.sobre div.img_rigth{
    border-radius:0px var(--radius) var(--radius) 0px;
    background-color: var(--main_color);
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
    float: right;
}
main > section.sobre div#img-1{
    background-image: url(../../image/banner-15.jpg);
}
main > section.sobre div#img-2{
    background-image: url(../../image/banner-8.jpg);
}
main > section.sobre div#img-3{
    background-image: url(../../image/banner-16.jpg);
}
main > section.sobre div#img-4{
    background-image: url(../../image/banner-5.jpg);
}
main > section.sobre div#img-5{
    background-image: url(../../image/banner-12.jpg);
}
main > section.sobre div#img-6{
    background-image: url(../../image/banner-13.jpg);
}
