/* BEGIN INITIALIZATION */
* {
  margin: 0;
  padding: 0;
  font-family: "cd", sans-serif;
}

html {
  font-size: 62.5%;
 scroll-behavior: smooth;
}

:root {
  --main-orange-hex : #E38E24;
  --main-blue-hex : #213A74;
  --main-gray-hex : #646466;
  --main-orange-rgb : rgb(227, 142, 36);
  --main-blue-rgb : rgb(33, 58, 116);
  --main-gray-rgb : rgb(100, 100, 102);
}

/* Page animation */
.page-fade {
  opacity: 0;
  transition: opacity .8s ease;
}

@font-face {
  font-family: "cd";
  src: local('Caviar Dreams Bold'), local('CaviarDreams_Bold'),
      /* url('../font/URWDINArabicCond-Black.woff2') format('woff2'),
      url('../font/URWDINArabicCond-Black.woff') format('woff'), */
      url('../font/CaviarDreams_Bold.ttf') format('truetype');
  font-weight: 500;
  font-style: bolder;
}

@font-face {
  font-family: "cd";
  src: local('Caviar Dreams'), local('CaviarDreams'),
      /* url('../font/URWDINArabicCond-Bold.woff2') format('woff2'),
      url('../font/URWDINArabicCond-Bold.woff') format('woff'), */
      url('../font/CaviarDreams.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "dg";
  src: local('01 Digitall'), local('01Digitall'),
      /* url('../font/URWDINArabicCond-Medium.woff2') format('woff2'),
      url('../font/URWDINArabicCond-Medium.woff') format('woff'), */
      url('../font/01Digitall.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
}

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: 0 0 10px #f6b25f;
  border-bottom: none!important;
}

input,
textarea {
  caret-color: var(--main-orange-hex);
  font-weight: 500;
}

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: var(--main-orange-hex);
}

::selection {
  color: #fff;
  background: var(--main-orange-hex);
}
/* END INTITIALIZATION */


/* BEGIN NAVBAR */
nav {
  background-color: #fff;
  color: var(--main-blue-hex);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-family: "dg", sans-serif;
  font-weight: 700;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--main-blue-hex);
}

body {
  margin: 0;
  padding-top: 60px;
}

.navbar-items {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.logo > img:hover {
  cursor: pointer;
}

.navbar-items li {
  margin-right: 30px;
  position: relative;
}

.navbar-items li a {
  color: var(--main-blue-hex);
  padding-bottom: 7px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.8rem;
  font-family: "cd", sans-serif;
  font-weight: bolder;
}

.navbar-items li a:hover {
  color: var(--main-orange-hex);
}

.checkbtn {
  font-size: 3rem;
  color: white;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

.dark-mode {
  color: var(--main-orange-hex);
  rotate: 0deg;
  transition: .5s ease all;
}

.dark-mode:hover {
  color: var(--main-gray-hex);
  rotate: 180deg;
  font-size: 2rem;
}

/* Submenu Styling */
.navbar-items li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.navbar-items li ul.submenu li {
  width: 100%;
}

.navbar-items li ul.submenu li a {
  color: var(--main-blue-hex);
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.navbar-items li ul.submenu li a:hover {
  background-color: var(--main-orange-hex);
  color: #fff;
}

.navbar-items li:hover ul.submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
/* END NAVBAR */


/* ===================================== */
/* ================ HOME =============== */
/* ===================================== */
/* BEGIN MAIN SLIDER SECTION */
.main-slider {
  position: relative;
  height: 93vh;
  width: 100%;
  overflow: hidden;
  margin-top: 3%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  color: var(--main-blue-hex);
  text-align: center;
}

.slide-content > h2 {
  font-size: 4rem;
}

.slide-content > h2 > span {
  font-size: 4.7rem;
}

.quote-icons {
  font-size: 1.5rem;
  transform: translateY(-27px);
}
/* END MAIN SLIDER SECTION */


/* BEGIN SERVICES SECTION */
.services {
  width: 100%;
  margin: 3% auto 0 auto;
  padding: 15px;
  text-align:;
}

.title-services {
  text-align: center;
  width: 100%;
}

.component-logo {
  padding: 25px 0;
}

.services-subtitle1 > h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: "dg", sans-serif;
  font-weight: 500;
}

.services-subtitle2 > h3 {
  font-size: 3.5rem;
  color: var(--main-orange-hex);
  font-family: "cd", sans-serif;
  font-weight: 400;
}

.services-description {
  font-size: 1.8rem;
  font-weight: 500;
  width: 70%;
  margin: 1.5% auto 5% auto;
  text-align: center;
  line-height: 1.8;
  color: var(--main-blue-hex);
}

.services-items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
  width: 85%;
  margin: 0 auto;
  padding: 50px 0;
}

.services-item1, .services-item2, .services-item3 {
  background-color: #fff;
  width: 100%;
  text-align: center;
  height: 480px;
  border-radius: 15px;
  border: .5px solid rgb(100, 100, 102, .5);
  scale: 1;
  transition: all .2s ease;
}

.services-item1:hover, .services-item2:hover, .services-item3:hover {
  scale: 1.05;
  cursor: pointer;
  box-shadow: 5px 5px rgb(100, 100, 102, .2);
}

.services-item1-img, .services-item2-img, .services-item3-img {
  height: 30%;
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--main-blue-hex);
}

.services-item1-img {
  background-color: var(--main-blue-hex);
}

.services-item2-img {
  background-color: var(--main-blue-hex);
}

.services-item3-img {
  background-color: var(--main-blue-hex);
}

.services-items-content {
  padding-top: 7%;
  font-size: 2.2rem;
  color: var(--main-orange-hex);
  font-weight: bold;
}

.services-items-description {
  width: 90%;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 500;
  padding-top: 2%;
}

.services-items > div > ul > li {
  text-align-last: left;
}

.services-items-seperator {
  width: 90%;
  margin: 0 auto;
  margin-top: 10%;
}

.foot-services-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 10%;
  font-size: 1.3rem;
  font-weight: 500;
}

.foot-services-items-border {
  border-right: 1px solid rgb(100, 100, 102, .5);
}
/* END SERVICES SECTION */


/* BEGIN PARTNERS SECTION */
.partners-section-title {
  padding: 5% 0 5% 0;
  background: rgb(86,112,172);
  background-color: var(--main-blue-hex);
  display: grid;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
}

.partners-subtitle1 {
  color: var(--main-orange-hex);
  font-size: 2.5rem;
  margin-bottom: 2%;
  font-family: "cd" ,sans-serif;
  font-weight: 500;
}

.partners-subtitle2 {
  color: #fff;
  font-size: 3.5rem;
  font-family: "cd", sans-serif;
  font-weight: 700;
}

.slide > a > img {
  width: auto;
  height: 120px;
  transition: transform .3s ease-in-out;
}

.slide-track {
  display: flex;
  gap: 5em;
  width: calc(200% + 3em * 9); 
  animation: scroll 60s linear infinite;
}

.slider {
  margin: 70px 0;
  background-color: whitesmoke;
  padding: 8em 2em;
  overflow: hidden;
}

.slider:hover .slide-track {
  animation-play-state: paused;
}

.slide > a > img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-separator-bloc {
  height: 20px;
  border: none;
}

#separator-bg {
  height: .5px;
  background-color: var(--main-blue-hex);
  margin-bottom: 5%;
}
/* END PARTNERS SECTION */


/* BEGIN EXPERTISES */
.expertises-section {
  margin-bottom: 5%;
}

.expertises-items {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  width: 70%;
  margin: 3% auto 0 auto; 
}

.expertises-item-left,
.expertises-item-right {
  transition: all ease .2s;
}

.expertises-item-left {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  background-color: var(--main-blue-hex);
  border-radius: 25px;
}

.expertises-item-left > p {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  font-family: "cd", sans-serif;
}

.expertises-item-right {
  background-image: url("../img/skills.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all ease .2s;
  border-radius: 25px;
}

.expertises-item-left:hover,
.expertises-item-right:hover {
  cursor: pointer;
  scale: 1.05;
}
/* END EXPERTISES */

/* BEGIN LEGAL ENTITIES */
.legal-entities-section {
  background-color: var(--main-blue-hex);
}

.legal-entities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.legal-entities-fields {
  padding: 0 0 10% 0;
}

.entity-sub2, .core-keys, .testimony-sub2, .articles-sub2, .tem-sub2 {
  font-family: "cd", sans-serif;
}

#ca-flag,
#sn-flag {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

#ca-flag {
  background-image: url("../img/ca-flag.gif");
  background-color: #f7f5f4;
}

#sn-flag {
  background-image: url("../img/sn-flag.gif");
  background-color: #f9e933;
}

.legal-entities-title {
  font-family: "cd", sans-serif;
  color: var(--main-orange-hex);
  font-size: 2.3rem;
  padding-top: 2%;
  
  font-family: "cd", sans-serif;
}

.legal-entities-description {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "cd", sans-serif;
}
/* END LEGAL ENTITIES */


/* BEGIN PROJECTS SECTION */
#projects-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: 25px;
  height: 40vh;
  width: 85%;
  margin: 5% auto 7% auto;
}

.projects-blocs {
  width: 100%;
  height: 100%;
  align-content: center;
  text-align: center;
  display: flex;
  scale: 1;
  transition: all .2s ease;
}

.projects-blocs:hover {
  scale: 1.05;
  cursor: pointer;
  box-shadow: 5px 5px rgb(100, 100, 102, .2);
}

.project-period {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  font-weight: bold;
  color: var(--main-orange-hex);
  height: 100%;
  transition: all ease .2s;
}

.project-period:hover {
  background-color: var(--main-orange-hex);
  color: #fff;
}

.project-description {
  width: 70%;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 3rem;
}
/* END PROJECTS SECTION */


/* BEGIN TESTIMONIAL SECTION */
#testimonial-section {
  margin: 0 auto;
  background-color: var(--main-blue-hex);
}

#testimonial-section-team {
  margin: 0 auto;
  /* height: 800px; */
  background-color: var(--main-blue-hex);
}

#testimonial-section-home {
  margin: 0 auto;
  /* height: 800px; */
  background-color: var(--main-blue-hex);
}

.testimonial-title {
  /* height: 100%; */
  padding-top: 5%;
  text-align: center;
}

.testimonial-subtitle1 {
  color: #fff;
}

.swiffy-slider {
  padding-bottom: 5%;
}

.slider-container {
  width: 70%;
  margin: 5% auto !important;
  font-size: 2rem;
  font-weight: 500;
}

.slider-container > li > p {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  color: rgb(225, 225, 225, .8);
}

.slider-container > li > p > i {
  color: var(--main-orange-hex);
}

.testimonial-slider-indicators {
  padding-bottom: 5% !important;
}

.swiffy-slider-testimonial {
  width: 85% !important;
  margin: 0 auto !important;
}
/* END TESTIMONIAL SECTION */


/* BEGIN ARTICLES SECTION */
.swiffy-slider-changes {
  padding-bottom: 3% !important;
  width: 85% !important;
  margin: 0 auto;
}

.articles-section-subtitles {
  text-align: center;
  padding: 5% 0 2% 0;
}

.articles-card-title {
  color: var(--main-blue-hex) !important;
  font-weight: bolder !important;
  font-size: 1.6rem !important;
}

.card-text {
  color: var(--main-gray-hex) !important;
  font-size: 1.3rem;
}

.btn-read-more {
  padding: 15px !important;
  background-color: var(--main-orange-hex) !important;
  border: 1px solid var(--main-orange-hex) !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  transition: all .2s ease !important;
  color: #fff;
  border-radius: 25px 0 25px 0 !important;
}

.btn-read-more:hover {
  background-color: transparent !important;
  color: var(--main-orange-hex) !important;
}

.articles-end-space {
  padding-top: 5%;
}
/* END ARTICLES SECTION */

/* BEGIN TEAM MEMBERS */
.separator-team-members {
  height: 20px;
}

.team-members-profiles-fl,
.team-members-profiles-sl {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
}

.team-members-profiles-fl {
  padding: 2% 0;
}

.team-members-profiles-sl {
  padding-bottom: 4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-members-name {
  color: var(--main-orange-hex);
  font-weight: 600;
  font-size: 2.2rem;
  padding-top: 7%;
  font-family: "cd", sans-serif;
  font-weight: 700;
}

.team-members-title {
  color: #fff;
  font-size: 1.7rem;
}

.team-members-president {
  background-image: url("../img/etienne.jpg");
  background-size: cover;
  background-position: top;
}

.team-members-partners {
  background-image: url("../img/daniel.jpg");
  background-size: cover;
  background-position: top;
}

.team-members-dg {
  background-image: url("../img/christine.jpeg");
  background-size: cover;
  background-position: top;
}

.team-members-operations {
  background-image: url("../img/bernard.jpg");
  background-size: cover;
  background-position: top;
}

.team-members-marketing {
  background-image: url("../img/josephine.jpg");
  background-size: cover;
  background-position: top;
}

.team-members-finances {
  background-image: url("../img/f-sarr.jpg");
  background-size: cover;
  background-position: top;
}

.team-members-president,
.team-members-partners,
.team-members-dg,
.team-members-operations,
.team-members-marketing,
.team-members-finances {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto;
  scale: 1;
  transition: all ease .2s;
}

.team-member-partners,
.team-member-dg,
.team-member-operations,
.team-member-marketing,
.team-member-finances {
  flex: 1 1 150px;
  margin: 10px;
  text-align: center;
}

.team-members-president:hover,
.team-members-partners:hover,
.team-members-dg:hover,
.team-members-operations:hover,
.team-members-marketing:hover,
.team-members-finances:hover {
  scale: 1.1;
  cursor: pointer;
  box-shadow: 0 0 8px var(--main-orange-hex), inset 0 0 8px var(--main-orange-hex);
} 
/* END TEAM MEMBERS */
/* ===================================== */
/* ================++++++=============== */
/* ===================================== */



/* ===================================== */
/* ============== TEACHERS ============= */
/* ===================================== */
.teachers-img {
  height: 40%;
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--main-blue-hex);
}
/* ===================================== */
/* ==============++++++++++============= */
/* ===================================== */



/* ===================================== */
/* ============== CULTURE ============= */
/* ===================================== */
.values-bg {
  background-color: var(--main-blue-hex);
  /* height: 100%; */
}

#culture-header-slider {
  height: 50vh;
  background-image: url("../img/mission.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-vision-mission {
  width: 70%;
  margin: 5% auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.culture-vision,
.culture-mission {
  border-radius: 25px;
  width: 90%;
  margin: 0 auto;
}

.culture-vision,
.culture-mission {
  transition: all ease .2s;
  padding-top: 5%;
}

.culture-vision {
  transform: translateY(30px);
  border-top: 8px solid var(--main-orange-hex);
  border-left: 1px solid var(--main-orange-hex);
  border-bottom: 8px solid var(--main-blue-hex);
  border-right: 1px solid var(--main-blue-hex);
}

.culture-mission {
  transform: translateY(-30px);
  border-top: 8px solid var(--main-blue-hex);
  border-left: 1px solid var(--main-blue-hex);
  border-bottom: 8px solid var(--main-orange-hex);
  border-right: 1px solid var(--main-orange-hex);
}

.culture-vision:hover,
.culture-mission:hover {
  cursor: pointer;
  transform: translateX(0);
}

.culture-vision > div,
.culture-mission > div {
  width: 90%;
  margin: 0 auto;
}

.culture-vision > div > h3,
.culture-mission > div > h3 {
  font-family: "cd", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 5%;
}

.culture-vision > div > h3 {
  color: var(--main-blue-hex);
  border-bottom: 1px solid var(--main-blue-hex);
}

.culture-mission > div > h3 {
  color: var(--main-orange-hex);
  border-bottom: 1px solid var(--main-orange-hex);
}

.culture-vision > div > p,
.culture-mission > div > p {
  font-size: 2rem;
  padding: 5%;
  font-weight: 500;
}

.culture-values {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 3% 0 5% 0;
  width: 95%;
  margin: 0 auto;
}

.culture-values-items {
  background-color: whitesmoke;
  border-radius: 25px;
  position: relative;
  padding: 20px;
  text-align: center;
  transition: all ease 0.2s;
  overflow: hidden;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.culture-values-items i {
  font-size: 4rem;
  color: var(--main-orange-hex);
  margin-bottom: 10px;
  transition: opacity 0.2s ease;
}

.culture-values-items h3 {
  font-family: "cd", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  margin: 10px 0;
  color: var(--main-blue-hex);
  transition: opacity 0.2s ease;
}

.culture-values-items::after {
  content: attr(data-text);
  font-size: 1.2rem;
  color: var(--main-blue-hex);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all ease 0.2s;
  width: 90%;
  white-space: normal;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
}

.culture-values-items:hover::after {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.culture-values-items:hover h3, 
.culture-values-items:hover i {
  opacity: 0;
}
/* ===================================== */
/* ==============++++++++++============= */
/* ===================================== */



/* ===================================== */
/* ============== SOLUTIONS ============== */
/* ===================================== */
#solutions-header-slider {
  height: 50vh;
  background-image: url("../img/solution.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.solutions-items {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 10px;
  margin: 3% auto 5% auto;
  width: 90%;
}

.solutions-items-right {
  background-image: url("../img/solutions.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.si-left-up {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  margin-bottom: 10px;
}

.si-finances,
.si-rh,
.si-left-down {
  padding: 15px;
  border: 1px solid var(--main-blue-hex);
  background-color: #fff;
}

.si-finances > h3,
.si-rh > h3,
.si-left-down > h3 {
  font-family: "cd", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--main-orange-hex);
}

.si-finances > ul > li,
.si-rh > ul > li,
.si-left-down > ul > li {
  font-weight: 500;
  font-size: 1.6rem;
  width: 95%;
  margin: 0 auto;
}

.si-finances,
.si-rh,
.si-left-down {
  border-radius: 25px;
  scale: 1;
  transition: all ease .2s;
}

.si-finances:hover,
.si-rh:hover,
.si-left-down:hover {
  scale: 1.05;
  z-index: 2;
  cursor: pointer;
}

.solutions-items-right {
  border-radius: 25px;
  scale: 1;
  transition: all ease .2s;
}

.solutions-items-right:hover {
  scale: 1.05;
  cursor: pointer;
}
/* ===================================== */
/* ==============++++++++++============= */
/* ===================================== */



/* ===================================== */
/* ============== PROPOSITION ============== */
/* ===================================== */
.proposition-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 3% 0 5% 0;
  gap: 20px;
}

#proposition-header-slider {
  height: 50vh;
  background-image: url("../img/proposition2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.proposition-item-1,
.proposition-item-2,
.proposition-item-3 {
  background-color: var(--main-blue-hex);
  border: 1px solid teal;
  border-radius: 25px;
  padding: 20px;
}

.proposition-item-1 > h3,
.proposition-item-2 > h3,
.proposition-item-3 > h3 {
  font-family: "cd", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 2.5rem;
  color: var(--main-orange-hex);
  padding-bottom: 5%;
  border-bottom: 1px solid var(--main-orange-hex);
}

.proposition-item-1 > ul > li,
.proposition-item-2 > ul > li,
.proposition-item-3 > ul > li {
  font-weight: 500;
  font-size: 1.8rem;
  width: 95%;
  margin: 0 auto;
  color: #fff;
  padding: 3%;
}
/* ===================================== */
/* ==============++++++++++============= */
/* ===================================== */



/* ===================================== */
/* ============== CONTACT ============== */
/* ===================================== */
/* Main slider contact header */
#contact-header-slider {
  height: 50vh;
  background-image: url("../img/contact3.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

#contact-blank-section {
  height: 40vh;
  background-color: var(--main-blue-hex);
}

#contact-infos-section {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 20px;
}

.contact-infos {
  display: grid;
  align-content: center;
}

.contact-infos {
  padding: 10% 0;
}

.contact-infos, .google-maps {
  background-color: #fff;
  transform: translateY(-50%);
  border-radius: 15px;
  box-shadow: 5px 5px rgb(100, 100, 102, .2);
  scale: 1;
  transition: all .2s ease;
}

.contact-infos:hover, .google-maps:hover {
  scale: 1.05;
  cursor: pointer;
}

.contact-infos > div {
  width: 85%;
  margin: 0 auto;
}

.contact-infos-title {
  font-size: 3rem;
  font-weight: bold;
  padding-bottom: 5%;
  font-family: "cd", sans-serif;
  font-weight: 700;
}

.contact-infos-content {
  display: flex;
  margin-top: 6%;
}

.contact-infos-content > div > span {
  color: var(--main-gray-hex);
  font-weight: 700;
}

.contact-infos-content-icons {
  padding-right: 2%;
}

.contact-infos-icons, .contact-infos-content, .contact-icons {
  color: var(--main-orange-hex);
  font-size: 1.7rem;
}

#contact-icons-section {
  display: flex;
  margin-top: 10%;
}

.contact-icons {
  color: var(--main-gray-hex);
  margin-right: 5%;
  scale: 1;
  transition: all .2s ease;
}

.contact-icons:hover {
  color: var(--main-orange-hex);
  margin-right: 5%;
  scale: 1.1;
}

.link-contact-location {
  color: var(--main-gray-hex);
  text-decoration: none;
  transition: all .2s ease;
}

.link-contact-location:hover {
  color: var(--main-orange-hex);
}

#contact-form-section {
  margin: -7% auto 0 auto;
}

#contact-form-section > form {
  width: 85%;
  margin: 0 auto;
}

#contact-form-title {
  display: grid;
  justify-content: center;
  text-align: center;
  padding-top: 2%;
}

#contact-form-title > h1 {
  font-size: 3.5rem;
  font-family: "cd", sans-serif;
  font-weight: 700;
  color: var(--main-orange-hex);
}

#contact-form-title > h3 {
  font-size: 1.8rem;
  color: var(--main-gray-hex);
}

#contact-form {
  margin: 5% auto;
  margin-left: 7%;
}

#contact-form-first-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#contact-form-first-row > div > input {
  width: 90%;
}

#contact-form-second-row {
  margin-top: 5%;
}

#contact-form-first-row > div > input,
#contact-form-message > textarea {
  padding: 15px;
  border-radius: 15px;
  border: none;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--main-gray-hex);
}

#contact-form-first-row > div > label,
#contact-form-second-row > div > label {
  font-size: 2rem;
  font-family: "cd", sans-serif;
  font-weight: 700;
  margin-bottom: 2%;
  color: var(--main-blue-hex);
}

#contact-form-message > textarea {
  width: 95%;
}

.ctc-btn2,
.ctc-btn3 {
  text-align: center;
}

.ctc-btn2 {
  padding-bottom: 10%;
}

.ctc-btn3 {
  padding-bottom: 3%;
}

.ctc-btn2 > button,
.ctc-btn3 > button {
  border: none;
  padding: 15px;
  font-size: 2rem;
  border-radius: 25px;
  color: #fff;
  background-color: var(--main-orange-hex);
  transition: all .2s ease;
  font-family: "cd", sans-serif;
  font-weight: 700;
}

.ctc-btn2 > button:hover,
.ctc-btn3 > button:hover {
  background-color: var(--main-blue-hex);
  color: #fff;
}
/* ===================================== */
/* ===================================== */
/* ===================================== */



/* ===================================== */
/* ================ BLOG =============== */
/* ===================================== */
.blog-section {
  height: 70vh;
  display: grid;
  justify-content: center;
  align-items: center;
}
/* ===================================== */
/* ===================================== */
/* ===================================== */



/* ===================================== */
/* ================ BLOG2 =============== */
/* ===================================== */
.blog-structure-section {
  height: 200vh;
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 3%;
  width: 85%;
  margin: 0 auto;
}

.blog-structure-left {
  background-color: teal;
  height: 100%;
}

.blog-structure-right {
  background-color: teal;
  height: 100%;
}

.blog-right-categories,
.blog-right-newsletter,
.blog-right-tags {
  background-color: whitesmoke;
  padding: 10% 5%;
}

.blog-right-categories,
.blog-right-newsletter {
  margin-bottom: 10%;
}

.blog-right-categories > ul,
.blog-right-tags > ul {
  padding-left: 0;
}

.blog-right-categories > ul > li,
.blog-right-tags > ul > li {
  list-style-type: none;
  font-size: 1.8rem;
  padding: 6% 0;
  border-bottom: 1px solid var(--main-gray-hex);
  font-weight: 500;
  scale: 1;
  transition: all .2s ease;
}

.blog-right-categories > ul > li:hover,
.blog-right-tags > ul > li:hover {
  cursor: pointer;
  color: var(--main-orange-hex);
  scale: 1.05;
  border-bottom: 1px solid var(--main-orange-hex);
}

#blog-right-subscription > label {
  font-size: 1.6rem;
}

#blog-right-subscription > input {
  width: 100%;
  padding: 15px;
  font-size: 1.5rem;
  border: none;
  border-bottom: 1px solid var(--main-gray-hex);
  border-radius: 15px;
  margin: 7% auto;
}
/* ===================================== */
/* ==============++++++++++============= */
/* ===================================== */



/* BEGIN FOOTER SECTION */
.footer {
  display: grid; 
  grid-template-rows: 2fr 4fr 1fr;
  gap: 0px;
  background-color: var(--main-blue-hex);
}

.ctc, .office-details, .footer-copyright {
  width: 90%;
  margin: 0 auto;
  padding: 25px;
}
 
.ctc {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-column-end: 7;
  font-family: "Raleway", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--main-gray-hex);
}

.office-info > div, .office-info-logo > a > img {
  margin-bottom: 25px;
}

.office-info-logo > a > img {
  scale: 1;
  transition: all .2s ease;
}

.office-info-logo > a > img:hover {
  scale: 1.05;
}

.office-info-items-title {
  color: var(--main-orange-hex);
  font-size: 2.3rem;
}

.office-info-items-content {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bolder;
}

.ctc-info-subtitle {
  font-size: 2rem;
  padding-bottom: 3%;
  color: var(--main-orange-hex);
}

.ctc-info-subtitle > span {
  font-family: "cd", sans-serif;
  font-weight: 500;
}

.ctc-title {
  font-size: 2.5rem;
  color: #fff;
}

.ctc-btn > a {
  text-decoration: none;
}

.ctc-btn > a > div {
  font-family: "cd", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  padding: 15px;
  font-weight: bold;
  font-size: 2.5rem;
  border-radius: 25px 0 25px 0;
  color: var(--main-blue-hex);
  background-color: #fff;
  transition: all .2s ease;
  font-weight: bolder;
}

.ctc-btn > a > div:hover {
  background-color: var(--main-orange-hex);
  color: #fff;
}


.office-details {
  grid-row-start: 2;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-column-end: 7;

  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  gap: 0px;
  border-bottom: 2px solid var(--main-gray-hex);
}

.office-info-items-title {
  font-family: 'ur', sans-serif;
  font-weight: 700;
}

.footer-menu, .footer-working-days {
  margin-top: 25px;
}

.arrow-point > img {
  width: 20px;
  height: auto;
}

.footer-list {
  list-style-type: none;
  padding: 0;
}

.footer-list > li > a,
.footer-links {
  font-weight: 600;
  color: #fff;
  transition: all .2s ease;
  text-decoration: none;
}

.footer-list > li > a, 
.footer-list > li, 
.working-days-info > p {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}

.footer-list > li, .working-days-info > p {
  padding-top: 15px;
}

.footer-list > li > a:hover,
.footer-links:hover {
  color: var(--main-orange-hex);
}

.footer-copyright {
  grid-row-start: 3;
  grid-column-start: 1;
  grid-row-end: 3;
  grid-column-end: 7;
  text-align: center;
  align-content: center;
  color: #fff;
}

.copyright-content {
  color: #fff;
  font-size: 1.5rem;
}

.copyright-mentions > a {
  color: var(--main-orange-hex);
  font-weight: 500;
  transition: all .2s ease;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.copyright-mentions > a:hover {
  color: #fff;
  border-bottom: 1px solid var(--main-orange-hex);
}
/* END FOOTER SECTION */





.circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 2% auto 3% auto;
}

.central-text {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: var(--main-blue-hex);
  font-family: "cd", sans-serif;
  font-weight: 400;
  z-index: 10;
}

.central-text > img {
  width: 100px;
  height: auto;
  scale: 1;
  transition: all ease .2s;
}

.central-text > img:hover {
  width: 60px;
  height: auto;
  scale: 1.01;
  cursor: pointer;
  transform: rotate(180deg);
}

.circle-container .circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: var(--main-blue-hex);
  border-radius: 50%;
  color: var(--main-orange-hex);
  font-size: 32px;
  font-family: "cd", sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .1s ease;
  text-align: center;
  overflow: hidden;
}

.circle-container .circle .text {
  z-index: 1;
  transition: opacity 0.2s ease;
}

.circle-container .circle:hover {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: var(--main-orange-hex);
  flex-direction: column;
  justify-content: center;
}

.circle-container .circle:hover .text {
  font-size: 3.5rem;
  color: white;
}

.circle-container .circle:hover::after {
  content: attr(data-text);
  font-size: 1.8rem;
  color: white;
  opacity: 1;
  text-align: center;
  display: block;
  line-height: 1.2;
  margin-top: 8px;
}

/* Position circles in a perfect circular path */
.circle-container .circle:nth-child(2) { 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%) rotate(0deg) translate(250px) rotate(0deg);
}
.circle-container .circle:nth-child(3) { 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%) rotate(60deg) translate(250px) rotate(-60deg);
}
.circle-container .circle:nth-child(4) { 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%) rotate(120deg) translate(250px) rotate(-120deg);
}
.circle-container .circle:nth-child(5) { 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%) rotate(180deg) translate(250px) rotate(-180deg);
}
.circle-container .circle:nth-child(6) { 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%) rotate(240deg) translate(250px) rotate(-240deg);
}
.circle-container .circle:nth-child(7) { 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%) rotate(300deg) translate(250px) rotate(-300deg);
}








/* ************** RESPONSIVE DESIGN ************** */

/* BEGIN NAVBAR MOBILE & TABLET */
@media screen and (max-width: 1023px) {

  .main-slider {
    height: 35vh;
    margin-bottom: 10%;
  }

  .slide-content > h2 {
    font-size: 3rem;
  }

  .slide-content > h2 > span {
    font-size: 3.5rem;
  }

  .quote-icons {
    font-size: 1.2rem;
    transform: translateY(-20px);
  }
  
  /* .team-members-section {
    padding-bottom: 900px;
  } */

  
  .checkbtn {
    display: block;
    order: 1;
    margin-right: 20px;
    color: var(--main-blue-hex);
  }

  .navbar-items {
    position: fixed;
    top: 80px;
    right: -100%;
    background-color: var(--main-orange-hex);
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    vertical-align: center;
  }

  .navbar-items li {
    margin: 20px 0;
  }

  .navbar-items li a {
    font-size: 20px;
    color: #fff;
  }

  .navbar-items li a:active {
    color: var(--main-blue-hex);
  }

  .navbar-items li a:hover {
    color: var(--main-blue-hex);
  }

  #check:checked ~ .navbar-items {
    right: 0;
  }

  .slide-content > h2 > span > i {
    display: none;
  }

  .legal-entities {
    grid-template-columns: 1fr;
  }

  .legal-entities-fields {
    padding: 0 0 5% 0;
  }

/* } */
/* END NAVBAR MOBILE & TABLET */




/* BEGIN RESPONSIVE DESIGN SMARTPHONE */
/* @media screen and (max-width: 767px) { */
  .team-members-name {
    font-size: 1.5rem;
  }

  .team-members-title {
    font-size: 1.2rem;
  }

  .team-members-president,
  .team-members-partners,
  .team-members-dg,
  .team-members-operations,
  .team-members-marketing,
  .team-members-finances {
    height: 100px;
    width: 100px;
  }
/* } */
/* END RESPONSIVE DESIGN SMARTPHONE */



/* BEGIN REPONSIVE DESIGN TABLET */
/* @media (min-width: 768px) and (max-width: 1023px) { */
  .services-description {
    width: 95%;
  }

  .slide > a > img {
    height: 80px;
  }

  .slider {
    margin: 0;
    background-color: whitesmoke;
    padding: 8em 2em;
    overflow: hidden;
  }

  .expertises-items {
    grid-template-columns: 1fr;
    width: 95%;
    text-align: center;
  }

  .expertises-item-right {
    display: none;
  }

  .central-text > img {
    width: 30px;
  }
  
  .central-text > img:hover {
    width: 35px;
  }

  .circle-container {
    width: 400px;
    height: 400px;
  }
  
  .circle-container .circle {
    width: 80px;
    height: 80px;
  }
  
  .circle-container .circle:hover {
    width: 150px;
    height: 150px;
  }
  
  .circle-container .circle:hover .text {
    font-size: 2.5rem;
  }
  
  .circle-container .circle:hover::after {
    font-size: 1.6rem;
  }

  /* Position circles in a perfect circular path */
  .circle-container .circle:nth-child(2) { 
    top: 50%; 
    left: 30%; 
  }
  .circle-container .circle:nth-child(3) { 
    top: 30%; 
    left: 40%; 
  }
  .circle-container .circle:nth-child(4) { 
    top: 30%; 
    left: 60%; 
  }
  .circle-container .circle:nth-child(5) { 
    top: 50%; 
    left: 70%; 
  }
  .circle-container .circle:nth-child(6) { 
    top: 70%; 
    left: 60%; 
  }
  .circle-container .circle:nth-child(7) { 
    top: 70%; 
    left: 40%; 
  }

  .slider-container > li > p {
    font-size: 1.4rem;
    font-weight: 400;
  }

  .slider-container {
    width: 70%;
    margin: 0 auto !important;
  }

  .team-members-name {
    font-size: 1.8rem;
  }

  .team-members-title {
    font-size: 1.4rem;
  }

  .team-members-president,
  .team-members-partners,
  .team-members-dg,
  .team-members-operations,
  .team-members-marketing,
  .team-members-finances {
    height: 120px;
    width: 120px;
  }

  .office-details {
    display: none;
  }

  .footer {
    display: block; 
    background-color: var(--main-blue-hex);
  }
  
  .ctc {
    display: block;
    text-align: center;
  }
  
  .ctc, .footer-copyright {
    width: 90%;
    margin: 0 auto;
    padding: 25px;
  }
  
  .ctc-title {
    font-size: 1.5rem;
    padding-bottom: 2%;
  }

  .culture-values {
    width: 90%;
    height: 100%;
  }

  .culture-values-items {
    background-color: whitesmoke;
    border-radius: 25px;
    position: relative;
    padding: 20px;
    text-align: center;
    transition: all ease 0.2s;
    overflow: hidden;
    height: 350px;
  }

  .culture-values-items::after {
    font-size: 1.4rem;
  }

  .solutions-items-right {
    display: none;
  }

  .solutions-items {
    display: block;
    margin: 3% auto 5% auto;
    width: 90%;
  }

  .si-left-up {
    display: block;
  }

  .si-finances,
  .si-rh {
    margin: 8% auto;
  }

  .proposition-items {
    display: block;
    width: 90%;
  }

  .proposition-items > div {
    margin: 5% auto;
  }

  .google-maps {
    display: none;
  }

  #contact-infos-section {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  #contact-form-first-row {
    display: block;
  }

  #contact-form-name {
    margin-bottom: 5%;
  }

  #contact-form-first-row > div > input,
  #contact-form-message > textarea {
    margin: 0 auto;
  }

  .culture-values {
    display: block;
    width: 65%;
  }

  .culture-values-items {
    height: 500px;
    margin-bottom: 5%;
  }

  .culture-values-items::after {
    font-size: 3rem;
  }

  .culture-values-items i {
    font-size: 10rem;
  }
  
  .culture-values-items h3 {
    font-size: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .main-slider {
    height: 35vh;
    margin-top: 12%;
  }

  .slide-content > h2 {
    font-size: 2rem;
    white-space: nowrap;
  }

  .slide-content > h2 > span {
    font-size: 2.5rem;
    white-space: nowrap;
  }

  .quote-icons {
    font-size: 1rem;
    transform: translateY(-15px);
  }

  .legal-entities {
    grid-template-columns: 1fr;
  }

  .legal-entities-fields {
    padding: 0 0 5% 0;
  }

  /* .team-members-section {
    padding-bottom: 1050px;
  } */

  .bg-vision-mission {
    display: block;
  }

  .culture-mission,
  .culture-vision {
    transform: none;
  }

  .culture-vision {
    margin: 10% auto;
  }

  .culture-values {
    display: block;
  }

  .culture-values-items {
    height: 500px;
    margin-bottom: 5%;
  }

  .culture-values-items::after {
    font-size: 1.8rem;
  }

  .culture-values-items i {
    font-size: 5rem;
  }
  
  .culture-values-items h3 {
    font-size: 3rem;
  }

  .slider-container {
    width: 60%;
    margin: 0 auto !important;
  }

  .slider-container {
    width: 90%;
    margin: 0 auto !important;
  }
  
  .slide-content > h2 > span > i {
    display: none;
  }
  
  .circle-container .circle {
    width: 80px;
    height: 80px;
  }
  
  .circle-container .circle:hover {
    width: 150px;
    height: 150px;
  }
  
  .circle-container .circle:hover .text {
    font-size: 2.5rem;
  }
  
  .circle-container .circle:hover::after {
    font-size: 1.6rem;
  }

  /* Position circles in a perfect circular path */
  .circle-container .circle:nth-child(2) { 
    top: 50%; 
    left: 20%; 
  }
  .circle-container .circle:nth-child(3) { 
    top: 30%; 
    left: 35%; 
  }
  .circle-container .circle:nth-child(4) { 
    top: 30%; 
    left: 65%; 
  }
  .circle-container .circle:nth-child(5) { 
    top: 50%; 
    left: 80%; 
  }
  .circle-container .circle:nth-child(6) { 
    top: 70%; 
    left: 65%; 
  }
  .circle-container .circle:nth-child(7) { 
    top: 70%; 
    left: 35%; 
  }
}
/* END RESPONSIVE DESIGN SERVICES */
/****************************************************/












