/* 
** Ce fichier regroupe toutes les class CSS utilisées pour le site ;
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Global */
:root {
    --color-primary: #2C3E92;   
    --color-primary-rgb: 191, 30, 46;

    --color-secondary: #FF8A00;
    --color-secondary-rgb: 50, 50, 50;

    --color-text: #ced2d4;
    --color-text-rgb: 0, 0, 0;
    --color-nav-link: #323232;
    --color-border: #DCDCDC;
}

html,
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #000000;
	color: #a5a5a5;
}
html,
body,
p {
    color: var(--color-text);
    line-height: 1.8rem;
    font-weight: 400;
    font-size: 16px;
}
body[data-aos-easing] section {
    max-width: 100%;
    overflow: hidden;
}
strong {
    font-weight: 600;
}
section {
    padding-top: 70px;
    padding-bottom: 70px;
}
hr {
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-color: rgba(255, 255, 255, .05);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #fff;
}
h1 {
    font-size: 68px;
}
h2 {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

h3 {
    font-size: 18px;
    margin-bottom: 16px;
}
h4 {
    font-size: 18px;
}

/* Fast Class */
.color-primary {
    color: var(--color-primary) !important;
}
.color-secondary {
    color: var(--color-secondary) !important;
}
.bg-primary {
    background: var(--color-primary) !important;
}
.bg-secondary {
    background: var(--color-seondary) !important;
}
.mt-block {
    margin-top: 30px;
}
.z-index-1 {
    z-index: 1;
}
#pageLoader {
    position: fixed;
    z-index: 2048;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pageLoader .bi {
    font-size: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: pageLoader 1s linear infinite;
}
#pageLoader.loader-hidden {
    opacity: 0;
    max-height: 0vh;
    transition: 
        opacity .4s ease-out .3s, 
        max-height 0s ease .7s;
}

/* Header */
header {
    padding-top: 50px;
    padding-bottom: 20px;
}
header h1 {
    font-size: 28px;
    margin-bottom: 0;
}
#header {
	background-color: #000;
	height: 100vh;
    background-image: url(../images/thibaultlamour.png);
    background-size: auto calc(100% - 30px);
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 100px;
    margin-bottom: 70px;
}
.logo-tl {
    width: 80%;
    max-width: 350px;
    animation: logoLighting 2s cubic-bezier(0.72, 0.06, 1, 1) infinite;
}

/* Footer */
footer {
    padding: 20px 0;
}
footer p {
    font-size: 12px;
    color: #888;
    text-align: center;
}

.super-line {
    height: 3px;
    background: rgb(120,92,54);
    background: linear-gradient(90deg, rgba(120,92,54,1) 0%, rgba(195,158,91,1) 25%, rgba(226,202,134,1) 50%, rgba(207,172,104,1) 75%, rgba(127,97,57,1) 100%);
}

/* Components */
.block {
    background-color: rgba(200, 200, 255, .1);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid transparent;
    border-top-color: rgba(255, 255, 255, .05);
    box-shadow: 0 20px 50px -30px rgba(20, 100, 255, .2);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}
a.block {
    text-decoration: none;
    transition: all .3s;
    color: rgba(50, 100, 180, .4);
    display: block;
}
a.block:hover,
a.block-line:hover {
    border-color: rgba(255, 255, 255, .2);
    animation: blockShadow 2s linear infinite;
}
a.block:hover .link .bi,
a.block-line:hover .link .bi {
    animation: linkArrow 1s ease infinite;
}
.block p {
    font-size: 14px;
}
.block.block-legend {
    padding: 30px;
    background: rgba(35, 35, 47, .9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}
.block-uix {
    background-color: rgba(200, 200, 255, .05);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}
.block-uix .bi {
    position: absolute;
    top: 0;
    left: 30px;
    font-size: 22px;
    line-height: 10px;
    color: #fff;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 100%;
}
a.block-line {
    text-decoration: none;
    transition: all .3s;
    color: rgba(50, 100, 180, .4);
    display: block;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
}
.block-line p,
.block-line a {
    font-size: 14px;
    color: #aaa;
}
.block-uix.block-success {
    border: 1px solid green;
}
.block-uix.block-success .bi {
    background-color: green;
}
.block-uix.block-danger {
    border: 1px solid red;
}
.block-uix.block-danger .bi {
    background-color: red;
}
.blured-gradient {
    position: relative;
}
.blured-gradient::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-image: radial-gradient(#00348a, #000);
}
.blured-gradient.gradient-green a.block {
    color: rgba(65, 151, 30, .4);  
}
.blured-gradient.gradient-green::before {
    background-image: radial-gradient(#456800, #000);
}
.blured-gradient.gradient-pink a.block {
    color: rgba(150, 30, 151, .4);  
}
.blured-gradient.gradient-pink::before {
    background-image: radial-gradient(#680037, #000);
}

.col-sticky {
    position: sticky;
    top: 100px;
    z-index: 1;
}
.block-uix.block-success .title-ux {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    width: 100%;
    text-align: left;
}
.block-uix.block-danger .title-ux {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    text-align: left;
}
.block-uix.block-success .text-ux {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    line-height: 1.2rem;
}
.block-uix.block-danger .text-ux {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 2rem;
}

.block-uix.block-danger .btn-ui {
    background: #777;
    color: #eee;
    border: 2px solid #555;
    padding: 10px;
}
.block-uix.block-success .btn-ui {
    background: #4b8fe8;
    color: #fff;
    padding: 10px 25px;
    border-radius: 7px;
    text-transform: capitalize;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 
        inset 0 1px 0 rgb(255 255 255 / 20%),
        0 2px 10px -4px rgba(75, 142, 232, .5);
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
}
.block-uix.block-success .btn-ui-hover {
    background: #305e9b;
    color: #fff;
    padding: 10px 25px;
    border-radius: 7px;
    text-transform: capitalize;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 
        inset 0 0 0 rgb(255 255 255 / 20%),
        0 0 8px 0 rgba(75, 142, 232, .3);
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
}
.block-uix.block-success .btn-ui-active {
    background: #2f5e9b;
    color: #fff;
    padding: 10px 25px;
    border-radius: 7px;
    text-transform: capitalize;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: inset 0 0 0 rgb(255 255 255 / 20%), 0 2px 5px 0 rgb(75 142 232 / 80%);
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    outline: 2px solid #4b8ee8;
    text-align: center;
}
.block-uix.block-success .btn-ui-disabled {
    background: #4b8fe8;
    color: #fff;
    padding: 10px 25px;
    border-radius: 7px;
    text-transform: capitalize;
    border: 1px solid rgba(0,0,0,0.2);
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    opacity: .5;
    text-align: center;
}
.projects-wrapper {
    padding-left: 40px;
}
.project-item {
    position: relative;
}
.project-item::before {
    content: " ";
    position: absolute;
    top: 6px;
    left: -40px;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 100%;
    background-color: #fff;
    border: 4px solid #000;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .4);
    transform: scale(0);
}
.project-item:not(:last-child)::after {
    content: " ";
    position: absolute;
    top: 22px;
    left: -33px;
    width: 1px;
    /* height: calc(100% + 83px); */
    height: 0px;
    display: block;
    background-color: rgba(255, 255, 255, .4);
}
.project-item:nth-child(1)::before {
    animation: projectBullet 1s forwards .5s;
}
.project-item:nth-child(1)::after {
    animation: projectLine 1s forwards 1s;
}
.project-item:nth-child(2)::before {
    animation: projectBullet 1s forwards 2s;
}
.project-item:nth-child(2)::after {
    animation: projectLine 1s forwards 3s;
}
.project-item:nth-child(3)::before {
    animation: projectBullet 1s forwards 4s;
}
.project-item:nth-child(3)::after {
    animation: projectLine 1s forwards 5s;
}
.project-item:nth-child(4)::before {
    animation: projectBullet 1s forwards 6s;
}
.project-item:nth-child(4)::after {
    animation: projectLine 1s forwards 7s;
}
.project-item:nth-child(5)::before {
    animation: projectBullet 1s forwards 8s;
}
.project-item:nth-child(5)::after {
    animation: projectLine 1s forwards 9s;
}
.project-item:nth-child(6)::before {
    animation: projectBullet 1s forwards 10s;
}
.project-item:nth-child(6)::after {
    animation: projectLine 1s forwards 11s;
}
.project-item:nth-child(7)::before {
    animation: projectBullet 1s forwards 12s;
}
.project-item:nth-child(7)::after {
    animation: projectLine 1s forwards 13s;
}
.project-item:nth-child(8)::before {
    animation: projectBullet 1s forwards 14s;
}
.project-item:nth-child(8)::after {
    animation: projectLine 1s forwards 15s;
}
.project-item:nth-child(9)::before {
    animation: projectBullet 1s forwards 16s;
}
.project-item:nth-child(9)::after {
    animation: projectLine 1s forwards 17s;
}
.project-item:not(:last-child) {
    margin-bottom: 100px;
}

.p-text {
    position: relative;
    padding: 5px 0 5px 25px;
    /* border-left: 5px solid #fff; */
    margin-bottom: 0;
}
.p-text::before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    border-radius: 5px;
    background-color: #00348a;
    border-left: 1px solid rgba(255, 255, 255, .1);
}
.p-text.p-text-pink::before {
    background-color: #680037;
}
.p-text.p-text-green::before {
    background-color: #456800;
}
/* Window */
.window {
    background-color: rgba(200, 200, 255, .1);
    box-shadow: 0px 20px 100px -30px rgba(100,110,150,.5);
    border-radius: 12px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    box-shadow: 0 30px 60px -30px rgb(120, 170, 255, .3);
    z-index: 0;
}
.window .window-head {
    padding: 8px 15px;
    position: relative;
    text-align: center;
    user-select: none;
    pointer-events: none;
}
.window .window-head span {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: .8;
}
.window .window-head span:nth-child(1) {
    background-color: #ef6161;
    left: 20px;
}
.window .window-head span:nth-child(2) {
    background-color: #f1c550;
    left: 38px;
}
.window .window-head span:nth-child(3) {
    background-color: #7bcd7b;
    left: 55px;
}
.window .window-head div {
    display: inline-block;
    padding: 8px 50px;
    border-radius: 5px;
    background-color: rgba(200, 200, 255, .1);
    font-size: 12px;
    color: #ddd;
    opacity: .85;
    line-height: 12px;
}
.window .window-body {
    padding: 0 6px 6px;
}
.window .window-body .window-content,
.tablet .tablet-content {
    padding-top: 56%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden;
}
.window .window-body .window-content img,
.tablet .tablet-content img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: top center;
}
.tablet {
    background-color: rgba(200, 200, 255, .1);
    box-shadow: 0px 20px 100px -30px rgba(100,110,150,.5);
    border-radius: 30px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    box-shadow: 0 30px 60px -30px rgb(120, 170, 255, .3);
    padding: 8px;
    position: relative;
}
.tablet .tablet-content {
    padding-top: 75%;
    border-radius: 22px;
}
.tablet::after {
    content: " ";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 10px 10px 0;
    height: 20%;
    width: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    background-color: #14141b;
}
.code-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 7px;
}
.code-item {
    font-size: 12px;
    font-family: monospace;
    font-weight: 400;
    color: #ddd;
    background-color: rgba(200, 200, 255, .1);
    line-height: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

/* Buttons & Links */
.link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}
.link .bi {
    margin-left: 5px;
    transition: all .2s;
}
.link:hover {
    text-decoration: none;
    color: #fff;
}
.btn {
    padding: 6px 17px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 99px;
}
.btn.btn-primary {
    background-color: #fff;
    color: #000;
    border: none;
    font-weight: 500;
}
.btn.btn-icon {
    background-color: rgba(200, 200, 255, .15);
    color: #fff;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 10px;
    font-size: 16px;
    border: 1px solid transparent;
    border-top-color: rgba(255, 255, 255, .05);
    transition: .3s;
}
.btn.btn-icon:hover {
    border-color: rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 4px rgba(50, 100, 180, .4);
}


/* Slider */

/* .slider-wrapper {
    width: 100%;
    padding-top: 42%;
    position: relative;
    background-color: #D4F1F4;
    border-bottom: 2px solid var(--color-primary);
    
}   */
/* .slider-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
} */
.slider-img-wrapper {
    padding-top: 0 !important;
    display: flex;
    flex-direction: row;
}
.slider-img-wrapper .slider-img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    padding-top: 56%;
    position: relative;
    transition: 0.3s cubic-bezier(.79,.03,0,.99);
} 
.slider-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.slider-btn-wrapper .slider-btn-prev,
.slider-btn-wrapper .slider-btn-next {
    color: #fff;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
}
.slider-btn-wrapper div i {
    font-size: 16px;
    line-height: 14px;
    color: #000;
    -webkit-text-stroke: thin;
}
.slider-btn-wrapper div:not(div.disabled):active i {
    opacity: 0.7;
}
  /* Disabled Button */
.slider-btn-wrapper > div.disabled i {
    cursor: no-drop;
    opacity: 0.3;
}
.slider-pagination span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    opacity: 0.4;
}
.slider-pagination span:not(:last-child) {
    margin-right: 10px;
}
.slider-pagination span.active {
    transform: scale(1);
    opacity: 1;
}

/* Media Queries */
@media (max-width: 575px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #header {
        background-size: auto calc(100% - 60px);
        padding-bottom: 180px;
    }
    .block,
    .block-line {
        padding: 30px;
    }
    .block.block-legend {
        padding: 20px;  
    }
    .window .window-head {
        padding: 5px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .window .window-head div {
        padding: 5px 50px;
        font-size: 11px;    
    }
}
@media (max-width: 768px) {
    .block-uix {
        padding: 20px;
    }
    .window,
    .tablet {
        margin-bottom: 20px;
    }
}
@media (min-width: 992px) {
    /* .row .block,
    .row .blured-gradient  {
        height: 100%;
    } */    
    .trans-left {
        width: calc(100% + 100px);
    }
    .trans-right {
        width: calc(100% + 100px);
        margin-left: -100px
    }
}

/* Animations */
@keyframes logoLighting {
    0% {
        filter: drop-shadow(0 0 10px rgba(50, 100, 180, .4));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(50, 100, 180, 1));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(50, 100, 180, .4));
    }
}
@keyframes linkArrow {
    0% {
        margin-left: 5px;
    }
    50% {
        margin-left: 15px;
    }
    100% {
        margin-left: 5px;
    }
}
@keyframes blockShadow {
    0% {
        box-shadow: 0 0 0 1px;
    }
    50% {
        box-shadow: 0 0 0 6px;
    }
    100% {
        box-shadow: 0 0 0 1px;
    }
}
@keyframes pageLoader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes projectBullet {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes projectLine {
    from {
        height: 0px;
    }
    to {
        height: calc(100% + 83px);
    }
}