@import url(reset.css);

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2vh;
    font-weight: 400;
    cursor: default;
    background-color: #001A48;
    color: white;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/*mobile*/

.mobile {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #001C46;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease;
}

.mobile_item {
    font-size: 3vh;
    color: white;
    margin: 1.5vh 0;
    text-transform: uppercase;
    text-decoration: none;
}

.fechar {
    position: absolute;
    top: 2vh;
    right: 2vh;
}

.fechar svg {
    fill: white;
    height: 4vh;
}

/*header*/

.header {
    position: absolute;
    z-index: 1;
    width: 100%;
    background: #001C46dd;
    height: 10vh;
}

.header>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header>div img {
    height: 5vh;
}

.header>div>nav {
    display: none;
}

.header>div>div {
    display: none;
}

.header>div>svg {
    fill: white;
    height: 3vh;
}

/*hero*/

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero>.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero>.curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hero>div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    position: relative;
    gap: 1vh;
    width: 70vw;
    height: 25vh;
    margin-bottom: 10vh;
    margin-right: 3vw;
}

.hero>div>span {
    color: #001C46;
    font-size: 100%;
}

.hero>div>h1 {
    color: #001C46;
    font-size: 120%;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
}

.hero>div>a {
    background-color: #87C3FF;
    color: #001C46;
    text-decoration: none;
    padding: 1vh 2vh;
    border-radius: 1vh;
    font-size: 70%;
    font-weight: 700;
    margin-top: 2vh;
}

.hero>div>a:hover {
    background-color: #00FFFF;
}

/*sobre*/

.sobre {
    padding: 5vh 0;
}

.sobre>div {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.sobre_tag {
    background-color: #475C7C;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
}

.sobre_tag>span {
    background-color: #00FFFF;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.sobre_tag>span>span:nth-of-type(1) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.sobre_tag>span>span:nth-of-type(2) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

.sobre_title {
    font-size: 200%;
    font-weight: 700;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #5D97F1;
    text-wrap: balance;
    line-height: 1.1;
}

.sobre_description {
    font-size: 85%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: white;
    text-wrap: balance;
    line-height: 1.4;
}

.sobre_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 3vh;
}

.sobre_list>div {
    width: 100%;
    border: 2px solid #2F99F4;
    border-radius: 1vh 1vh 0 0;
}

.sobre_list>div>div {
    background-color: #2F99F4;
    width: 100%;
    height: 1.5vh;
    border-radius: .7vh .7vh 1vh 1vh;
    position: relative;
}

.sobre_list>div>div>span {
    background-color: #2F99F4;
    width: 6vh;
    height: 6vh;
    border-radius: 100%;
    top: -2.5vh;
    position: absolute;
    left: calc(50% - 3vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre_list>div>div>span>img {
    width: 3.5vh;
    height: 3.5vh;
    object-fit: contain;
}

.sobre_list>div>h3 {
    color: #2F99F4;
    text-align: center;
    font-size: 100%;
    font-weight: 700;
    padding: 3vh 2vh 0 2vh;
}

.sobre_list>div>p {
    font-size: 85%;
    text-align: center;
    color: white;
    text-wrap: balance;
    line-height: 1.4;
    padding: 2vh;
}

/*stats*/

.stats {
    background-color: #000000;
    padding: 5vh 0;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stats .container div {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    align-items: center;
}

.stats .container div h3 {
    color: white;
    font-size: 200%;
    font-weight: 900;
}

.stats .container div p {
    color: #2F99F4;
    font-size: 85%;
}

/*solucoes*/

.solucoes {
    position: relative;
    padding: 10vh 0;
}

.solucoes>div {
    gap: 5vh;
    display: flex;
    flex-direction: column;
}

.solucoes>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solucoes_tag {
    background-color: #475C7C;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
}

.solucoes_tag>span {
    background-color: #00FFFF;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.solucoes_tag>span>span:nth-of-type(1) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.solucoes_tag>span>span:nth-of-type(2) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

.solucoes_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3vh;
}

.solucoes_list>div {
    background-color: rgba(0, 13, 36, .75);
    padding: 5vh 3vh;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5vh;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.solucoes_list>div h3 {
    color: #2F99F4;
    font-weight: 700;
    font-size: 100%;
    text-align: center;
}

.solucoes_list>div span {
    color: #00FFFF;
    font-size: 80%;
    text-align: center;
    display: block;
}

.solucoes_list>div p {
    color: white;
    font-size: 70%;
    text-align: center;
    margin-top: 3vh;
    line-height: 1.4;
}

.solucoes_button {
    background-color: #2F99F4;
    width: fit-content;
    padding: 1vh 3vh;
    font-size: 70%;
    text-decoration: none;
    border-radius: 1vh;
    margin: 0 auto;
    font-weight: 700;
    color: #001A48;
}

.solucoes_button:hover {
    background-color: #00FFFF;
    cursor: pointer;
}

/*diferenciais*/

.diferenciais {
    position: relative;
    padding: 10vh 0;
}

.diferenciais>div {
    gap: 5vh;
    display: flex;
    flex-direction: column;
}

.diferenciais_tag {
    background-color: #475C7C;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
}

.diferenciais_tag>span {
    background-color: #00FFFF;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.diferenciais_tag>span>span:nth-of-type(1) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.diferenciais_tag>span>span:nth-of-type(2) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

.diferenciais_div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 5vh;
}

.diferenciais_div h2 {
    color: #2F99F4;
    font-size: 150%;
    font-weight: 700;
    line-height: 1.2;
    width: 100%;
}

.diferenciais_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 5vh;
}

.diferenciais_list>div {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #2F99F4;
    border-radius: 2vh;
    padding: 3vh;
    position: relative;
    background-color: #001A48;
}

.diferenciais_list>div div {
    background-color: #00FFFF;
    width: 6vh;
    height: 6vh;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -3vh;
    left: -3vh;
    border: .5vh solid #001A48;
    box-sizing: border-box;
}

.diferenciais_list>div div img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.diferenciais_list>div span {
    width: calc(6vh + 4px);
    height: calc(6vh + 4px);
    display: block;
    position: absolute;
    top: calc(-3vh - 2px);
    left: calc(-3vh - 2px);
    background-color: #2F99F4;
    border-radius: 100%;
    z-index: -1;
}

.diferenciais_list>div h3 {
    color: white;
    font-weight: 700;
    font-size: 100%;
}

.diferenciais_list>div p {
    color: white;
    font-size: 70%;
    margin-top: 2vh;
    line-height: 1.4;
}

.diferenciais_button {
    background-color: #2F99F4;
    width: fit-content;
    padding: 1vh 3vh;
    font-size: 70%;
    text-decoration: none;
    border-radius: 1vh;
    margin: 0 auto;
    font-weight: 700;
    color: #001A48;
}

.diferenciais_button:hover {
    background-color: #00FFFF;
    cursor: pointer;
}

/*equipe*/

.equipe {
    position: relative;
    padding: 10vh 0;
    background-color: #000B26;
}

.equipe>div {
    gap: 5vh;
    display: flex;
    flex-direction: column;
}

.equipe_tag {
    background-color: #475C7C;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
}

.equipe_tag>span {
    background-color: #00FFFF;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.equipe_tag>span>span:nth-of-type(1) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.equipe_tag>span>span:nth-of-type(2) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

.equipe>div>h2 {
    color: #2F99F4;
    font-size: 200%;
    font-weight: 700;
    text-align: center;
}

.equipe>div>p {
    font-size: 85%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: white;
    text-wrap: balance;
    line-height: 1.4;
}

.equipe_div {
    display: flex;
    align-items: center;
    gap: 5vh;
}

.equipe_left,
.equipe_right {
    font-size: 5vh;
    color: white;
    cursor: pointer;
}

.equipe_left:hover,
.equipe_right:hover {
    color: #00FFFF;
}

.equipe_list {
    width: 100%;
}

.equipe_item {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 3vh;
}

.equipe_item>img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.equipe_item>div {
    display: flex;
    flex-direction: column;
    gap: .75vh;
}

.equipe_item>div>h3 {
    color: white;
    font-weight: 700;
    font-size: 100%;
    text-transform: uppercase;
}

.equipe_item>div>p {
    color: #00FFFF;
    font-size: 80%;
    font-style: italic;
}

.equipe_item>p {
    color: white;
    font-size: 70%;
    line-height: 1.4;
}

/*abrangencia*/

.abrangencia {
    position: relative;
    padding: 10vh 0;
}

.abrangencia>div {
    gap: 5vh;
    display: flex;
    flex-direction: column;
}

.abrangencia_tag {
    background-color: #475C7C;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
}

.abrangencia_tag>span {
    background-color: #00FFFF;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.abrangencia_tag>span>span:nth-of-type(1) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.abrangencia_tag>span>span:nth-of-type(2) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

.abrangencia>div>h2 {
    color: #2F99F4;
    font-size: 200%;
    font-weight: 700;
    text-align: center;
}

.abrangencia>div>img {
    width: 100%;
    object-fit: contain;
}

.abrangencia_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5vh;
    width: 100%;
    margin: 0 auto;
}

.abrangencia_list>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.abrangencia_list>div>h3 {
    color: #2F99F4;
    font-size: 120%;
    font-weight: 700;
}

.abrangencia_list>div>p {
    font-size: 85%;
    color: white;
    text-wrap: balance;
    line-height: 1.4;
}

.abrangencia_list>div>p>span {
    color: #00FFFF;
}

/*conformidade*/

.conformidade {
    position: relative;
}

.conformidade>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.conformidade>div {
    padding: 10vh 0;
    display: flex;
    justify-content: flex-end;
}

.conformidade>div>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.conformidade>div>div>div {
    display: flex;
    gap: 1.5vh;
    align-items: center;
}

.conformidade>div>div>div>img {
    width: 4.5vh;
    height: 4.5vh;
    object-fit: contain;
}

.conformidade>div>div>div>h3 {
    color: #2F99F4;
    font-size: 200%;
    font-weight: 700;
}

.conformidade>div>div>p {
    font-size: 85%;
    color: white;
    text-wrap: balance;
    line-height: 1.4;
}

/*parceiros*/

.parceiros {
    background-color: #002E61;
    padding: 10vh 0;
}

.parceiros_list {
    width: 100%;
}

.parceiros_item {
    width: 20vh;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5vh;
}

.parceiros_item>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(70%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.parceiros_item:hover>img {
    filter: grayscale(0);
    opacity: 1;
}

/*cases*/

.cases {
    position: relative;
    padding: 10vh 0;
}

.cases>div {
    gap: 5vh;
    display: flex;
    flex-direction: column;
}

.cases_tag {
    background-color: #475C7C;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
}

.cases_tag>span {
    background-color: #00FFFF;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.cases_tag>span>span:nth-of-type(1) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.cases_tag>span>span:nth-of-type(2) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

.cases>div>h2 {
    color: #2F99F4;
    font-size: 200%;
    font-weight: 700;
    text-align: center;
}

.cases>div>p {
    font-size: 85%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: white;
    text-wrap: balance;
    line-height: 1.4;
}

.cases_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 3vh;
}

.cases_list>div {
    background-color: #000B27;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cases_list>div>img {
    width: 100%;
    height: 25vh;
    object-fit: cover;
    object-position: center;
}

.cases_list>div>div {
    padding: 3vh;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.cases_list>div>div>h3 {
    color: #2F99F4;
    font-weight: 700;
    font-size: 100%;
}

.cases_list>div:hover>div>h3 {
    color: #00FFFF;
}

.cases_list>div>div>p {
    color: white;
    font-size: 70%;
    line-height: 1.4;
}

.cases_button {
    background-color: #2F99F4;
    width: fit-content;
    padding: 1vh 3vh;
    font-size: 70%;
    text-decoration: none;
    border-radius: 1vh;
    margin: 0 auto;
    font-weight: 700;
    color: #001A48;
}

.cases_button:hover {
    background-color: #00FFFF;
    cursor: pointer;
}

/*contato*/

.contato {
    position: relative;
    padding: 10vh 0;
}

.contato>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contato>div {
    gap: 5vh;
    display: flex;
    flex-direction: column;
}

.contato_tag {
    background-color: #475C7C;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
}

.contato_tag>span {
    background-color: #00FFFF;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.contato_tag>span>span:nth-of-type(1) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.contato_tag>span>span:nth-of-type(2) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

.contato_div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10vh;
    width: 100%;
    margin: 0 auto;
}

.contato_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.contato_info h2 {
    color: #2F99F4;
    font-size: 150%;
    font-weight: 700;
    line-height: 1.2;
}

.contato_info p {
    font-size: 80%;
    line-height: 1.4;
    color: white;
}

.contato_info ul {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.contato_info ul li {
    display: flex;
    gap: 2vh;
    align-items: center;
}

.contato_info ul li img {
    height: 3vh;
    object-fit: contain;
    object-position: center;
    width: 3vh;
}

.contato_info ul li div {
    display: flex;
    flex-direction: column;
    gap: .5vh;
}

.contato_info ul li div span {
    font-size: 70%;
    color: white;
    opacity: .5;
}

.contato_info ul li div p {
    font-size: 70%;
    line-height: 1;
}

.contato_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.contato_form>div {
    display: flex;
    width: 100%;
    gap: 2vh;
}

.contato_form>div>input,
.contato_form>div>textarea {
    width: stretch;
    padding: 1.5vh;
    box-sizing: border-box;
    border: 1px solid white;
    outline: 0;
    border-radius: 1vh;
    background-color: rgba(255, 255, 255, .25);
    color: white;
    font-size: 80%;
    font-family: "Noto Sans", sans-serif;
}

.contato_form>div>input::placeholder,
.contato_form>div>textarea::placeholder {
    color: white;
    font-size: 70%;
}

.contato_form>button {
    background-color: #2F99F4;
    width: fit-content;
    padding: 1.5vh 5vh;
    font-size: 70%;
    text-decoration: none;
    border-radius: 1vh;
    font-weight: 700;
    color: #001A48;
    border: 0;
}

.contato_form>button:hover {
    background-color: #00FFFF;
    cursor: pointer;
}

/*footer*/

.footer {
    background-color: #000A24;
    padding: 5vh 0;
}

.footer>div {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5vh;
}

.footer>div img {
    height: 5vh;
}

.footer>div>div {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    width: 100%;
}

.footer>div>div:nth-of-type(4) {
    display: none;
}

.footer>div>div p {
    font-size: 70%;
    color: white;
}

.footer>div>div ul {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.footer>div>div ul li a {
    font-size: 70%;
    color: white;
    text-decoration: none;
}

.footer>div>div ul li a:hover {
    color: #2F99F4;
}

.footer>div>div div {
    display: flex;
    gap: 2vh;
}

.footer>div>div div a {
    color: #00FFFF;
    font-size: 200%;
    text-decoration: none;
}

.footer>div>div div a:hover {
    color: #00FFFF;
}

/*page*/

.page {
    background-color: white;
    color: #000A24;
}

.page_hero {
    width: 100%;
    height: 40vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_hero>.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    position: absolute;
    top: 0;
    left: 0;
}

.page_hero h1 {
    color: white;
    font-size: 200%;
    font-weight: 700;
    padding-top: 5vh;
}

.page_hero h1 span {
    color: #2F99F4;
}

.page_tag {
    background-color: #C1D9F3;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
    color: #002551;
}

.page_tag>span {
    background-color: #2F99F4;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.page_tag>span>span:nth-of-type(1) {
    background-color: #2F99F4;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.page_tag>span>span:nth-of-type(2) {
    background-color: #2F99F4;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

.page_cases {
    padding: 10vh 0;
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.page_cases_list {
    display: flex;
    flex-direction: column;
    gap: 10vh;
}

.page_cases_list>div {
    position: relative;
}

.page_cases_list>div>img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
}

.invert>img {
    left: unset !important;
    right: 0 !important;
}

.page_cases_list>div>div {
    display: flex;
    justify-content: flex-end;
}

.invert>div {
    justify-content: flex-start !important;
}

.page_cases_list>div>div>div {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 2vh;
    flex-direction: column;
    padding: 2vh 0 0 0;
}

.invert>div>div {
    padding: 5vh 8vh 5vh 0 !important;
}

.page_cases_list>div>div>div>h3 {
    font-weight: 700;
    font-size: 150%;
}

.page_cases_list>div>div>div>p {
    font-size: 80%;
    line-height: 1.3;
}

/*page solucoes*/

.solucoes_como {
    padding: 10vh 0;
    background-color: #EEF0F3;
}

.solucoes_como>div {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.solucoes_como_div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10vh;
    flex-wrap: wrap;
}

.solucoes_como_left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.solucoes_como_left h2 {
    font-size: 200%;
    font-weight: 700;
}

.solucoes_como_left h2 span {
    color: #2F99F4;
    font-size: 80%;
    line-height: 1;
    display: block;
}

.solucoes_como_left div {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.solucoes_como_left h3 {
    font-weight: 700;
    font-size: 120%;
}

.solucoes_como_left p {
    font-size: 100%;
    line-height: 1.3;
}

.solucoes_como_right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10vh;
}

.solucoes_como_right>div {
    background-color: #001A48;
    border: 2px solid #2F99F4;
    padding: 6vh 3vh 3vh 3vh;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    position: relative;
    border-radius: 1.5vh 1.5vh 0 0;
}

.solucoes_como_right>div>span {
    position: absolute;
    top: -2vh;
    left: calc(50% - 3vh);
    background-color: #2F99F4;
    width: 6vh;
    height: 6vh;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 150%;
}

.solucoes_como_right>div>div {
    position: absolute;
    width: 100%;
    height: 2vh;
    background-color: #2F99F4;
    top: 0;
    left: 0;
    border-radius: 2vh;
}

.solucoes_como_right>div>h3 {
    color: #2F99F4;
    text-align: center;
    font-weight: 700;
    font-size: 120%;
}

.solucoes_como_right>div>p {
    color: white;
    text-align: center;
    font-size: 80%;
    line-height: 1.4;
}

.solucoes_porque {
    padding: 10vh 0;
    background-color: #001A48;
}

.solucoes_porque>div {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.solucoes_porque>div>h2 {
    font-size: 200%;
    color: white;
    font-weight: 700;
}

.solucoes_porque>div>h2>span {
    color: #2F99F4;
}

.solucoes_porque_list {
    display: flex;
    flex-wrap: wrap;
    gap: 4vh;
}

.solucoes_porque_list>div {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(0deg, rgba(0, 26, 72, 1), rgba(0, 26, 72, .8), rgba(0, 26, 72, 0));
}

.solucoes_porque_list>div>span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border: 1px solid white;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, 0));
    box-sizing: border-box;
    border-radius: 2vh;
    overflow: hidden;
}

.solucoes_porque_list>div>span>span {
    width: 90%;
    height: 1vh;
    background-color: #2F99F4;
    position: absolute;
    top: -.25rem;
    left: 5%;
    border-radius: 0 0 1vh 1vh;
}

.solucoes_porque_list>div>div {
    padding: 3vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 100%;
}

.solucoes_porque_list>div>div>h3 {
    color: #00FFFF;
    font-size: 120%;
    font-weight: 700;
}

.solucoes_porque_list>div>div>p {
    font-size: 100%;
    color: white;
    line-height: 1.3;
}

.solucoes_porque>div>p {
    font-size: 100%;
    color: white;
    line-height: 1.3;
}

.solucoes_metodologia {
    padding: 10vh 0;
    background-color: #000D2D;
}

.solucoes_metodologia>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5vh;
}

.solucoes_metodologia>div>h2 {
    width: 100%;
    font-size: 200%;
    font-weight: 700;
    color: white;
}

.solucoes_metodologia>div>h2>span {
    color: #2F99F4;
    font-size: 70%;
}

.solucoes_metodologia_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.solucoes_metodologia_list>div {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.solucoes_metodologia_list>div>h3 {
    color: #2F99F4;
    font-weight: 700;
    font-size: 120%;
}

.solucoes_metodologia_list>div>p {
    color: white;
    font-size: 100%;
    line-height: 1.3;
}

.solucoes_documentos {
    padding: 10vh 0;
    background-color: #001A48;
}

.solucoes_documentos>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5vh;
}

.solucoes_documentos>div>h2 {
    width: 100%;
    font-size: 150%;
    font-weight: 700;
    color: white;
}

.solucoes_documentos>div>h2>span {
    color: #2F99F4
}

.solucoes_documentos_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.solucoes_documentos_list>div {
    color: white;
    font-size: 100%;
    line-height: 1.3;
}

.solucoes_documentos_list>div>span {
    color: #2F99F4;
    font-weight: 700;
}

.solucoes_tecnologia {
    padding: 10vh 0;
    background-color: #EEF0F3;
}

.solucoes_tecnologia>div {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.solucoes_tecnologia>div>h2 {
    font-size: 200%;
    font-weight: 700;
}

.solucoes_tecnologia>div>h2>span {
    font-size: 80%;
    color: #2F99F4;
}

.solucoes_tecnologia>div>p {
    font-size: 100%;
    line-height: 1.3;
    width: 100%;
}

.solucoes_tecnologia_float {
    background-color: #C1D9F3;
    position: relative;
    padding: 10vh;
    border-radius: 15vh;
}

.solucoes_tecnologia_float>img {
    position: absolute;
    z-index: 1;
    width: 15vh;
    height: 15vh;
    top: 4vh;
    left: 7vh;
    object-fit: contain;
}

.solucoes_tecnologia_float>p {
    font-size: 200%;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.solucoes_tecnologia_list {
    display: flex;
    flex-wrap: wrap;
    gap: 6vh;
}

.solucoes_tecnologia_list>div {
    width: 100%;
    background-color: #001A48;
    border-radius: 10vh;
    display: flex;
    box-sizing: border-box;
    align-items: center;
}

.solucoes_tecnologia_list>div>span {
    width: 15vh;
    height: 15vh;
    border-radius: 100%;
    background-color: white;
    color: white;
    display: flex;
    position: relative;
}

.solucoes_tecnologia_list>div>span>img:nth-of-type(1) {
    top: 25%;
    width: 50%;
    height: 50%;
    object-fit: contain;
    position: absolute;
    left: 25%;
}

.solucoes_tecnologia_list>div>span>img:nth-of-type(2) {
    top: -35%;
    width: 170%;
    height: 170%;
    object-fit: contain;
    position: absolute;
    left: -35%;
}

.solucoes_tecnologia_list>div>div {
    width: calc(100% - 23vh);
    display: flex;
    flex-direction: column;
    gap: 1vh;
    padding: 2vh 2vh 2vh 6vh;
}

.solucoes_tecnologia_list>div>div>h3 {
    color: white;
    font-weight: 700;
    font-size: 100%;
}

.solucoes_tecnologia_list>div>div>p {
    font-size: 80%;
    line-height: 1.3;
    color: white;
}

.solucoes_capacitacao {
    padding: 10vh 0;
    background-color: #001A48;
}

.solucoes_capacitacao>div {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.solucoes_capacitacao>div>h2 {
    font-size: 200%;
    font-weight: 700;
    color: white;
}

.solucoes_capacitacao>div>h2>span {
    font-size: 80%;
    color: #2F99F4;
}

.solucoes_capacitacao>div>p {
    font-size: 100%;
    line-height: 1.3;
    width: 100%;
    color: white;
}

.solucoes_capacitacao_float {
    background-color: #475C7C;
    position: relative;
    padding: 10vh;
    border-radius: 15vh;
}

.solucoes_capacitacao_float>img {
    position: absolute;
    z-index: 1;
    width: 15vh;
    height: 15vh;
    top: 4vh;
    left: 7vh;
    object-fit: contain;
}

.solucoes_capacitacao_float>p {
    font-size: 200%;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: white;
}

.solucoes_capacitacao_list {
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.solucoes_capacitacao_list>div {
    display: flex;
    position: relative;
    height: 14vh;
}

.solucoes_capacitacao_list>div>span {
    color: white;
    font-size: 150%;
    font-weight: 700;
    width: 15vh;
    height: 5vh;
    display: flex;
    align-items: center;
}

.solucoes_capacitacao_list>div>div {
    background-color: #657690;
    width: calc(90% - 15vh);
    display: flex;
    align-items: center;
    border-radius: 1vh;
    gap: 1.5vh;
    height: 5vh;
}

.solucoes_capacitacao_list>div>div>span {
    background-color: #2F99F4;
    height: 5vh;
    width: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1vh;
    font-size: 100%;
    font-weight: 700;
}

.solucoes_capacitacao_list>div>div>p {
    color: white;
    font-size: 100%;
    font-weight: 700;
}

.solucoes_capacitacao_list>div>p {
    width: calc(60% - 4vh);
    background-color: #065091;
    color: white;
    border-radius: 1vh;
    padding: 6vh 1vh 1vh 1vh;
    height: 7vh;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    z-index: -1;
}

.solucoes_instituto {
    padding: 10vh 0;
    background-color: #EEF0F3;
}

.solucoes_instituto>div {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.solucoes_instituto>div>h2 {
    font-size: 200%;
    font-weight: 700;
}

.solucoes_instituto>div>h2>span {
    font-size: 80%;
    color: #2F99F4;
}

.solucoes_instituto>div>p {
    font-size: 100%;
    line-height: 1.3;
    width: 100%;
}

.solucoes_instituto_float {
    background-color: #C1D9F3;
    position: relative;
    padding: 10vh;
    border-radius: 15vh;
}

.solucoes_instituto_float>img {
    position: absolute;
    z-index: 1;
    width: 15vh;
    height: 15vh;
    top: 4vh;
    left: 7vh;
    object-fit: contain;
}

.solucoes_instituto_float>p {
    font-size: 200%;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.solucoes_instituto_list {
    display: flex;
    flex-wrap: wrap;
    gap: 4vh;
}

.solucoes_instituto_list>div {
    width: 100%;
    background-color: white;
    border-radius: 10vh;
    display: flex;
    gap: 2vh;
    padding: 2vh;
    box-sizing: border-box;
    align-items: center;
}

.solucoes_instituto_list>div>span {
    width: 7vh;
    height: 7vh;
    border-radius: 100%;
    background-color: #2F99F4;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 120%;
    font-weight: 700;
}

.solucoes_instituto_list>div>div {
    width: calc(100% - 9vh);
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.solucoes_instituto_list>div>div>h3 {
    color: #2F99F4;
    font-weight: 700;
    font-size: 100%;
}

.solucoes_instituto_list>div>div>p {
    font-size: 80%;
    line-height: 1.3;
}

.solucoes_instituto_button {
    background-color: #2F99F4;
    width: fit-content;
    padding: 2vh 5vh;
    text-decoration: none;
    color: #000A24;
    font-weight: 700;
    border-radius: 1vh;
    margin: 0 auto;
}

.solucoes_instituto_button:hover {
    color: #2F99F4;
    background-color: white;
    cursor: pointer;
}

.solucoes_capacitacao_text {
    width: 100% !important;
    font-size: 80% !important;
    opacity: .5;
}

.page_tag2 {
    background-color: #475C7C;
    width: fit-content;
    padding: 1vh 2vh;
    text-transform: uppercase;
    letter-spacing: .5vh;
    font-size: 70%;
    position: relative;
    display: block;
    color: white;
}

.page_tag2>span {
    background-color: #00FFFF;
    width: 1px;
    height: 100%;
    position: absolute;
    left: .5vh;
    top: -.5vh;
}

.page_tag2>span>span:nth-of-type(1) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    top: -3px;
}

.page_tag2>span>span:nth-of-type(2) {
    background-color: #00FFFF;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    left: -2px;
    position: absolute;
    bottom: -1px;
}

/*doit*/

.doit {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 8vh;
}

.doit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}