/* FONTS */
@font-face {
    font-family: 'TypoGraphica';
    src: url("/static/vitrine/css/fonts/TypoGraphica.otf") format('truetype');
    font-weight: normal;
    font-style: normal;
}
.typographica {
    font-family: TypoGraphica;
}
.acumin {
    font-family: acumin-pro;
    font-weight: 400;
}
.acumin-bold {
    font-family: acumin-pro;
    font-weight: 700;
}
/* GLOBAL */
:root {
    /* GLOBAL */
    --purple-hard-dark : #1a151f;
    --purple-dark : #22002b;
    --purple-middle : #450058;
    --purple-light : #6c0086;
    --white-middle : #e6e6e6;
    --white-light : #eeeeee;
    --filter-light : rgba(255,255,255,0.4);
    --text-shadow-light : rgb(240, 240, 240);
}
/* GLOBAL */
body {
    background: var(--white-light) url('/static/vitrine/img/background/0.png');
    background-position: center;
    background-repeat: repeat;
    color: var(--purple-dark);
    overflow: hidden !important;
}
.mw-80 {
    max-width: 80%;
}
.icon-decoration {
    border-left: 12px solid var(--white-light);
    position: absolute;
    top: 5%;
    left: 5%;
}
.icon-decoration::before {
    content: "";
    width: 12px;
    height: 33%;
    background-color: var(--purple-light);
    position: absolute;
    left: -12px;
    top:34%;
}
.icon-decoration::after {
    content: "";
    width: 12px;
    height: 33%;
    background-color: var(--purple-middle);
    position: absolute;
    left: -12px;
    top:67%;
}
.text-purple-dark {
    color: var(--purple-dark)
}
.bg-purple-middle {
    background-color: var(--purple-middle) !important;
}
/* HEADER */
.header {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: var(--purple-hard-dark) url('/static/vitrine/img/background/1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.filter-gradient-header {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right bottom, transparent, var(--white-light) 50%);
}
.header .header-text {
    width: auto;
    color: var(--purple-dark);
    text-align: center;
    z-index:99;
    max-width: 100%;
}
.header-subtitle {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.subtitle-1 {
    border-right: 12px solid var(--purple-light);
    position: relative;
}
.subtitle-1::before{
    content: "";
    width: 12px;
    height: 33%;
    background-color: var(--purple-middle);
    position: absolute;
    right: -12px;
    top:34%;
}
.subtitle-1::after{
    content: "";
    width: 12px;
    height: 33%;
    background-color: var(--purple-dark);
    position: absolute;
    right: -12px;
    top:67%;
}
.subtitle-2 {
    border-left: 12px solid var(--purple-dark);
    position: relative;
}
.subtitle-2::before{
    content: "";
    width: 12px;
    height: 33%;
    background-color: var(--purple-middle);
    position: absolute;
    left: -12px;
    top:34%;
}
.subtitle-2::after{
    content: "";
    width: 12px;
    height: 33%;
    background-color: var(--purple-light);
    position: absolute;
    left: -12px;
    top:67%;
}
/* SECURITY */
.row-security {
    background: var(--purple-hard-dark);
    color: var(--white-light);
}
.security-decoration {
    border-left: 12px solid var(--white-light);
}
.security-decoration::before{
    content: "";
    width: 12px;
    height: 25%;
    background-color: var(--purple-middle);
    position: absolute;
    left: 15px;
}
/* SERVICES */
.row-services {
    background: var(--white-light);
    color: var(--purple-hard-dark);
}
/* contact */
.row-contact {
    background: var(--white-light);
    color: var(--purple-hard-dark);
}
.contact-decoration {
    border-bottom: 12px solid var(--white-middle);
}
.contact-decoration::before{
    content: "";
    width: 33%;
    height: 12px;
    background-color: var(--purple-light);
    position: absolute;
    left: 34%;
    bottom: 0;
}
.contact-decoration::after{
    content: "";
    width: 33%;
    height: 12px;
    background-color: var(--purple-middle);
    position: absolute;
    left: 67%;
    bottom: 0;
}
.contactSelectDefault {
    color: #AAAAAA;
    font-weight: 400;
    font-size: 14px;
}
/* PRESENTATION */
.row-presentation {
    background: var(--white-light);
    color: var(--purple-hard-dark);
}
.row-presentation-avatar {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--purple-hard-dark);
    overflow: hidden;
    color: var(--white-light);
}
.presentation-img {
    background-color: transparent;
    max-width: 100%;
    width: auto;
}
.presentation-avatar-col {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: center;
}
.row-presentation-sub-description-1 {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--purple-middle);
    color: var(--white-light);
}
.row-presentation-sub-description-2 {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white-middle);
    color: var(--purple-dark);
}
.row-presentation-footer {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--purple-hard-dark);
    color: var(--white-light);
    border-top: 2px solid var(--purple-middle);
}
/* DECORATION */
.bg-decoration-gradient-top {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 12vh;
    background: linear-gradient(to top right, var(--purple-hard-dark) 50%, var(--purple-middle) 51%,transparent 52%);
}
.bg-decoration-gradient-bottom {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 6vh;
    background: linear-gradient(to bottom right, var(--purple-hard-dark) 50%, var(--purple-middle) 51%, transparent 52%);
}
.bg-decoration-border-top-left {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 50%;
    min-height: 3vh;
    background: var(--purple-hard-dark);
    border-top: 2px solid var(--purple-middle);
}
.bg-decoration-border-bottom-right {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 50%;
    min-height: 3vh;
    background: var(--purple-hard-dark);
    border-bottom: 2px solid var(--purple-middle);
}
.bg-decoration-border-top-right {
    position: absolute;
    bottom: 0;
    right: 0;
    min-width: 50%;
    min-height: 3vh;
    background: var(--purple-hard-dark);
    border-top: 2px solid var(--purple-middle);
}
.bg-decoration-border-bottom-left {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 50%;
    min-height: 3vh;
    background: var(--purple-hard-dark);
    border-bottom: 2px solid var(--purple-middle);
}