/* To disable blank at the to of the page */

* {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
}

/*********************************************************************************/

/* Page with footer at bottom */

body {
    position: relative;
    min-height: 100vh;
    transition: 0.2s;
    background-color: #2d2e33;
}

main {
    padding-bottom: 5.5rem;
}

.footer {
    background-color: #fcfcfc;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-top: 1.0rem;
    padding-bottom: 1.0rem;
    margin: 0 auto;
    display: block;
    text-align: center;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    font-size: 12px;
}

/*********************************************************************************/

/* Nav bar*/

header {
    transition: 0.4s;
    z-index: 10;
    /*overflow: hidden;*/
    position: fixed;
    top: 0;
    width: 100%;
}

header.scroll {
    background-color: #fcfcfc;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

header ul {
    list-style-type: none;
}

header a {
    float: left;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.5s;
}

.scroll a {
    color: #3a3a3a !important;
}

header img {
    filter: invert(1);
}

.scroll img {
    filter: invert(0);
}

header.scroll a:hover {
    background-color: #e0e0e0;
}

header ul.at_right a {
    float: right;
}

/*MOVE ?*/
.menu_modal a {
    display: block;
}

/*********************************************************************************/

/* Animations Opacity HTML */

html {
    animation: opac 1s;
}

@keyframes opac {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/*********************************************************************************/

/* Header mannager */

.title {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    color: white;
}

.title hr {
    height: 1.25px;
    margin: auto;
    padding: 0;
    /* color: #585858; */
    color: white;
    /* background-color: #585858; */
    background-color: white;
    border: 0;
    width: 340px;
    max-width: 90%;
    opacity: 0.50;
    /*animation: 0.5s linear 0.75s grow both;*/
    animation: 0.5s linear 0.75s grow both;
}

.title h1 {
    animation: 0.75s linear 0s hey_down both;
    position: relative;
    letter-spacing: 0.2em;
    text-indent: 0.200em;
}

.title h2 {
    animation: 0.75s linear 1.5s hey_left both;
    position: relative;
    letter-spacing: 0.200em;
    text-indent: 0.200em;
}

/*********************************************************************************/

/* Animations HTML*/

@keyframes grow {
    from {
        width: 0px;
    }

    to {
        width: 340px;
    }
}

@keyframes hey_up {
    from {
        top: -25px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes hey_down {
    from {
        top: 35px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes hey_left {
    from {
        left: -25px;
        opacity: 0;
    }

    to {
        left: 0px;
        opacity: 1;
    }
}

@keyframes web_left {
    0% {
        right: 25%;
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    100% {
        right: 0%;
        opacity: 1;
    }
}

@keyframes rotation_back {
    from {
        transform: rotate(0deg) scale(0);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes open_web {
    from {
        transform: scale(0.5);
    }

    to {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}

/*************************************************************************************************************************************************************/

/* Main mannager */

html {
    user-select: none;
    color: #585858;
    line-height: 1.7;
    height: 100%;
    scroll-behavior: smooth;
    animation: opac 1s;
}

main {
    text-align: center;
}

h1, h2, h3, h4 {
    font-weight: 400;
}

/*********************************************************************************/

/* Grid system */

@media (min-width:993px) {
    .grid-6 {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 1fr;
    }

    .grid-6 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-6 div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .grid-6 div:nth-child(3) {
        grid-area: 1 / 3 / 2 / 4;
    }

    .grid-6 div:nth-child(4) {
        grid-area: 1 / 4 / 2 / 5;
    }

    .grid-6 div:nth-child(5) {
        grid-area: 1 / 5 / 2 / 6;
    }

    .grid-6 div:nth-child(6) {
        grid-area: 1 / 6 / 2 / 7;
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }

    .grid-4 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-4 div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .grid-4 div:nth-child(3) {
        grid-area: 1 / 3 / 2 / 4;
    }

    .grid-4 div:nth-child(4) {
        grid-area: 1 / 4 / 2 / 5;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }

    .grid-3 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-3 div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .grid-3 div:nth-child(3) {
        grid-area: 1 / 3 / 2 / 4;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
    }

    .grid-2 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-2 div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }
}

@media (max-width:992px) and (min-width:691px) {
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .grid-6 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-6 div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .grid-6 div:nth-child(3) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid-6 div:nth-child(4) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .grid-6 div:nth-child(5) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .grid-6 div:nth-child(6) {
        grid-area: 3 / 2 / 4 / 3;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .grid-4 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-4 div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .grid-4 div:nth-child(3) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid-4 div:nth-child(4) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .grid-3 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-3 div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .grid-3 div:nth-child(3) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
    }

    .grid-2 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-2 div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }
}

@media (max-width: 690px) {
    .grid-6 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }

    .grid-6 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-6 div:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid-6 div:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .grid-6 div:nth-child(4) {
        grid-area: 4 / 1 / 5 / 2;
    }

    .grid-6 div:nth-child(5) {
        grid-area: 5 / 1 / 6 / 2;
    }

    .grid-6 div:nth-child(6) {
        grid-area: 6 / 1 / 7 / 2;
    }

    .grid-4 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .grid-4 div:nth-child(1) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid-4 div:nth-child(2) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .grid-4 div:nth-child(3) {
        grid-area: 4 / 1 / 5 / 2;
    }

    .grid-4 div:nth-child(4) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }

    .grid-3 div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .grid-3 div:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .grid-3 div:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
    }
}

.grid {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 50px;
    max-width: 1500px;
    margin: auto;
    padding: 10px;
    /* width:max-content */
}

.grid h3 {
    font-size: 18px;
    padding-bottom: 0 !important;
    margin-left: 15px;
    margin-right: 15px;
}

.grid p {
    font-size: 15px;
}

/* .grid-6 div:nth-child(1) { background-color: #70ff38; }
.grid-6 div:nth-child(2) { background-color: #385dff; }
.grid-6 div:nth-child(3) { background-color: #fffc38; }
.grid-6 div:nth-child(4) { background-color: #ff3838; }
.grid-6 div:nth-child(5) { background-color: #8e38ff; }
.grid-6 div:nth-child(6) { background-color: #38e8ff; }

.grid-4 div:nth-child(1) { background-color: #70ff38; }
.grid-4 div:nth-child(2) { background-color: #385dff; }
.grid-4 div:nth-child(3) { background-color: #fffc38; }
.grid-4 div:nth-child(4) { background-color: #ff3838; }

.grid-3 div:nth-child(1) { background-color: #70ff38; }
.grid-3 div:nth-child(2) { background-color: #385dff; }
.grid-3 div:nth-child(3) { background-color: #ff3838; }


.grid-2 div:nth-child(1) { background-color: #70ff38; }
.grid-2 div:nth-child(2) { background-color: #385dff; } */


/*********************************************************************************/

/* Device screen width responsive */

/*Hide for ... large, medium, small*/
@media (min-width:993px) {
    .hide-large {
        display: none;
    }

    .w70-80-95 {
        width: 70%;
    }

    .resp_container {
        float: left;
    }

    .title h1 {
        font-size: 40px;
    }

    .toppage-center {
        border: 4px solid #FFFFFF;
    }

    .title h2 {
        font-size: 16px;
    }

    .resp_text_max {
        width: 50%;
    }

    .container_flex_div_four {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .div_flex1_four {
        grid-area: 1 / 1 / 2 / 2;
    }

    .div_flex2_four {
        grid-area: 1 / 2 / 2 / 3;
    }

    .div_flex3_four {
        grid-area: 1 / 3 / 2 / 4;
    }

    .div_flex4_four {
        grid-area: 1 / 4 / 2 / 5;
    }

    .div_flex1_three img, .div_flex2_three img, .div_flex3_three img, .div_flex1_four img, .div_flex2_four img, .div_flex3_four img, .div_flex4_four img {
        filter: grayscale(0);
    }

    .container_flex_div_three {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 30px;
    }

    .div_flex1_three {
        grid-area: 1 / 1 / 2 / 2;
    }

    .div_flex2_three {
        grid-area: 1 / 2 / 2 / 3;
    }

    .div_flex3_three {
        grid-area: 1 / 3 / 2 / 4;
    }
}

@media (max-width:992px) and (min-width:691px) {
    .hide-medium {
        display: none;
    }

    .w70-80-95 {
        width: 80%;
    }

    .resp_container {
        float: left;
    }

    .title h1 {
        font-size: 40px;
    }

    .toppage-center {
        border: 4px solid #FFFFFF;
    }

    .title h2 {
        font-size: 16px;
    }

    .resp_text_max {
        width: 80%;
    }

    /*Change to width is bettee*/

    .container_flex_div_four {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 30px;
    }

    .div_flex1_four {
        grid-area: 1 / 1 / 2 / 2;
    }

    .div_flex2_four {
        grid-area: 1 / 2 / 2 / 3;
    }

    .div_flex3_four {
        grid-area: 2 / 1 / 3 / 2;
    }

    .div_flex4_four {
        grid-area: 2 / 2 / 3 / 3;
    }

    .div_flex1_three img, .div_flex2_three img, .div_flex3_three img, .div_flex1_four img, .div_flex2_four img, .div_flex3_four img, .div_flex4_four img {
        filter: grayscale(0);
    }

    .container_flex_div_three {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 30px;
    }

    .div_flex1_three {
        grid-area: 1 / 1 / 2 / 2;
    }

    .div_flex2_three {
        grid-area: 1 / 2 / 2 / 3;
    }

    .div_flex3_three {
        grid-area: 1 / 3 / 2 / 4;
    }

}

@media (max-width: 690px) {
    .hide-small {
        display: none;
    }

    .w70-80-95 {
        width: 95%;
    }

    /* .resp_container {float: none;} */
    .title h1 {
        font-size: 30px;
    }

    .title h2 {
        font-size: 14px;
    }

    .container_flex_div_four {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 30px;
    }

    .div_flex1_four {
        grid-area: 1 / 1 / 2 / 2;
    }

    .div_flex2_four {
        grid-area: 2 / 1 / 3 / 2;
    }

    .div_flex3_four {
        grid-area: 3 / 1 / 4 / 2;
    }

    .div_flex4_four {
        grid-area: 4 / 1 / 5 / 2;
    }

    .div_flex1_three img, .div_flex2_three img, .div_flex3_three img, .div_flex1_four img, .div_flex2_four img, .div_flex3_four img, .div_flex4_four img {
        filter: grayscale(0);
    }

    .container_flex_div_three {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 30px;
    }

    .div_flex1_three {
        grid-area: 1 / 1 / 2 / 2;
    }

    .div_flex2_three {
        grid-area: 2 / 1 / 3 / 2;
    }

    .div_flex3_three {
        grid-area: 3 / 1 / 4 / 2;
    }

    .main-section {
        border-radius: 9px !important;
    }
}

/*********************************************************************************/

/* Top page */

.toppage {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/_back_logo_blur.png);
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* filter: blur(4px) invert(1); */
    /* Disable for safari */
    /* -webkit-filter: blur(4px) invert(1); */
    z-index: -1;
    background-size: calc(200px + 1.0*var(--gototopPR-X));
}

.toppage-container {
    height: 100vh;
    position: relative;
}

.nop-top {
    padding-top: 0px !important;
}


.nop-bot {
    padding-bottom: 0px !important;
}

.toppage-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    width: 500px;
    padding-bottom: 30px;
    padding-top: 30px;
    max-width: 85%;
    transition: translate 0.2s;
    opacity: calc(1 - 0.003*var(--gototop-X));
}

.toppage-container h1 {
    z-index: 2;
}

.gototop {
    transform: translate(0%, calc(30% - (var(--gototop)*1.5)));
}

.bottom_scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 0);
    color: #ffffff;
    /* animation: scroll-bro 1.5s ease-in-out 0s infinite alternate none; */
    /* animation: scroll-bro 1.5s cubic-bezier(.45,.05,.55,.95) 0s infinite alternate none; */
    animation: scroll-bro 1.5s cubic-bezier(.45, .05, .55, .95) 0s infinite;
    transition: transform 0.4s;
    font-size: 20px;
    opacity: calc(1 - 0.003*var(--gototop-X));
}

@keyframes scroll-bro {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(-15px);
    }

    99.8% {
        transform: translate(0);
    }
}

/*********************************************************************************/

:root {
    --gototopPX-100: 0px;
    --gototop-100: 0;
    --gototop-X: 0;
    --gototopPR-100: 0%;
    --gototopPR-X: 0%;
    --bgAppSection: white;
}

.text_left_border p {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 2;
}

.text_left_border {
    border-left: solid #3e3e3e;
    margin-left: 10px;
}

.text_left {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 500px;
}

.goright {
    margin-left: auto;
}

.grid {
    padding-top: 100px;
    padding-bottom: 40px;
}

.btn-container {
    max-width: 500px;
    text-align: center;
}

.btn-container button {
    border: 1px solid #585858;
    border-radius: 5px;
    padding: 15px 35px;
    font-size: 13px;
    margin-top: 15px !important;
    background-color: white;
    transition: 0.4s;
}

.btn-container button:hover {
    border-radius: 10px;
    background-color: #585858;
    color: white;
}

h2:not(.title h2) {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px !important;
}

h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 7px;
}

.big-icon {
    font-size: 30px;
}

/* Moving element */

*[name="ne-moving_element"] {
    position: relative;
}

.left-transition {
    opacity: 0;
    left: -10%;
    transition-duration: 0.5s;
}

.left-transition.ne-transition {
    left: 0px !important;
    top: 0px !important;
    opacity: 1 !important;
}

.right-transition {
    opacity: 0;
    right: -10%;
    transition-duration: 0.5s;
}

.right-transition.ne-transition {
    right: 0px !important;
    top: 0px !important;
    opacity: 1 !important;
}

.down-transition {
    opacity: 0;
    top: 20px;
    transition-delay: 0.15s;
    transition-duration: 1s;
}

.down-transition.ne-transition {
    left: 0px !important;
    top: 0px !important;
    opacity: 1 !important;
}

/* .title-transition {
    transition-delay: 0.5s, 0.5s, 0.5s, 0.5s, 0.5s, 0.5s;
    transition-duration: 1s, 1s, 1s, 1s, 1s, 1s;
    transition-property: background-color, color, padding, outline, border, box-shadow;
    
    width:max-content;
    margin:auto;
}

.title-transition.ne-transition {
    background-color: rgba(0, 0, 0, 0.8);
    color:white;
    padding: 15px;
    margin-bottom: 15px;
    outline: 10px solid rgba(0, 0, 0, 0.8);
    border: 3px solid white;
    noanimation: 4s float 1.5s ease-in-out infinite;
    box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
} */

.title-transition {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    margin-bottom: 15px;
    /* outline: 10px solid rgba(0, 0, 0, 0.8); */
    border: 3px solid white;
    border-radius: 8px;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    width: max-content;
    margin: auto;
    opacity: 0;
    top: 20px;
    transition-delay: 0s;
    transition-duration: 1s;
}

.title-transition.ne-transition {
    left: 0px !important;
    top: 0px !important;
    opacity: 1 !important;
}

.resp_text_max {
    margin: auto;
}

.div_flex1_three, .div_flex2_three, .div_flex3_three, .div_flex1_four, .div_flex2_four, .div_flex3_four, .div_flex4_four {
    opacity: 0;
    top: 10%;
    position: relative;
}

.div_flex1_three img, .div_flex2_three img, .div_flex3_three img, .div_flex1_four img, .div_flex2_four img, .div_flex3_four img, .div_flex4_four img {
    position: relative;
    transition: 0.5s;
    z-index: 2;
}

.div_flex1_three h3, .div_flex2_three h3, .div_flex3_three h3, .div_flex1_four h3, .div_flex2_four h3, .div_flex3_four h3, .div_flex4_four h3 {
    transition: 0.2s;
    z-index: 1;
}

.div_flex1_three:hover img, .div_flex2_three:hover img, .div_flex3_three:hover img, .div_flex1_four:hover img, .div_flex2_four:hover img, .div_flex3_four:hover img, .div_flex4_four:hover img {
    transform: scale(1.2);
    cursor: pointer;
    filter: grayscale(0);
}

.div_flex1_three:hover h3, .div_flex2_three:hover h3, .div_flex3_three:hover h3, .div_flex1_four:hover h3, .div_flex2_four:hover h3, .div_flex3_four:hover h3, .div_flex4_four:hover h3 {
    opacity: 0;
}

.div_flex1_three.ne-transition, .div_flex2_three.ne-transition, .div_flex3_three.ne-transition, .div_flex1_four.ne-transition, .div_flex2_four.ne-transition, .div_flex3_four.ne-transition, .div_flex4_four.ne-transition {
    opacity: 1;
    top: 0%;
}

.ne-transition>.div_flex1_four {
    animation: 0.75s cubic-bezier(.42, .03, .33, 1.92) 0s hey_down both;
}

.ne-transition>.div_flex2_four {
    animation: 0.75s cubic-bezier(.42, .03, .33, 1.92) 0.3s hey_down both;
}

.ne-transition>.div_flex3_four {
    animation: 0.75s cubic-bezier(.42, .03, .33, 1.92) 0.6s hey_down both;
}

.ne-transition>.div_flex4_four {
    animation: 0.75s cubic-bezier(.42, .03, .33, 1.92) 0.9s hey_down both;
}


.ne-transition>.div_flex1_three {
    animation: 0.75s cubic-bezier(.42, .03, .33, 1.92) 0s hey_down both;
}

.ne-transition>.div_flex2_three {
    animation: 0.75s cubic-bezier(.42, .03, .33, 1.92) 0.3s hey_down both;
}

.ne-transition>.div_flex3_three {
    animation: 0.75s cubic-bezier(.42, .03, .33, 1.92) 0.6s hey_down both;
}

/*********************************************************************************/

/* Modal Gestion*/

.modal {
    display: none;
    opacity: 0;
    position: fixed;
    z-index: 25;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.5s;
}

.menu-modal {
    display: none;
    position: fixed;
    z-index: 25;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.5s;
}

.menu-modal-content {
    position: absolute;
    right: 0;
    height: 100%;
    width: 40%;
    padding: 0;
    background-color: #fefefe;
}

.menu-modal:target {
    display: block;
}

.menu-modal:target .menu-modal-content {
    animation: hey_right 0.5s both;
}

@keyframes hey_right {
    from {
        right: -50px;
        opacity: 0;
    }

    to {
        opacity: 1;
        right: 0px;
    }
}

.modal:target {
    display: block;
    animation: modal_open 0.5s both;
}

.modal.view {
    display: block;
    animation: modal_open 0.5s both;
}

@keyframes modal_open {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    padding: 0;
    border-radius: 8px;
    margin-bottom: 20%;
}

.modal-content-content {
    margin: 30px;
}

.close {
    font-weight: bold;
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 2px;
    float: right;
}

a .close:hover {
    color: #ccc;
}

a {
    color: #3a3a3a;
    text-decoration: none;
}

.image-resp {
    max-width: 70%;
}

/*********************************************************************************/

.top-banner {
    top: 0;
    position: relative;
    left: 0;
    margin: auto;
    width: 100%;
    background-repeat: no-repeat;
    height: auto;
    background-image: url("../img/angled_banner_bottom.png");
    height: 250px;
}

.bottom-banner {
    position: relative;
    left: 0;
    margin: auto;
    width: 100%;
    background-image: url("../img/angled_banner.png");
    height: 224px;
}

.logo_nav {
    padding: 9.5px;
    margin: auto;
    width: min-content;
    width: 50px;
    text-align: center;
}

.logo_nav>img {
    width: 50px;
    text-align: center;
}

.first_banner {
    bottom: -8px;
    position: absolute;
    left: 0;
    margin: auto;
    width: 100%;
    height: 40px;
}

section:not(.toppage-container) {
    padding-top: 1px;
}

section {
    max-width: 100%;
    overflow-x: hidden;
}

.container_flex_div_four img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}

.container_flex_div_three img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}

.title-transition {
    margin-bottom: 60px;
    margin-top: 40px;
}

.container_flex_div_three img {
    width: 80%;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}

.div_app {
    padding-bottom: 100px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.app_section {
    background-color: rgba(91, 131, 155, 0.2);
    /* transform: skew(0deg, -5deg); */

}

.mb30 {
    margin-bottom: 60px !important;
}

/*********************************************************************************/

.contact_btn {
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    font-size: 15px;
    border: none;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff !important;
    transition: 0.4s;
}


.contact_btn:hover {
    background-color: rgba(91, 131, 155, 0.7);
    transform: scale(0.9);
}

.ne-scale.ne-transition {
    animation: ne_zoomIn 0.5s;
    opacity: 1 !important;
}

.ne-scale {
    opacity: 0 !important;
}

@keyframes ne_zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

#contact h3 {
    margin-bottom: 30px;
}

h3 {
    margin-top: 20px;
}

.main-section {
    background-color: #fefefe;
    max-width: 95%;
    width: 1500px;
    margin: auto;
    border-radius: 30px;
    margin-top: 20px;
    box-shadow: 0 2px 5px 0 rgba(255, 255, 255, 0.8), 0 2px 10px 0 rgba(255, 255, 255, 0.8);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.logo_image_container {
    display: flex;
    justify-content: center;
}

.logo_image {
    max-width: 90%;
    height: 100px;
}

.logo_image .ne-transition {
    animation: 0.75s cubic-bezier(.42, .03, .33, 1.92) 0s hey_down both;
}

.separation {
    height: 2px;
    width: 300px;
    background-color: #333;
    margin: auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

.m-auto {
    margin: auto;
}

.input-contact {
    border: 1px solid #585858;
    border-radius: 5px;
    padding: 15px 15px;
    font-size: 13px;
    margin-top: 15px !important;
    background-color: white;
    transition: 1s;
    display: block;
    margin: auto;
}

.input-contact:focus {
    outline: none;
    padding: 15px 35px;
    transition: 0.4s;
    border: 1px solid #585858;
    box-shadow: 0px 0px 3px rgb(0, 153, 255);
}

/* Boostrap alert */

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    margin: 20px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/*********************************************************************************/

/* Media querys */

@media (min-width:993px) {
    .ncard-img{
        text-align: right;
        margin-right: 83px;
    }
}

@media (max-width:992px) and (min-width:691px) {
    .ncard-img{
        text-align: right;
        margin-right: 83px;
    }
}

@media (max-width: 690px) {

}

/*********************************************************************************/