/*------------------------------------------------------------------
Project: ICC Limoges - Style Nettoyé
Nettoyé le: Décembre 2024
Description: CSS optimisé contenant uniquement les classes utilisées
-------------------------------------------------------------------*/

/************************ 1 Default css ***************************/
body {
   margin: 0;
   padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1170px;
    margin: 0 auto;
}
html{
    scroll-behavior: smooth;
}

/* Scrollbars personnalisées pour modals */
.modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal .modal-body::-webkit-scrollbar-track {
    border-radius: 10px;
}

.modal .modal-body::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
}

.modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #f35333;
}

/************************ 2 Animation CSS ***************************/
@keyframes fixedheader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
@-webkit-keyframes fixedheader {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
}
100% {
    transform: scale(1.3);
}
}
@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
}
100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
}

@keyframes Slick-FastSwipeIn{
  0%{transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);}
  100%{transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);}
}
@-webkit-keyframes Slick-FastSwipeIn{
  0%{-webkit-transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);}
  100%{-webkit-transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);}
}

/************************ 3 Header Section ***************************/
#header_sec {
    position: absolute;
    width: 100%;
    z-index: 99;
}
.site_content{
    overflow: hidden;
}
.nav-link {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    padding: 0 !important;
    margin: 0 15px;
    text-transform: uppercase;
}
li.nav-item:last-child a.nav-link {
    margin-right: 0;
}
.fixed {
    position: fixed !important;
    z-index: 1030;
    background: #182433;
    width: 100%;
    top: 0%;
    left: 0;
    -webkit-box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    -webkit-animation: fixedheader 600ms ease 0ms 1 forwards;
    animation: fixedheader 600ms ease 0ms 1 forwards;
}
.nav-link:hover,
.nav-link:focus{
    color: #FD8558 !important;
    transition: 0.3S;
    -webkit-transition: 0.3S;
    -o-transition: 0.3S;
}
.nav-link:focus, 
.nav-link:hover {
    color: #fd8558;
}
header.fixed , header.fixed nav.navbar.navbar-expand-lg.navbar-light {
    height: 100px;
}

/****************************** 4 Hero Section ***********************/
.img-fill{
    position:relative;
    height:100%;
}
.img-fill img{
    height:100%;
    width:100%;
    object-fit:cover;
    -o-object-fit:cover;
    animation: fadezoom 8s 0s forwards;
    -webkit-animation: fadezoom 8s 0s forwards;
}
.item{
    height:100vh;
    overflow:hidden;
    outline:none;
}
.left-arrow:hover,
.right-arrow:hover {
    background: #fd8558;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}
.img-fill:after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#151515;
    opacity:0.5;
}
.carousel-item.active{
    animation:Slick-FastSwipeIn 0s both;
    -webkit-animation:Slick-FastSwipeIn 0s both;
}
.item .contain-wrapper{
    position:absolute;
    left:0;
    top:0;
    z-index:1;
    height:100%;
    width:100%;
    display:flex;
    display:-webkit-box;
    display:-ms-flexbox;
    align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
}
.item h1{
   font-family:'Poppins',sans-serif;
   font-weight:800;
   font-size:72px;
   margin:0;
   padding:0 0 20px;
   text-transform:uppercase;
}

.slider_button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    text-align: center;
}
.slider_button_link {
    display: inline-block;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    padding: 21px 57px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.slider_button_link span {
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
}
.slider_button_link p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    margin-top: 12px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
}
a.slider_button_link {
    text-decoration: none;
}

.slider_button_link:hover {
 background-color: #FD8558;
 transition: 0.3s;
 -webkit-transition: 0.3s;
 -o-transition: 0.3s;
}

.item{
    color:#fff;
    font-family:'Roboto',sans-serif;
}
.item  h5{
    font-size:32px;
    font-weight:300;
    padding:10px 0 0;
    margin:0;
    text-transform:capitalize;
}
.item .contain-wrapper .info{
    max-width:1170px;
}
.carousel-item.active .item h1{
   animation:fadeInDown 1s both 1s;
   -webkit-animation:fadeInDown 1s both 1s;
}
.item h1{
   animation:fadeOutRight 1s both;
   -webkit-animation:fadeOutRight 1s both;
}
.carousel-item.active .business_button{
   animation:fadeInLeft 1s both 1.5s;
   -webkit-animation:fadeInLeft 1s both 1.5s;
}
.business_button{
    animation:fadeOutLeft 1s both;
    -webkit-animation:fadeOutLeft 1s both;
}
.hero_prev,
.hero_next {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 98;
    width: 60px;
    height: 60px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
    margin-top: 106px;
}
.left-arrow {
    left: 80px;
    top: 50%;
    margin: 0;
}
.right-arrow {
    right: 60px;
    top: 50%;
    margin: 0;
}

/************************ 5 About Section ***************************/
.ult_txt {
    font-style: normal;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
}
.comm_txt {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}
.orange_box {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: #FD8558;
  width: 300px;
  height: 100px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0% 70%);
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0% 70%);
}
.our_mission {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: #141414;
}
.orange_txt {
    color: #FD8558;
}
.binj_txt {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #141414;
  margin-top: 60px;
}
.direc_txt {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}
.about_third_sec {
    margin-top: 80px;
}
.number_heading { 
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: #141414;
    margin-top: 20px;
}
.commo_txt {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}
.about_first_sec {
    padding: 48px 0 60px;
}
#about_sec {
    padding-bottom: 100px;
}
.about_middle_img_sec {
    position: relative;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    overflow: hidden;
    display: inline-block;
}
.about_middle_img:hover .about_middle_img_sec:before {
    visibility: visible;
    width: 220px;
    height: 220px;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.pbmit-animation-style1.active
{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.pbmit-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    display: inline-block;
    position: relative;
    overflow: hidden;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style1.active img{
    transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
}
.pbmit-animation-style1 img{
    -webkit-transform: scale(1.5) translate(-100px, 0px);
    -ms-transform: scale(1.5) translate(-100px, 0px);
    transform: scale(1.5) translate(-100px, 0px);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

/************************ 17 Map Section ***************************/
#map_section iframe {
    width: 100%;
    margin-top: -138px;
}

/************************ 21 Scroll Bottom to Top ***************************/
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 999;
    background-color: #FD8558;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    padding: 5px 0px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    display: none;
    transition: background-color 0.2s ease;
    animation: scrolltop 1.3s cubic-bezier(.3, 0, 0, 1.3) infinite;
}
@keyframes scrolltop {
    0% {
     box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
 }
 100% {
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
}
}
@-webkit-keyframes scrolltop {
    0% {
     -webkit-box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
     box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
 }
 100% {
    -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
}
}

/* Reveal effect animation */
.reveal {
  position: relative;
  opacity: 0;
}
.reveal.active{
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}
.active.fade-left {
  animation: fade-left 1s ease-in;
}
.active.fade-right {
  animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/************************ Responsive Media Queries ***************************/
@media (max-width: 1670px) {
    .left-arrow {
        left: 50px;
    }
    .right-arrow {
        right: 40px;
    }
}
@media (max-width: 1440px) {
    .container {
        max-width: 100%;
        padding-right: 100px;
        padding-left: 100px;
    }
}
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding-right: 100px;
        padding-left: 100px;
    }
    .item h1 {
        font-size: 60px;
    }
}
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding-right: 50px;
        padding-left: 50px;
    }
    .item h1 {
        font-size: 50px;
    }
}
@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding-right: 30px;
        padding-left: 30px;
    }
    .mt_about1 {
        margin-top: 40px;
    }
    .mt_about {
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .item h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .ult_txt {
        font-size: 36px;
        line-height: 46px;
    }
    .our_mission {
        font-size: 28px;
        line-height: 38px;
    }
}
@media (max-width: 480px) {
    .item h1 {
        font-size: 30px;
        line-height: 40px;
    }
    .ult_txt {
        font-size: 28px;
        line-height: 36px;
    }
    .orange_box {
        width: 250px;
        height: 80px;
        font-size: 20px;
    }
    .our_mission {
        font-size: 24px;
        line-height: 32px;
    }
    .number_heading {
        font-size: 28px;
        line-height: 32px;
    }
}

/************************ Offcanvas Mobile Menu ***************************/

/* Offcanvas container */
.offcanvas {
    background-color: #182433;
    width: 320px !important;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body {
    padding: 20px 0;
}

/* Close button */
.btn-close.sidebar_close_btn {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close.sidebar_close_btn:hover {
    opacity: 1;
}

/* Offcanvas navigation */
.offcanvas .navbar-nav {
    width: 100%;
}

.offcanvas .nav-item {
    margin-bottom: 5px;
    width: 100%;
}

.offcanvas .nav-link {
    padding: 12px 20px !important;
    margin: 0 !important;
    display: block;
    width: 100%;
    color: #FFFFFF !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus {
    background-color: rgba(253, 133, 88, 0.1);
    color: #FD8558 !important;
}

/* Dropdown in offcanvas */
.offcanvas .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 5px;
    margin: 5px 0 10px 0;
    padding: 5px 0;
    position: static !important;
    transform: none !important;
    width: 100%;
    box-shadow: none;
}

.offcanvas .dropdown-item {
    color: #FFFFFF;
    padding: 10px 20px 10px 35px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.offcanvas .dropdown-item:hover,
.offcanvas .dropdown-item:focus {
    background-color: rgba(253, 133, 88, 0.2);
    color: #FD8558;
}

.offcanvas .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 5px 20px;
}

/* User menu separator in offcanvas */
.offcanvas .navbar-nav.ms-auto {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icons in dropdown */
.offcanvas .dropdown-item i {
    margin-right: 8px;
    width: 18px;
    display: inline-block;
}

/* Desktop navbar (min-width: 992px) - Keep original behavior */
@media (min-width: 992px) {
    .navbar .nav-link {
        padding: 0 !important;
        margin: 0 15px;
    }
    
    .navbar .dropdown-menu {
        position: absolute !important;
        background-color: #182433;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        min-width: 200px;
    }
    
    .navbar .dropdown-item {
        color: #FFFFFF;
        padding: 10px 20px;
    }
    
    .navbar .dropdown-item:hover {
        background-color: rgba(253, 133, 88, 0.1);
        color: #FD8558;
    }
}