/* fonts-here */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
/*===== VARIABLES CSS =====*/
:root{
    /*===== Colors =====*/
    --theme-color: #850038;
    --text-color: #887f70;
    --black-color: #000;
    --white-color: #fff;
    
    /*===== Font and typography =====*/
    --body-font: 'Roboto', sans-serif;
    --title-font: 'Shippori Mincho', sans-serif;


    --normal-font-size: 16px;

    /*===== Font weight =====*/
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
}

body{
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0 0 15px;
    font-weight: var(--font-bold);
    line-height: 1.2;
}
p{
    margin: 0px;
}
a{
    text-decoration: none;
}
  
img{
    max-width: 100%;
    height: auto;
}
label {
	color: var(--text-color);
	cursor: pointer;
	font-size: 14px;
}

*::-moz-placeholder {
	color: var(--text-color);
}

*::placeholder {
	color: var(--text-color);
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}


.btn:focus{
    outline: none;
    box-shadow: none;
}

/* input[type="text"],
input[type="password"],
input[type="checkbox"],
input[type="tadio"],
textarea{} */

input[type="text"]:focus,
input[type="password"]:focus,
input[type="checkbox"]:focus,
input[type="tadio"]:focus,
textarea:focus{
    outline: none;
    box-shadow: none;
}

/* default css end */

.container{
    max-width: 990px;
}
.bg-default{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.site-btn {
    background: white;
	border: 2px solid var(--text-color);
	min-height: 53px;
    border-radius: 3px;
	padding: 10px 24px;
	color: #887f70;
	font-weight: var(--font-bold);
	font-size: 16px;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	width: auto;
	transition: .3s;
}

.site-btn:hover{
    background-color: var(--theme-color) !important;
    color: var(--white-color) !important;
    text-decoration: none !important;
}

/* header-area */
.header-area{
    position: fixed !important;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
    z-index: 11;
    background: transparent;
    transition: 0.5s ease;
    padding: 18px 0px;
}
.fixed-top {
    background: #fff !important;
    position: fixed !important;
}
.fixed-top a {
    color: #d5d2c8
}
.fixed-top .img1{
    display: none;
}
.header-area .img2 {
    display: none
}
.fixed-top .img2{
    display: block;
}
.header-wrapper{
    max-width: 1016px;
    margin: 0 auto;
    padding: 0 12px;
}

/* language-area */
.language-area ul li a{
    color: #d5d2c8;
    font-size: 14px;
    font-weight: bold;
    padding: 0px 5px;
    text-transform: uppercase;
}
.language-area ul li:last-child a{
    padding-right: 0px;
}
.language-area ul li a:after{
    position: absolute;
    right: 0px;
    top: 0;
    width: 4px;
    height: 2px;
    background-color: #fff;
    content: "";
}
.language-area ul li a:last-child:after{
    display: none;
}
.language-area ul li a.active{
    color: var(--white-color);
}
.language-area {
    position: relative;
    top: -15px;
	display: inline-block;
}

/* menu-area */
.main-nav ul li{
    padding: 14px 14px;
}
.main-nav ul li:last-child{
    padding-right: 0px;
}
.language-area .separator {
    color: #d5d2c8;
    position: relative;
    top: 2px;
}
.expertise-content {
    padding: 0 35px;
}
.main-nav ul li a{
    color: #d5d2c8;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: var(--font-bold);
    display: block;
}
.main-nav ul li a::after{
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    content: "";
    background-color: var(--theme-color);
    opacity: 0;
    transition: .3s;
}

.main-nav ul li a.active::after{
    opacity: 1;
}
.main-nav ul li a:hover::after{
    opacity: 1;
}
.main-nav ul li a.active{
    color: var(--white-color);
}
.main-nav ul li a:hover{
    color: var(--white-color);
}
.dropdown-submenu a::after {

display: none;
}
.mycontent {
    color: black;
}
.mycontent ul {
    padding-left: 20px;
}
.mycontent li {

    list-style: disc;
}
.mycontent a {
    color: var(--theme-color)
}
.mycontent a:hover {
    text-decoration: underline;
}
.dropdown-menu {
    margin-top: 10px !important;
}
.dropdown-menu li {
    padding: 7px 14px !important;
}
.main-nav ul li .dropdown-submenu a:hover {
    color: var(--theme-color) !important;

}
.fixed-top .main-nav ul li a,
.fixed-top .language-area a,
.fixed-top .separator
{
    color: #887F70;
}
.fixed-top .language-area a.active,
.fixed-top .main-nav ul li a.active,
.fixed-top .main-nav ul li a:hover
{
    color: var(--theme-color);
}
/* header-area */




/* offcanvas-area */
.offcanvas-open {
    font-size: 22px;
    transition: 0.3s;
    color: #fff;
  }
  .offcanvas-open:hover {
    color: var(--theme-color);
  }
  .offcanvas-close {
    color: var(--theme__color1);
    position: absolute;
    transition: 0.3s;
    right: 10px;
    top: 10px;
  }
  .offcanvas-close:hover {
    color: #97A3AE;
  }
  .offcanvas-menu {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(-105%);
    transition: 0.3s;
  }
  .offcanvas-menu.active {
    transform: translate(0);
  }
  .offcanvas-menu .offmenu {
    max-width: 250px;
    min-width: 200px;
    z-index: 5;
    position: relative;
    background: var(--theme-color);
    height: 100%;
    padding: 50px 20px 40px;
    overflow: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  .offcanvas-menu .offmenu :-webkit-scrollbar {
    display: none;
  }
  .offcanvas-menu ul li a {
    display: block;
    text-align: center;
    font-size: 16px;
    color: var(--theme__color1);
    padding: 10px;
  }
  .offcanvas-menu ul li a:hover {
      color: #fff;
  }
  .dropdown-menu-custom ul {
    background: #fff;
    padding: 20px 0;
  }
  .dropdown-menu-custom ul li a {
    color: #97A3AE;
  }
  .offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.178);
    z-index: 2;
    transform: 0;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .off-canvas-logo {
      padding: 0 30px 30px !important;
  }
/* offcanvas-area end */



/* banner-area */
.banner-area{
    min-height: 772px;
    width: 100%;
}

.banner-content{
    padding-top: 320px;
}
.banner-content h1{
    font-size: 60px;
    font-weight: 800;
    font-family: var(--title-font);
    color: var(--white-color);
}
.banner-content h1 span{
    font-weight: normal;
    text-transform: uppercase;
}
/* banner-area */



/* counter-area */
.counter-area{
    padding-top: 45px;
    padding-bottom: 30px;
}

.counter-head img{
    margin-bottom: 26px;
}
.counter-head h3{
    font-weight: 300;
    margin-bottom: 30px;
}
.counter-head h3{
    margin-bottom: 30px;
}
.counter-head{
   /* max-width: 668px;*/
    margin: 0 auto;
}

.counter-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 90px;
}
.single-counter-item{
    max-width: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-wrap{
    height: 158px;
    width: 158px;
    border-radius: 50%;
    border: 6px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 18px;
}
.bg-parallax {
    background-attachment: fixed;
}
.counter{
    color: var(--theme-color);
    font-size: 70px;
    font-weight: normal;
    position: relative;
    top: -5px;
    font-family: var(--title-font);
}

.title {
    font-family: var(--title-font);
}
/* counter-area */



/* expertise-area */
.expertise-area{
    padding: 67px 0px;
}

/* section-title */
.section-title h1{
    font-family: var(--title-font);
    color: var(--white-color);
    margin-bottom: 25px;
    font-size: 40px;
    font-weight: normal
}
.expertise-item:hover .expertise-icon {
    background-color: rgba(255,255,255,0.2);
}
.expertise-item {
    cursor: pointer
}
.expertise-icon{
    transition: 0.5s ease;
    height: 158px;
    width: 158px;
    border: 6px solid var(--text-color);
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.expertise-content{
    margin-bottom: 20px;
    text-align: center;
}
.expertise-content h5{
    color: var(--white-color);
    margin-bottom: 15px;
}
.expertise-content p{
    color: var(--white-color);
}



/* expertise-area */


/* operations-area */
.operations-area{
    padding: 68px 0px;
}
.operations-area .section-title h1{
    color: var(--black-color);
}

.operations-item{
    border: 6px solid var(--text-color);
    padding: 0px 20px;
    min-height: 370px;
    border-radius: 8px;
    position: relative;
    padding-top: 15px;
    margin-bottom: 35px;
}
.pasla .operations-item {
    min-height: 385px;
    margin-bottom: 15px;
}
@media (max-width: 980px) {
	.pasla .operations-item {
	min-height: auto !important;
		position: relative !important;
		padding-bottom: 20px;
	}
	.pasla .operations-item.back  div {height: auto !important; max-height: none !important;} 
	.pasla .operations-item.back {
	position: absolute !important;
	top: 0;
	}
}
	.operations-item p {
	margin-bottom: 15px;
}

.bottom-content {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	border-top: 1px solid #ddd;
	width: 90%;
	left: 5%;
}

.operations-item.active-operarions {
	padding-top: 30px;
    background-color: var(--theme-color);
}
.operations-item.active-operarions h5{
    color: var(--white-color);
}
.operations-item.active-operarions p{
    color: var(--white-color);
}
.operations-item ul li {
	font-weight: bold;
	padding-bottom: 6px;
}
/* operations-area */


/* entrepreneurs-area */
.entrepreneurs-area{
    padding: 64px 0px;
}
.entrepreneurs-area .section-title{
    color: var(--black-color);
}
.video-area {
    width: 100%;
    aspect-ratio: 910 / 510;
}
.video-area iframe {
    width: 100%;
    height: 100%;
}
/* entrepreneurs-area */

.footer-bottom .container {
    max-width: 800px;
}
.footer-menu, .footer-menu a  {
    color: black !important;
    text-transform: uppercase;
}



/* address-area */
.address-area {
    padding: 55px 0 70px;
}
.address-area .background {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.address-area .section-title h1 {
    color: var(--black-color);
}
/* address-area */



/* footer-area */ 
.footer-area {
    background: var(--theme-color);
}
.footer-area a {
    color: inherit;
}
.footer-top {
    padding: 50px 0 55px;
}
.footer-address-text {
    margin-top: 40px;
    text-align: center;
    color: #fff;
}
.footer-btns {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.footer-area .single-company .site-btn {
    background: white !important;
}
.footer-area .site-btn {
    background: #fff;
}
.footer-area .site-btn:hover {
    color: #887F70;
}
.footer-widget.company-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-widget.company-link p {
    margin-bottom: 5px;
    color: #fff;
}

.footer-bottom {
    padding: 10px 0;
    background: #fff;
}
.footer-bottom ul {
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom ul li a  {
    font-size: 12px;
    color: #000;
}

/* footer-area */
.z-top
{
    position: relative;
    z-index: 10;
}
.vimeo-wrapper {
    /* position: fixed;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden; }
.vimeo-wrapper:before {
    content: '';
    background: rgba(0,0,0, 0.15) no-repeat top left;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 1;
    position: relative;
    top: 0;
    left: 0; }

.vimeo-wrapper iframe,
.vimeo-wrapper video {
    width: 99vw;
    height: 166.25vw;
    min-height: 100vh;
    min-width: 121.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
b, strong {
    font-weight: 800;
}

.fullwidth {

    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

#news-all {
    line-height: 1.2;
}
#news-all a {
    color: var(--text-color) !important;
}

#news-all .title {
    font-size: 18px;
    font-weight: bold;
    color: black !important;
}
#team-grid {
    max-width: 990px;
    margin: auto;
    overflow: visible; }
#team-grid.team-gouvernance .square-linkedin {
    display: none; }

#team-grid, #teamModal { }
#team-grid .name-poste, #teamModal .name-poste {
    font-size: 16px;
    font-weight: 600;
    line-height: 1; }
#team-grid .mission, #teamModal .mission {
    font-size: 13px;
    color: #313131; }
#team-grid .item-team, #teamModal .item-team {
    max-width: 372px; }
@media (max-width: 768px) {
    #team-grid .item-team, #teamModal .item-team {
        max-width: none; } }/*
#team-grid .item-team:hover img, #teamModal .ite m-team:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0); }
#team-grid .item-team img, #teamModal .item-team img {
    transition: 0.5s ease;
    -webkit-filter: grayscale(1);
    filter: grayscale(1); }*/
.item-team {
    cursor: pointer;
}
.modal-dialog {
    width: 800px;
    max-width: 100%;
}
.modal-header {
    border: 0;
    margin-bottom: -55px;
}/* _embed.scss:3 */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
     display: block;
     content: "";
 }

.embed-responsive-item  iframe,
.embed-responsive-item embed,
.embed-responsive-item object,
.embed-responsive-item video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

h5 {
    font-size: 22px
}.dropdown-toggle::after {
    display: none
 }

 .modal-dialog  {
     color: black;
     width: 1000px;
     max-width: 100%;
 }

 #teamMission {
     display: none;
 }

 #teamName {
     margin-top: 30px;
     margin-bottom: 15px !important;
 }
 .modal.show {

     display: flex !important;
     align-items: center;
 }