@import url("https://fonts.cdnfonts.com/css/ica-rubrik-black");
@import url("https://fonts.cdnfonts.com/css/poppins");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
  --color-black: #000;
  --color-white: #FFF;
  --color-dark-gray: #3D3D3D;
  --color-light-gray: #E6E6E6 ;
  --color-s-b-light:#ffffff9d;
  --color-s-b-dark:#2523233a;
  --color-s-b-light-hover:#f3f3f399;
  --color-s-b-dark-hover:#00000048;
  --color-black-n-1: #222;
  --color-white-n-1: #fff;
  --color-inset-shadow-dark: #5050501a;
  --color-inset-shadow-light: #ffffff1a;
  --color-light-gray-2: #E6E6E6;
  --color-shadow-purple: #1d0dca17;
  --bg-color-1: #F3F3F3;
  --bg-color-2: #E2E2E2;
  --bg-color-3: #E6E6E6;
  --bg-shadow: #32323233; }

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden; 
}
  @media (min-width: 1800px) {
    html {
      font-size: 75%; } }
  @media (max-width: 1200px) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 900px) {
    html {
      font-size: 50%; } }
  @media (max-width: 600px) {
    html {
      font-size: 37.5%; } }
  @media (max-width: 360px) {
    html {
      font-size: 31.25%; } }

*{
  margin: 0;
  padding: 0; }

*,
*::after,
*::before {
  box-sizing: inherit; }

body {
  min-height: 100vh;
  transition: ease-in-out .5s;
  background-color: var(--color-light-gray); }

section {
  padding-top: 10rem;
  padding-bottom: 10rem; }

.debordment {
  max-width: 1320px;
  margin: 0 auto;
  /*     padding: 0 1.5rem;
 */ }
  @media (max-width: 1200px) {
    .debordment {
      padding: 0 5rem; } }
  @media (min-width: 1200px) {
    .debordment {
      padding: 0 3rem; } }

body {
  font-family: 'Nunito';
  font-weight: 200;
  color: var(--color-dark-gray);
  font-size: 2rem; }

a {
  text-decoration: none; }

nav a, footer a {
  color: var(--color-dark-gray);
  font-weight: 700; }

h2 {
  font-size: 4.8rem;
  color: var(--color-dark-gray);
  font-weight: 800;
  margin-bottom: 8rem; }
  h2::first-letter {
    color: #0C77E2; }
  h2 span {
    color: #0C77E2; }

h3 {
  font-size: 3rem;
  font-weight: 600; }

p {
  font-weight: 300; }

.about_us-section p {
  text-align: justify; }

@media (max-width: 900px) {
  nav li {
    font-size: 1.5rem; } }

.services-item {
  color: #FFFFFF; }

.services-item h3, .services-item p {
  z-index: 3; }

nav {
  height: 9.6rem;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  /* position: fixed;
    box-shadow: 0 .3rem 1rem rgba(#3D3D3D, .3); */ }

.nav_menu {
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 900px) {
    .nav_menu {
      display: none; } }
  .nav_menu div {
    display: flex;
    justify-content: center;
    align-items: center; }
    .nav_menu div:hover span {
      background-color: #0C77E2;
      box-shadow: 0 0 1px #0C77E2, 0 0 5px #0C77E2, 0 0 10px #0C77E2, 0 0 20px #0C77E2; }
    .nav_menu div:hover a::before {
      width: calc(100% - (1.6rem)); }
    .nav_menu div:hover a::after {
      width: 1rem; }
  .nav_menu li {
    display: inline-block;
    list-style: none;
    margin: 0 .3rem;
    padding: .8rem; }
    .nav_menu li .nav-section_link {
      position: relative; }
      .nav_menu li .nav-section_link::before, .nav_menu li .nav-section_link::after {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: -.2rem;
        left: 3px;
        width: 0%;
        height: 2px;
        background-color: #0C77E2;
        transition: .5s ease-in-out; }
      .nav_menu li .nav-section_link::before {
        left: 1.6rem; }
      .nav_menu li .nav-section_link::after {
        left: 0; }
    .nav_menu li .nav_logo-box {
      display: inline-block;
      height: 9.6rem;
      width: 9.6rem; }
      .nav_menu li .nav_logo-box .nav-logo {
        width: 100%; }
  .nav_menu span {
    width: .6rem;
    height: .6rem;
    margin: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateZ(45deg);
    background-color: var(--color-dark-gray);
    transition: ease-in-out .5s;
    transition-delay: .5s; }

.mobile-navbar {
  width: 100vw;
  position: fixed;
  bottom: 0;
  padding: 0 3rem;
  background-color: var(--color-white-n-1);
  box-shadow: #000000 0px -5px 8px -8px;
  z-index: 15;
  display: none; }
  @media (max-width: 900px) {
    .mobile-navbar {
      display: block; } }
  .mobile-navbar ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* & li{
            width: 12rem;
            height: 13rem;
            list-style: none;
            padding: 1.5rem 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 3px;




            a{
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 7rem;
                svg{
                    transition: ease-in-out .5s;
                    fill: var(--color-dark-gray);
                    width: 4rem;
                }
            }

            span{
                font-weight: 500;
            }
            
        } */
    /* .indicatour{
            position: absolute;
            top: -46%;
            left: 3.5rem;
            width: 11rem;
            height: 11rem;
            background-color: var(--color-white-n-1);

            
            transition: ease-in-out .5s;
            opacity: 0;
        } */ }
    .mobile-navbar ul li {
      width: 12rem;
      height: 12rem;
      list-style: none;
      /*             padding: 1.5rem 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
 */
      border-radius: 3px;
      /* &:nth-child(1):has(.acurrent)~.indicatour {
                left: 3.5rem;
                opacity: 1;
                transform: rotate(45deg);  
            }
            &:nth-child(2):has(.acurrent)~.indicatour {
                left: 20rem;
                opacity: 1;
                transform: rotate(135deg);
            }
            &:nth-child(3):has(.acurrent)~.indicatour {
                left: 37rem;
                opacity: 1;
                transform: rotate(225deg);
            }
            &:nth-child(4):has(.acurrent)~.indicatour {
                left: 54rem;
                opacity: 1;
                transform: rotate(315deg);
            } */ }
      .mobile-navbar ul li a {
        height: 12rem;
        padding: 1.5rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: ease-in-out .5s; }
        .mobile-navbar ul li a div {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: 7rem; }
          .mobile-navbar ul li a div svg {
            fill: var(--color-dark-gray);
            width: 4.5rem;
            z-index: 5;
            transition: ease-in-out .5s; }
        .mobile-navbar ul li a span {
          font-weight: 500;
          color: var(--color-dark-gray);
          transition: ease-in-out .5s; }
    .mobile-navbar ul .acurrent {
      border-top: 3px solid #0C77E2;
      background-color: var(--color-light-gray); }
      .mobile-navbar ul .acurrent div svg {
        fill: #0C77E2;
        /*                     transform: translateY(-5rem);
 */ }
      .mobile-navbar ul .acurrent span {
        color: #0C77E2; }

.cover {
  height: 100vh;
  /*     background-image: url(../../img/SL_073119_22070_04.jpg);
 */
  background-size: cover; }

.services-section {
  width: 100vw;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--bg-color-1); }
  .services-section .services-container {
    flex-wrap: wrap;
    margin: 0 auto; }
    .services-section .services-container .services-item {
      height: 32rem;
      background-size: cover;
      padding: 3.2rem;
      position: relative; }
      .services-section .services-container .services-item::after {
        content: '';
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 15%, rgba(61, 61, 61, 0.5) 100%, transparent 10%);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: ease-in-out .5s;
        z-index: 0;
        cursor: pointer; }
      .services-section .services-container .services-item:hover.services-item::after {
        opacity: 0; }
      .services-section .services-container .services-item--1 {
        background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 15%, rgba(61, 61, 61, 0.5) 100%, transparent 100%), url(../../img/luan-gjokaj-y4_xZ3cs96w-unsplash.jpg); }
      .services-section .services-container .services-item--2 {
        background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 15%, rgba(61, 61, 61, 0.5) 100%, transparent 100%), url(../../img/anthony-roberts-5WJhuXkqCkc-unsplash.jpg); }
      .services-section .services-container .services-item--3 {
        background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 15%, rgba(61, 61, 61, 0.5) 100%, transparent 100%), url(../../img/karl-pawlowicz-QUHuwyNgSA0-unsplash.jpg); }
      .services-section .services-container .services-item--4 {
        background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 15%, rgba(61, 61, 61, 0.5) 100%, transparent 100%), url(../../img/thomas-jensen-ISG-rUel0Uw-unsplash.jpg); }
  .services-section .row > * {
    padding: 0.8rem 1.6rem .8rem 0rem; }

.about_us-section {
  background-color: var(--bg-color-3);
  /*     box-shadow: inset 0 5px 15px rgba(50, 50, 50, .2); 
 */ }
  .about_us-section .about_us-img {
    transition: 1s;
    width: 52.8rem;
    height: 52.8rem;
    padding: 0; }
    @media (max-width: 1200px) {
      .about_us-section .about_us-img {
        margin: 0 auto; } }
    .about_us-section .about_us-img:hover {
      transform: rotateZ(45deg); }
    .about_us-section .about_us-img .cross-row {
      height: 15rem;
      margin: 1rem 0;
      transition: .5s; }
      @media (max-width: 1200px) {
        .about_us-section .about_us-img .cross-row {
          height: 15rem; } }
      .about_us-section .about_us-img .cross-row .about_us-img-box {
        height: 100%;
        width: 15rem;
        margin: 0 .5rem;
        border-radius: .8rem;
        transition: .5s;
        background-size: cover;
        box-shadow: -5px -5px 30px 0 var(--color-white-n-1), 10px 10px 30px 0 var(--color-shadow-purple);
        /* .about_us-img{
                    width: 100%;
                } */ }
        @media (max-width: 1200px) {
          .about_us-section .about_us-img .cross-row .about_us-img-box {
            height: 15rem; } }
        .about_us-section .about_us-img .cross-row .about_us-img-box:hover {
          transform: rotateZ(5deg); }
      .about_us-section .about_us-img .cross-row .about_us-img-box--1 {
        background-image: url(../../img/martin-katler-7wCxlBfGMdk-unsplash.jpg);
        position: relative;
        /* &:hover{
                    transform: rotateZ(5deg);
                } */ }
      .about_us-section .about_us-img .cross-row .about_us-img-box--2 {
        background-image: url(../../img/84-video-8HZ4pnu5-Rw-unsplash.jpg);
        /* &:hover{
                    transform: rotateZ(-5deg);
                } */ }
      .about_us-section .about_us-img .cross-row .about_us-img-box--3 {
        background-image: url(../../img/krzysztof-hepner-EkXSNquusLk-unsplash.jpg);
        /* &:hover{
                    transform: rotateZ(5deg);
                } */ }
      .about_us-section .about_us-img .cross-row .about_us-img-box--4 {
        background-image: url(../../img/philipp-katzenberger-iIJrUoeRoCQ-unsplash.jpg);
        /* &:hover{
                    transform: rotateZ(-5deg);
                } */ }
      .about_us-section .about_us-img .cross-row .about_us-img-box--5 {
        background-image: url(../../img/nikolai-chernichenko-4DLzZXyC8_k-unsplash.jpg);
        /* &:hover{
                    transform: rotateZ(5deg);
                } */ }

.contact-section {
  margin-bottom: 0;
  padding-bottom: 15rem;
  position: relative;
  background-color: var(--bg-color-2);
  box-shadow: inset 0 5px 100px var(--bg-shadow); }
  .contact-section .contact-background {
    width: 100%;
    height: 100rem;
    z-index: -1;
    position: absolute;
    bottom: 0;
    /* .background-sphere{
            position: absolute;
            border-radius: 50%;

            &:nth-child(1){
                top: 70%;
                right: 62rem;
                width: 4rem;
                height: 4rem;
                background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, #0065D9 60%, aqua 100%);    
            }
    
            &:nth-child(2){
                top: 64%;
                right: 35rem;
                width: 8rem;
                height: 8rem;
                background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, #0065D9 60%, aqua 100%);    
            }
    
            &:nth-child(3){
                bottom: 15%;
                right: 8rem;
                width: 12rem;
                height: 12rem;
                background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, #0065D9 60%, rgb(4, 73, 105) 100%);    
            }
    
            &:nth-child(4){
                bottom: 65%;
                right: 18rem;
                width: 7rem;
                height: 7rem;
                background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, rgb(10, 74, 117) 60%, rgb(4, 73, 105) 100%);    
            }
    
            &:nth-child(5){
                bottom: 45%;
                right: 28rem;
                width: 5rem;
                height: 5rem;
                background: radial-gradient(circle at 65% 15%, white 1px, rgb(0, 204, 255) 3%, rgb(11, 116, 185) 60%, rgb(2, 114, 165) 100%);    
            }
    
            &:nth-child(6){
                bottom: 57%;
                right: 45rem;
                width: 5rem;
                height: 5rem;
                background: radial-gradient(circle at 65% 15%, white 1px, rgb(0, 204, 255) 3%, rgb(11, 116, 185) 60%, rgb(2, 114, 165) 100%);    
            }
    
            &:nth-child(7){
                top: 57%;
                right: 50rem;
                width: 5rem;
                height: 5rem;
                background: radial-gradient(circle at 65% 15%, white 1px, rgb(0, 204, 255) 3%, rgb(11, 116, 185) 60%, rgb(2, 114, 165) 100%);    
            }
    
            &:nth-child(8){
                top: 30%;
                right: 60rem;
                width: 5rem;
                height: 5rem;
                background: radial-gradient(circle at 65% 15%, white 1px, rgb(0, 204, 255) 3%, rgb(11, 116, 185) 60%, rgb(2, 114, 165) 100%);    
            } 
      
        } */ }

form {
  width: 100%; }
  form .formular-field {
    width: 100%;
    margin: 1.6rem 0;
    position: relative; }
    form .formular-field:nth-child(4) input {
      height: 15rem; }
    form .formular-field input {
      width: 100%;
      border: none;
      border-radius: 6px;
      height: 4.8rem;
      background-color: var(--color-s-b-light);
      padding: .4rem 1.6rem;
      transition: ease-in-out 0.5s;
      position: relative;
      backdrop-filter: blur(1rem);
      -webkit-backdrop-filter: blur(1rem);
      color: var(--color-dark-gray);
      /* &::before{
                width: 100%;
                height: 4.8rem;
                border-radius: 6px;
                position: absolute;
                top: 0;
                left: 0;
                background-color: cadetblue;
                filter: blur(5px);
                z-index: 9;

            } */ }
    form .formular-field label {
      font-weight: 500; }
      form .formular-field label::first-letter {
        color: #0C77E2; }

.realisations-section {
  transition: ease-in-out 1s;
  background-color: var(--bg-color-2);
  box-shadow: inset 0 5px 100px var(--bg-shadow), inset 0 -5px 100px var(--bg-shadow); }
  .realisations-section .project {
    display: none;
    transition: ease-in-out 1s;
    opacity: 0; }
    .realisations-section .project_1 {
      display: block;
      transition: ease-in-out 1s;
      opacity: 1; }
  .realisations-section .project_title h3 {
    text-align: center; }
  .realisations-section .project_description {
    text-align: center; }
  .realisations-section .project_previews {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* @include respond(tablet-portrait){ //width <= 900px
        width: 90%;   
    }

    @include respond(phone){ //width <= 900px
        width: 80%;   
    } */ }
  .realisations-section .project_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9.6rem; }
    @media (max-width: 900px) {
      .realisations-section .project_logo {
        margin-top: 3.6rem; } }
    .realisations-section .project_logo .project_logo-box {
      width: 9.6rem;
      height: 9.6rem;
      margin: 0 3.2rem;
      padding: 1.6rem;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      /*             background: rgba($color-light-gray, .2);
 */
      background: var(--color-light-gray-2);
      box-shadow: -10px -10px 30px 0 var(--color-white-n-1), 10px 10px 30px 0 var(--color-shadow-purple), inset 0 8px 60px var(--color-inset-shadow-light), inset 0 8px 8px var(--color-inset-shadow-light), inset 0 -4px 4px var(--color-inset-shadow-light);
      border-radius: 5px;
      transition: ease-in-out .5s; }
      .realisations-section .project_logo .project_logo-box:hover {
        background: var(--color-s-b-light-hover);
        box-shadow: -15px -15px 30px 0 var(--color-white-n-1), 15px 15px 30px 0 var(--color-shadow-purple);
        transform: rotateZ(5deg); }
      .realisations-section .project_logo .project_logo-box a {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .7s;
        z-index: 1; }
      .realisations-section .project_logo .project_logo-box img {
        height: 100%; }
    .realisations-section .project_logo .current {
      background: var(--color-inset-shadow-dark); }

footer {
  background-image: url(../../img/sl7.svg);
  background-size: cover;
  display: flex;
  padding: 0 11.2rem;
  background-color: var(--color-white-n-1);
  width: 100vw;
  box-shadow: rgba(0, 0, 0, 0.45) 0px -5px 8px -8px; }
  @media (max-width: 900px) {
    footer {
      flex-direction: column;
      padding: 0 9rem; } }
  footer .footer-icons {
    width: 24rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top: 3px solid #0C77E2;
    padding-bottom: 4.8rem;
    background-color: rgba(70, 70, 70, 0.1);
    backdrop-filter: blur(3px); }
    @media (max-width: 900px) {
      footer .footer-icons {
        width: 100%;
        border: none;
        background-color: transparent; } }
    footer .footer-icons .footer_logo-box {
      width: 19rem; }
      footer .footer-icons .footer_logo-box img {
        width: 100%; }
    footer .footer-icons .footer_social_media span {
      display: inline-block;
      width: 3.2rem;
      height: 3.2rem;
      margin: 0.8rem; }
      footer .footer-icons .footer_social_media span img {
        width: 100%; }
  footer .footer_fast-link {
    width: calc(100% - (19.2rem));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media (max-width: 900px) {
      footer .footer_fast-link {
        width: 100%; } }
  footer .copyright {
    border-top: 1px solid rgba(70, 70, 70, 0.5);
    width: calc(100% - (19.2rem));
    text-align: center;
    padding: 1rem 0; }
    @media (max-width: 900px) {
      footer .copyright {
        width: 100%;
        margin-bottom: 16rem; } }
  @media (max-width: 900px) {
    footer .nav_menu {
      display: none; } }

.services-section .services_button {
  border: 2px solid #FFFFFF;
  display: inline-block;
  position: absolute;
  padding: .5rem 3.2rem;
  margin-top: 4rem;
  transition: ease-in-out .5s;
  z-index: 3;
  cursor: pointer; }
  .services-section .services_button span {
    font-weight: 500; }
  .services-section .services_button:hover {
    background-color: #FFFFFF; }
    .services-section .services_button:hover span {
      color: #000000; }

.formular-field button {
  width: 100%;
  border: none;
  margin-top: 2.4rem;
  padding: 1rem;
  border-radius: 6px;
  transition: .5s;
  background-image: linear-gradient(90deg, #0544a1 0%, #0a67b3 35%, #1090c2 50%, #1192BB 100%);
  background-size: 150% 100%;
  background-position: 0 0;
  color: #FFFFFF; }
  .formular-field button:hover {
    background-position: right center;
    /* change the direction of the change here */ }

.footer_svg_icon_box {
  display: flex;
  list-style: none;
  padding: 0; }
  .footer_svg_icon_box .icon {
    background: none;
    width: 4rem;
    height: 4rem;
    margin: .6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*         box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
 */
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
    @media (max-width: 900px) {
      .footer_svg_icon_box .icon {
        width: 6rem;
        height: 6rem;
        margin: .6rem 3rem; } }
    .footer_svg_icon_box .icon svg {
      width: 100%;
      height: 100%;
      overflow: visible;
      fill: var(--color-dark-gray);
      transition: .5s ease-in-out; }
    .footer_svg_icon_box .icon .tooltip {
      background: #E6E6E6;
      position: absolute;
      top: 0;
      font-size: 1.3rem;
      padding: 5px 8px;
      border-radius: 5px;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      opacity: 0;
      pointer-events: none;
      transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
      .footer_svg_icon_box .icon .tooltip::before {
        position: absolute;
        content: "";
        height: 8px;
        width: 8px;
        background: #E6E6E6;
        bottom: -3px;
        left: 50%;
        transform: translate(-50%) rotate(45deg);
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
    .footer_svg_icon_box .icon:hover .tooltip {
      top: -45px;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1); }
  .footer_svg_icon_box .facebook:hover .tooltip {
    color: #1877F2; }
  .footer_svg_icon_box .instagram:hover .tooltip {
    color: #E4405F; }
  .footer_svg_icon_box .linkedin:hover .tooltip {
    color: #0E76A8; }
  .footer_svg_icon_box .face:hover {
    fill: #1877F2; }
  .footer_svg_icon_box .insta:hover {
    fill: #E4405F; }
  .footer_svg_icon_box .linke:hover {
    fill: #0E76A8; }

nav #toggle {
  position: relative;
  margin-bottom: 1rem;
  margin-left: 5rem;
  width: 6rem;
  height: 3rem;
  border-radius: 3rem;
  transition: ease-in-out .5s;
  cursor: pointer;
  background: #222;
  box-shadow: inset 0 8px 60px rgba(0, 0, 0, 0.1), inset 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 -4px 4px rgba(0, 0, 0, 0.1); }
  @media (max-width: 900px) {
    nav #toggle {
      margin-top: 5rem;
      transform: scale(1.8); } }
  nav #toggle.active {
    background: #fff;
    box-shadow: inset 0 2px 60px rgba(0, 0, 0, 0.1), inset 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 -4px 4px rgba(0, 0, 0, 0.05); }
  nav #toggle .indicator {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transform: scale(0.9);
    transition: ease-in-out .5s; }
  nav #toggle .indicator-2 {
    right: 0;
    z-index: 5; }
    nav #toggle .indicator-2 .bi-moon {
      color: #666; }
  nav #toggle .indicator-1 {
    left: 0;
    z-index: 5; }
    nav #toggle .indicator-1 .bi-sun {
      color: goldenrod; }
  nav #toggle .indicator-3 {
    left: 0;
    background: linear-gradient(to bottom, #eaeaea, #f9f9f9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 4px 4px rgba(255, 255, 255, 0.1), inset 0 -4px 4px rgba(255, 255, 255, 0.1); }
  nav #toggle.active .indicator-3 {
    left: 3rem;
    background: linear-gradient(to bottom, #444, #222);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), inset 0 4px 4px rgba(50, 50, 50, 0.2), inset 0 -4px 4px rgba(50, 50, 50, 0.2); }
  nav #toggle.active .bi-moon {
    color: #FFFFFF; }
  nav #toggle.active .bi-sun {
    color: #666; }

.totop-button {
  width: 7rem;
  height: 7rem;
  position: fixed;
  bottom: 13rem;
  right: 5rem;
  border-radius: 1rem;
  background-color: var(--color-black);
  z-index: 30;
  pointer-events: none;
  transition: ease-in-out .5s;
  opacity: 0;
  box-shadow: -10px -10px 30px 0 var(--color-white-n-1), 10px 10px 30px 0 var(--color-shadow-purple);
  /* inset 0 8px 60px var(--color-inset-shadow-light),
                        inset 0 8px 8px var(--color-inset-shadow-light),
                        inset 0 -4px 4px var(--color-inset-shadow-light); */ }
  @media (max-width: 900px) {
    .totop-button {
      bottom: 20rem; } }
  .totop-button a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
  .totop-button svg {
    fill: var(--color-light-gray);
    width: 2rem; }
  .totop-button.apear {
    pointer-events: auto;
    opacity: 1; }

.carousel {
  margin-top: 5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: flex-start; }
  .carousel .slider {
    height: 100%;
    width: 400%;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    /*  @include respond(phone){
            width: 90%;    
        } */
    flex-shrink: 0; }
    .carousel .slider .slider_box {
      /* @include centering;
            flex-basis: 100%; */
      height: 100%;
      flex-basis: 25%;
      width: 25%;
      flex-shrink: 0;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center; }
      .carousel .slider .slider_box .slider_element {
        width: 55%;
        padding: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: .7rem;
        transition: .5s ease-in-out; }
        .carousel .slider .slider_box .slider_element img {
          width: 100%; }
  .carousel .controls {
    /* & ul{
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            
            & li{
                list-style: none;
                width: 1.8rem;
                height: 1.8rem;
                border-radius: 50%;
                border: 2px solid $color-gray-dark-2;
                margin: 1.5rem;
                background-color: $color-gray-dark-2;
                cursor: pointer;

                &.selected{
                    background-color: transparent;
                }
            }
        } */ }
    .carousel .controls .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(61, 61, 61, 0.3);
      border-radius: 50%;
      width: 6rem;
      height: 6rem; }
      .carousel .controls .arrow i {
        color: #3D3D3D;
        font-size: 4rem;
        position: absolute;
        top: .2rem;
        left: .9rem; }
      .carousel .controls .arrow.left {
        left: 5rem; }
      .carousel .controls .arrow.right {
        right: 5rem; }

.clider {
  width: 100%;
  max-width: 100vw;
  height: 600px;
  margin: auto;
  position: relative;
  overflow: hidden; }
  .clider .list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s; }
    .clider .list img {
      width: 131rem;
      max-width: 100vw;
      height: 100%;
      object-fit: cover; }

.bukkons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between; }
  .bukkons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-weight: bold; }

.dots {
  position: absolute;
  bottom: 10px;
  color: #fff;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center; }
  .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 20px;
    border-radius: 20px;
    transition: 1s; }
    .dots li.active {
      width: 30px; }

@media screen and (max-width: 768px) {
  .clider {
    height: 400px; } }

.container_2 {
  position: relative;
  left: 0;
  /*     transform: translateX( -50%);
 */
  /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
  width: 90%;
  height: 600px;
  background: #f5f5f5;
  box-shadow: 0 30px 50px #dbdbdb; }
  .container_2 .slide .item {
    width: 190px;
    height: 290px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: .5s; }
    .container_2 .slide .item:nth-child(1), .container_2 .slide .item:nth-child(2) {
      top: 0;
      left: 0;
      transform: translate(0, 0);
      border-radius: 0;
      width: 100%;
      height: 100%; }
    .container_2 .slide .item:nth-child(3) {
      left: 50%; }
    .container_2 .slide .item:nth-child(4) {
      left: calc(50% + 220px); }
    .container_2 .slide .item:nth-child(5) {
      left: calc(50% + 440px); }
    .container_2 .slide .item:nth-child(n + 6) {
      left: calc(50% + 660px);
      opacity: 0; }
    .container_2 .slide .item:nth-child(2) .content {
      display: block; }
    .container_2 .slide .item .content {
      position: absolute;
      top: 50%;
      left: 100px;
      width: 300px;
      text-align: left;
      color: #eee;
      transform: translate(0, -50%);
      display: none; }
      .container_2 .slide .item .content .name {
        font-size: 40px;
        text-transform: uppercase;
        font-weight: bold;
        opacity: 0;
        animation: animate 1s ease-in-out 1 forwards; }
      .container_2 .slide .item .content .des {
        margin-top: 10px;
        margin-bottom: 20px;
        opacity: 0;
        animation: animate 1s ease-in-out .3s 1 forwards; }
      .container_2 .slide .item .content button {
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        opacity: 0;
        animation: animate 1s ease-in-out .3s 1 forwards; }
  .container_2 .button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px; }
    .container_2 .button button {
      width: 40px;
      height: 35px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      margin: 0 5px;
      transition: 0.3s; }
      .container_2 .button button:hover {
        background: #ababab;
        color: #fff; }

/* @keyframes animate{
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);

    }
} */
.item_1 {
  background-image: url(../../img/Nouveau/peakpx.jpg); }

.item_2 {
  background-image: url(../../img/Nouveau/peakpx1.jpg); }

.item_3 {
  background-image: url(../../img/Nouveau/peakpx2.jpg); }

.item_4 {
  background-image: url(../../img/Nouveau/1160169.jpg); }

.item_5 {
  background-image: url(../../img/Nouveau/1195265.jpg); }

.item_6 {
  background-image: url(../../img/Nouveau/1195388.png); }

.banner {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  position: relative; }
  .banner .flider {
    position: absolute;
    width: 200px;
    height: 250px;
    top: 10%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 20s linear infinite;
    z-index: 2; }
    .banner .flider .etem {
      position: absolute;
      inset: 0 0 0 0;
      transform: rotateY(calc( (var(--position) - 1) * (360 / 10) * 1deg)) translateZ(550px); }
      .banner .flider .etem img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .banner .contant {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: max-content;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1; }
    .banner .contant h1 {
      font-family: 'ICA Rubrik';
      font-size: 16em;
      line-height: 1em;
      color: #252838;
      position: relative; }
      .banner .contant h1::after {
        position: absolute;
        inset: 0 0 0 0;
        content: attr(data-content);
        z-index: 2;
        -webkit-text-stroke: 2px #d2d2d2;
        color: transparent; }
    .banner .contant .author {
      font-family: Poppins;
      text-align: right;
      max-width: 200px; }
    .banner .contant h2 {
      font-size: 3em; }
    .banner .contant .model {
      background-image: url(../../img/Nouveau/model.png);
      width: 100%;
      height: 75vh;
      position: absolute;
      bottom: 0;
      left: 0;
      background-size: auto 130%;
      background-repeat: no-repeat;
      background-position: top center;
      z-index: 1; }

@keyframes autoRun {
  from {
    transform: perspective(1000px) rotateX(-16deg) rotateY(0deg); }
  to {
    transform: perspective(1000px) rotateX(-16deg) rotateY(360deg); } }

@media screen and (max-width: 1023px) {
  .banner .slider {
    width: 160px;
    height: 200px;
    left: calc(50% - 80px); }
  .banner .slider .item {
    transform: rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(300px); }
  .banner .content h1 {
    text-align: center;
    width: 100%;
    text-shadow: 0 10px 20px #000;
    font-size: 7em; }
  .banner .content .author {
    color: #fff;
    padding: 20px;
    text-shadow: 0 10px 20px #000;
    z-index: 2;
    max-width: unset;
    width: 100%;
    text-align: center;
    padding: 0 30px; } }

@media screen and (max-width: 767px) {
  .banner .slider {
    width: 100px;
    height: 150px;
    left: calc(50% - 50px); }
  .banner .slider .item {
    transform: rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(180px); }
  .banner .content h1 {
    font-size: 5em; } }

.container_3 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
  width: 100%;
  height: 680px;
  background: #f5f5f5;
  box-shadow: 0 30px 50px #dbdbdb; }
  .container_3 .plide .otem {
    width: 14.4rem;
    height: 10.5rem;
    position: absolute;
    top: 80%;
    transform: translate(0, -50%);
    border-radius: 10px;
    box-shadow: 0 30px 50px #5050506e;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: .5s;
    /* & .content{
            position: absolute;
            top: 50%;
            left: 100px;
            width: 300px;
            text-align: left;
            color: #eee;
            transform: translate(0, -50%);
            display: none;
        
            & .name{
                font-size: 40px;
                text-transform: uppercase;
                font-weight: bold;
                opacity: 0;
                animation: animate 1s ease-in-out 1 forwards;
            }
        
            & .des{
                margin-top: 10px;
                margin-bottom: 20px;
                opacity: 0;
                animation: animate 1s ease-in-out .3s 1 forwards;
            }

            & button{
                padding: 10px 20px;
                border: none;
                cursor: pointer;
                opacity: 0;
                animation: animate 1s ease-in-out .3s 1 forwards;
            }               
            
        } */ }
    .container_3 .plide .otem:nth-child(1), .container_3 .plide .otem:nth-child(2) {
      top: 0;
      left: 0;
      transform: translate(0, 0);
      border-radius: 0;
      width: 100%;
      height: 100%; }
    .container_3 .plide .otem:nth-child(3) {
      left: calc(50% -  ((21.6rem ) + 1.6rem)); }
    .container_3 .plide .otem:nth-child(4) {
      left: calc(50% - 7.2rem); }
    .container_3 .plide .otem:nth-child(5) {
      left: calc(50% + ((7.2rem ) + 1.6rem)); }
    .container_3 .plide .otem:nth-child(n + 6) {
      left: calc(50% +  ((21.6rem ) + 3.2rem));
      opacity: 0; }
    .container_3 .plide .otem:nth-child(2) .content {
      display: block; }
  .container_3 .button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 2rem;
    z-index: 3; }
    .container_3 .button button {
      width: 4rem;
      height: 3.5rem;
      margin: 0 .5rem;
      border-radius: 8px;
      border: none;
      color: #3D3D3D;
      background: rgba(230, 230, 230, 0.5);
      transition: ease-in-out .5s;
      cursor: pointer; }
      .container_3 .button button:hover {
        background: rgba(61, 61, 61, 0.5);
        color: #FFFFFF;
        font-weight: bolder; }

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px); }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0); } }

.otem_1 {
  background-image: url(../../img/Groupe_47.png); }

.otem_2 {
  background-image: url(../../img/vt.png); }

.otem_3 {
  background-image: url(../../img/Nouveau/peakpx2.jpg); }

.otem_4 {
  background-image: url(../../img/Nouveau/1160169.jpg); }

.otem_5 {
  background-image: url(../../img/Nouveau/1195265.jpg); }

.otem_6 {
  background-image: url(../../img/Nouveau/1195388.png); }

.container_4 {
  width: 100%;
  height: calc(80rem + 18rem);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  /*     background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
 */ }
  .container_4 .olide {
    width: 100%;
    height: 100%; }
  .container_4 .olide .atem {
    width: 40rem;
    height: 65rem;
    position: absolute;
    top: calc(48% - 32.5rem);
    border-radius: 10px;
    box-shadow: -5px -5px 15px 0 var(--color-white), 10px 10px 30px 0 #14113160;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: .7s; }
    @media (max-width: 900px) {
      .container_4 .olide .atem {
        width: 30rem;
        height: 48.75rem;
        top: calc(45% - 24.375rem); } }
    .container_4 .olide .atem:nth-child(1) {
      left: calc(50% -  ((80rem ) ));
      opacity: 0; }
      @media (max-width: 900px) {
        .container_4 .olide .atem:nth-child(1) {
          left: .5%; } }
    .container_4 .olide .atem:nth-child(2) {
      /*             left: calc(50% -  ((60rem ) + 1.6rem));
 */
      opacity: .3;
      left: 5%; }
      @media (max-width: 900px) {
        .container_4 .olide .atem:nth-child(2) {
          left: 1%; } }
    .container_4 .olide .atem:nth-child(3) {
      height: 80rem;
      width: 57rem;
      top: 45%;
      transform: translate(0, -50%);
      left: calc(50% - 28.5rem);
      z-index: 2; }
      @media (max-width: 900px) {
        .container_4 .olide .atem:nth-child(3) {
          height: 63.2rem;
          width: 45rem;
          left: calc(50% - 22.5rem); } }
    .container_4 .olide .atem:nth-child(4) {
      /*             left: calc(50% +  ((20rem ) + 1.6rem));
 */
      opacity: .3;
      left: calc(95% -  ((40rem))); }
      @media (max-width: 900px) {
        .container_4 .olide .atem:nth-child(4) {
          left: calc(99% -  ((30rem))); } }
    .container_4 .olide .atem:nth-child(n + 6), .container_4 .olide .atem:nth-child(5) {
      left: calc(50% +  ((40rem )));
      opacity: 0; }
      @media (max-width: 900px) {
        .container_4 .olide .atem:nth-child(n + 6), .container_4 .olide .atem:nth-child(5) {
          left: calc(99.5% -  ((30rem))); } }
  .container_4 .button {
    width: 100%;
    height: 6rem;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3; }
    .container_4 .button button {
      width: 6rem;
      height: 6rem;
      border-radius: 50%;
      border: none;
      color: var(--color-dark-gray);
      background: var(--color-light-gray);
      transition: ease-in-out .5s;
      box-shadow: -5px -5px 15px 0 var(--color-s-b-light), 10px 10px 30px 0 #1d0dca2a;
      font-size: 3.5rem;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center; }
      .container_4 .button button:nth-child(1) {
        position: absolute;
        left: 20%; }
        @media (max-width: 900px) {
          .container_4 .button button:nth-child(1) {
            left: 10%; } }
      .container_4 .button button:nth-child(2) {
        position: absolute;
        right: 20%; }
        @media (max-width: 900px) {
          .container_4 .button button:nth-child(2) {
            right: 10%; } }
      .container_4 .button button:hover {
        /* background: rgba($color-dark-gray, .9);
                color: $color-white;
                box-shadow: -5px -5px 15px 0 #ffffffb7, 15px 15px 30px 0 #1d0dca17; */
        transform: scale(1.1); }
  .container_4 .duts {
    width: 40rem;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-light-gray-2);
    /*         box-shadow: -5px -5px 15px 0 var(--color-s-b-light-hover),10px 10px 30px 0 var(--color-shadow-purple);
 */
    box-shadow: -15px -15px 30px 0 var(--color-white-n-1), 15px 15px 30px 0 var(--color-shadow-purple);
    border-radius: 1rem;
    z-index: 5; }
    @media (max-width: 900px) {
      .container_4 .duts {
        bottom: 5rem; } }
    .container_4 .duts li {
      display: inline-block;
      list-style: none;
      width: 1rem;
      height: 1rem;
      background-color: var(--color-dark-gray);
      margin: 2rem;
      border-radius: 2rem;
      transition: 1s; }
      .container_4 .duts li.aktive {
        width: 30px; }

.atem_1 {
  background-image: url(../../img/Nouveau/soft.png); }

.atem_2 {
  background-image: url(../../img/Nouveau/busicorp.png); }

.atem_3 {
  background-image: url(../../img/Nouveau/green.png); }

.atem_4 {
  background-image: url(../../img/Nouveau/black.png); }

.atem_5 {
  background-image: url(../../img/Nouveau/turquoise.png); }

.atem_6 {
  background-image: url(../../img/Nouveau/arctri.png); }
