/* Fonts */
:root {
  --default-font: "Open Sans";
  --heading-font:"Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
  --btn-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
  /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
  --background-color: #ffffff;
  /* Default Color - This is the default color used for the majority of the text content. */
  --default-color: #121E31;
  /* Heading Color - This color is used for titles, headings and secondary elements. */
  --heading-color: #121E31;
  /* Accent Color - This is the main accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out. */
  --accent-color: #F6A300;
  /* Contrast Color - This is a color used for text when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors. */
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  /* Nav Color - This is the default color of the main navmenu links. */
  --nav-color: #D7D7D7;
  /* Nav Hover Color - This color is applied to main navmenu links when they are hovered over. */
  --nav-hover-color: #F6A300;
  /* Nav Dropdown Background Color - This color is used as the background for dropdown boxes that appear when hovering over primary navigation items. */
  --nav-dropdown-background-color: #fff;
  /* Nav Dropdown Color - This color is used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-color: #121E31;
  /* Nav Dropdown Hover Color - Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --nav-dropdown-hover-color: #F6A300;
  /* background Button par default */
  --bg-primary-btn: #F6A300;
  --color-primary-btn: #F9F9FA;
  /* coleur du Button par default en hover */
  --color-primary-btn-hover: #161717;
  /*  Shadow btn */
  --shadow-btn: 0 25px 50px 0 rgba(255, 116, 104, 0.36);
  /* background secondery Button   */
  --bg-secondary-btn: #F6A300;
  --color-secondary-btn: #161717;
  /* coleur secondery Button en hover */
  --color-secondary-btn-hover: #F9F9FA;
  /* border radius du btn */
  --radus-btn: 8px;
}

/* Template Custom Colors */
:root {
  --hero-background-color: #fff;
  --header-background-color: rgba(32,32,32 ,0.8);
  --hero-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Global btn
--------------------------------------------------------------*/
.btn {
  font-size: 15px;
  font-family: var(--btn-font);
  padding: 11px 20px;
  border-radius: var(--radus-btn);
  font-weight: 500;
}

.defult-btn {
  background: var(--bg-primary-btn);
  color: var(--color-primary-btn);
}
.defult-btn:hover, .defult-btn:focus, .defult-btn:active,
.defult-btn .btn-check:checked + .btn, .defult-btn .btn.active, .defult-btn .btn.show, .defult-btn .btn:first-child:active {
  background: var(--bg-primary-btn) !important;
  color: var(--color-primary-btn-hover);
  border-color: transparent !important;
}

.secondery-btn {
  font-weight: 700;
  background: var(--bg-secondary-btn);
  color: var(--color-secondary-btn);
}
.secondery-btn:hover, .secondery-btn:focus, .secondery-btn:active {
  color: var(--color-secondary-btn-hover) !important;
}

.arrow-btn {
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  box-shadow: var(--shadow-btn);
}
.arrow-btn svg {
  margin-left: 20px;
}
.arrow-btn:hover svg path, .arrow-btn:focus svg path, .arrow-btn:active svg path {
  fill: var(--color-primary-btn-hover);
}

@media screen and (min-width: 1200px) {
  .btn {
    font-size: 18px;
    padding: 16.5px 42.6px;
  }
  .btn.arrow-btn {
    display: inline-block;
    vertical-align: middle;
  }
  .btn.arrow-btn svg {
    margin-left: 33px;
  }
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
body.intern-page.darken p {
  color: #fff;
}
body.intern-page.darken.dark1 {
  background-color: #001413;
}
body.intern-page.darken.dark1 .section,
body.intern-page.darken.dark1 .hero {
  background-color: #001413 !important;
}
body.intern-page.darken.dark1 .footer .footer-newsletter {
  background: #001413 !important;
}
body.intern-page.darken.dark2 {
  background-color: #140c09;
}
body.intern-page.darken.dark2 .section,
body.intern-page.darken.dark2 .hero {
  background-color: #140c09 !important;
}
body.intern-page.darken.dark2 .footer .footer-newsletter {
  background: #140c09 !important;
}
body.intern-page.darken.dark3 {
  background-color: #034c55;
}
body.intern-page.darken.dark3 .section,
body.intern-page.darken.dark3 .hero {
  background-color: #034c55 !important;
}
body.intern-page.darken.dark3 .footer .footer-newsletter {
  background: #034c55 !important;
}
body.intern-page.darken.dark4 {
  background-color: #349687;
  color: #fff;
}
body.intern-page.darken.dark4 .hero {
  background-color: #349687 !important;
}
body.intern-page.darken.dark4 .hero .text-hero p {
  color: #fff;
}
body.intern-page.darken.dark4 .section {
  background: #349687 !important;
}
body.intern-page.darken.dark4 .section p {
  color: #000;
}
body.intern-page.darken.dark4 .section h2 {
  color: #fff;
}
body.intern-page.darken.dark4 .section .title-bloc {
  color: #fff;
  padding-left: 0 !important;
}
body.intern-page.darken.dark4 .section .title-bloc:before {
  display: none !important;
}
body.intern-page.darken.dark4 .section .img-bloc-intern {
  border: 0;
}
body.intern-page.darken.dark4 .footer .footer-newsletter {
  background: #000000 !important;
}
body.intern-page.dark5 {
  background: var(--accent-color) !important;
}
body.intern-page.dark5 .section {
  background: var(--accent-color) !important;
}
body.intern-page.dark6 {
  background: #532930 !important;
}
@media screen and (min-width: 1200px) {
  body.intern-page.dark6 .list-insignt:nth-child(odd) .container-bg .content-bloc-bg {
    flex-direction: row-reverse !important;
  }
}
body.intern-page.dark6 .list-insignt .section {
  background: #532930 !important;
}
body.intern-page.dark6 .list-insignt .container-bg p {
  color: #000;
}
@media screen and (min-width: 1200px) {
  body.intern-page.dark6 .list-insignt .container-bg .content-bloc-bg .desc-bloc-bg {
    max-width: 710px;
  }
}
@media screen and (max-width: 1199px) {
  body.intern-page.dark6 .list-insignt .container-bg .content-bloc-bg {
    background: transparent !important;
  }
  body.intern-page.dark6 .list-insignt .container-bg .content-bloc-bg p,
  body.intern-page.dark6 .list-insignt .container-bg .content-bloc-bg h2 {
    color: #fff !important;
  }
}
body .section-comming-soon h2 {
  font-size: 60px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  text-align: center;
}
body ul.pagination.justify-content-center {
  margin-top: 50px;
}

.contact-page .hero {
  background: #054c74;
}
.contact-page .hero .content-top {
  margin-top: 0% !important;
}
.contact-page .list-info-contact {
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact-page .list-info-contact {
    gap: 30px;
  }
}
.contact-page .list-info-contact .info-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact-page .list-info-contact .info-contact-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
.contact-page .list-info-contact .info-contact-item .content-info .titre-info {
  font-size: 20px;
  font-weight: 700;
  color: var(--default-color);
  font-family: var(--heading-font);
}
.contact-page .list-info-contact .info-contact-item .content-info .values-info {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--default-font);
}
@media screen and (max-width: 767px) {
  .contact-page .list-info-contact .info-contact-item .content-info .titre-info {
    font-size: 18px;
  }
  .contact-page .list-info-contact .info-contact-item .content-info .values-info {
    font-size: 16px;
  }
}
.contact-page .list-info-contact .info-contact-item .picto-info {
  padding: 20px 24px;
  background: #f6fbfa;
  border-radius: 50px;
}
.contact-page .list-info-contact .info-contact-item .picto-info i {
  color: var(--accent-color);
  font-size: 32px;
}
.contact-page .map {
  max-width: 1620px;
  width: 100%;
  margin: auto;
  height: 815px;
}
.contact-page .map iframe {
  width: 100%;
  height: 100%;
}
.contact-page .formulaire {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 35px;
  position: relative;
  margin-top: -45vh;
  margin-left: 4vw;
}
@media screen and (max-width: 1199px) {
  .contact-page .formulaire {
    margin-left: 0;
    padding: 20px 10px;
  }
}
.contact-page .formulaire h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--default-color);
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .contact-page .formulaire h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .contact-page .formulaire h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 420px) {
  .contact-page .formulaire h2 {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
.contact-page .formulaire label {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: #b6b8b9;
}
.contact-page .formulaire .php-email-form .form-control {
  border: 2px solid #eeeeee;
  background: #fbfbfb;
  border-radius: 8px;
  padding: 0.94rem 0.75rem;
}
.contact-page .formulaire .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}
.contact-page .formulaire .php-email-form .sub-form {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact-page .formulaire .php-email-form .sub-form {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-page .formulaire .php-email-form .sub-form .form-check-label {
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: var(--default-font) !important;
  color: var(--default-color) !important;
}
.contact-page .formulaire .php-email-form .sub-form .form-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.contact-page .formulaire .php-email-form .sub-form .form-check .form-check-input {
  width: 30px !important;
  height: 30px !important;
  border: 3px solid #544e5d !important;
  box-shadow: none !important;
}
.contact-page .formulaire .php-email-form .sub-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border: 3px solid var(--accent-color);
}
.contact-page .formulaire .php-email-form .sub-form button[type=submit] {
  border: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
  padding: 16px 87px;
  background: var(--accent-color);
  color: #f9f9fa;
  transition: 0.3s;
  border-radius: 8px;
  box-shadow: var(--shadow-btn);
}
.contact-page .formulaire .php-email-form .sub-form button[type=submit]:hover, .contact-page .formulaire .php-email-form .sub-form button[type=submit]:focus {
  color: #000;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.5;
}

.text-bloc {
  padding-top: 15px;
}

.title-bloc {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 24px;
}

.dots-container {
  text-align: center;
  margin-top: 35px;
}

.owl-dot {
  display: inline-block;
  width: 25px;
  height: 10px;
  background-color: #eeeeee;
  border-radius: 14px;
  margin-right: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-color: #eeeeee;
}
.owl-dot.active {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  width: 55px;
}

.gray-img img {
  filter: grayscale(100%);
}

.intern-page h2 {
  font-weight: 600;
  font-size: 40px;
  padding-bottom: 3vh;
}
@media screen and (max-width: 1199px) {
  .intern-page h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .intern-page h2 {
    font-size: 30px;
  }
}
.intern-page .hero {
  background-color: var(--accent-color) !important;
}
.intern-page .hero.with-bg {
  background-color: #0b9f23 !important;
}
.intern-page .hero.with-filter {
  position: relative;
}
.intern-page .hero.with-filter::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.intern-page .hero .content-top {
  z-index: 1;
  position: relative;
  margin-top: 0 !important;
}
.intern-page .section-bloc.section .bloc {
  max-width: 1522px;
  width: 100%;
  margin: auto;
}
.intern-page .section-bloc.section .bloc .content-bloc-intern {
  width: 100%;
}
@media screen and (min-width: 993px) {
  .intern-page .section-bloc.section .bloc .content-bloc-intern {
    max-width: 640px;
  }
}
@media screen and (max-width: 1199px) {
  .intern-page .section-bloc.section .bloc .content-bloc-intern {
    margin: auto;
    text-align: center;
  }
  .intern-page .section-bloc.section .bloc .content-bloc-intern .description-bloc p {
    padding-block: 15px;
  }
}
.intern-page .section-bloc.section .bloc .content-bloc-intern .title-bloc {
  padding-left: 35px;
  padding-bottom: 0 !important;
  margin-bottom: 24px;
  position: relative;
}
.intern-page .section-bloc.section .bloc .content-bloc-intern .title-bloc:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 4px;
  border-radius: 8px;
  background: var(--accent-color);
  margin: auto;
  bottom: 0;
}
@media screen and (max-width: 1199px) {
  .intern-page .section-bloc.section .bloc .content-bloc-intern .title-bloc:before {
    display: none;
  }
}
.intern-page .section-bloc.section .bloc .content-bloc-intern .sub-desc {
  padding: 50px 0 70px 28px;
}
@media screen and (max-width: 1199px) {
  .intern-page .section-bloc.section .bloc .content-bloc-intern .sub-desc {
    padding: 25px 0;
  }
}
.intern-page .section-bloc.section .bloc .content-bloc-intern .sub-desc .sub-title {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--default-font);
}
.intern-page .section-bloc.section .bloc .content-bloc-intern .sub-desc .img-icon img {
  display: block;
  width: auto;
  margin: auto;
}
.intern-page .section-bloc.section .bloc .img-bloc-intern {
  width: 100%;
  overflow: hidden;
  border-radius: 15px 50px 15px 50px;
  border: 1px solid #000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 993px) {
  .intern-page .section-bloc.section .bloc .img-bloc-intern {
    max-width: 660px;
  }
}
.intern-page .section-bloc.section .bloc .img-bloc-intern.without-style {
  clip-path: none;
  border-radius: 15px;
  border: 0;
  box-shadow: 2px 0px 15px 3px rgba(255, 255, 255, 0.1);
  padding: 10px;
}
.intern-page .section-bloc.section .bloc .img-bloc-intern img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .intern-page .section-bloc.section .bloc .img-bloc-intern {
    margin-top: 25px;
    margin-inline: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .intern-page .section-bloc-bg {
    padding-bottom: 100px;
  }
  .intern-page .section-bloc-bg .sou-container {
    width: 100%;
    margin: auto;
    background: #f6a300;
    position: relative;
    max-width: 1800px;
    margin-bottom: 200px;
    padding-bottom: 39px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
  }
  .intern-page .section-bloc-bg .sou-container .container.container-bg {
    position: relative;
    top: 234px;
  }
}
.intern-page .section-bloc-bg .content-bloc-bg {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
  max-width: 1520px;
  width: 100%;
  margin: auto;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .intern-page .section-bloc-bg .content-bloc-bg {
    box-shadow: none;
    text-align: center;
    justify-content: center;
  }
}
.intern-page .section-bloc-bg .content-bloc-bg .img-bloc-bg {
  width: 100%;
  max-width: 560px;
}
@media screen and (max-width: 1199px) {
  .intern-page .section-bloc-bg .content-bloc-bg .img-bloc-bg {
    margin: auto;
  }
}
.intern-page .section-bloc-bg .content-bloc-bg .img-bloc-bg img {
  display: block;
  width: 100%;
  border-radius: 14px;
}
.intern-page .section-bloc-bg .content-bloc-bg .desc-bloc-bg {
  padding: 40px 0px 0 0;
}
.intern-page .section-bloc-bg .content-bloc-bg .desc-bloc-bg h2 {
  padding-bottom: 1vh;
}
.intern-page .section-bloc-bg .content-bloc-bg .desc-bloc-bg .text-bloc {
  color: #b6b8b9;
  font-size: 16px;
  padding-inline: 0;
}
.intern-page .section-bloc-bg .content-bloc-bg .desc-bloc-bg .links {
  padding-top: 10vh;
}
.intern-page .call-to-action {
  padding: 235px 0;
}
.intern-page .call-to-action:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.intern-page section#section-bloc {
  padding: 100px 0 !important;
}
@media screen and (max-width: 1199px) {
  .intern-page section#section-bloc {
    padding: 80px 0 !important;
  }
}
@media screen and (max-width: 992px) {
  .intern-page section#section-bloc {
    padding: 60px 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .intern-page section#section-bloc {
    padding: 40px 0 !important;
  }
}
.intern-page .whatWeDo.call-to-action:after {
  background-color: rgba(0, 0, 0, 0.75);
}
.intern-page .section-map .descr-map {
  max-width: 1400px;
  width: 100%;
  margin: auto;
}
.intern-page .section-map .descr-map .text-map {
  margin-bottom: 15px;
}
.intern-page .section-map .descr-map .text-map p {
  font-size: 30px;
  font-family: var(--heading-font);
}
@media screen and (max-width: 1320px) {
  .intern-page .section-map .descr-map .text-map p {
    font-size: 28px;
  }
}
@media screen and (max-width: 1199px) {
  .intern-page .section-map .descr-map .text-map p {
    font-size: 26px;
  }
}
@media screen and (max-width: 992px) {
  .intern-page .section-map .descr-map .text-map p {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .intern-page .section-map .descr-map .text-map p {
    font-size: 20px;
  }
}
@media screen and (max-width: 520px) {
  .intern-page .section-map .descr-map .text-map p {
    font-size: 16px;
  }
}
.intern-page .section-map .img-map {
  max-width: 992px;
  width: 100%;
  margin: auto;
}
.intern-page .section-map .img-map img {
  margin: auto;
  width: 100%;
}
.intern-page .business .card {
  min-height: 460px !important;
}
.intern-page .business .card .card-img-top {
  height: 327px;
}
.intern-page .block {
  display: none;
}
.intern-page .block.active {
  display: block;
}
.intern-page .list-projects .card {
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid var(--accent-color);
  position: relative;
  max-width: 509px;
}
.intern-page .list-projects .card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(1, 31, 30, 0.7) 100%, rgba(10, 215, 213, 0.3) 59%);
  border-radius: 20px;
}
.intern-page .list-projects .card .img-card {
  border-radius: 20px;
}
.intern-page .list-projects .card .img-card .card-img {
  border-radius: 20px !important;
}
.intern-page .list-projects .card .card-img-overlay {
  bottom: 7%;
  top: auto;
  left: 3%;
}
.intern-page .list-projects .card .card-img-overlay .card-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-color);
  font-family: var(--heading-font);
}
.intern-page .page-link {
  color: var(--accent-color);
}
.intern-page .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(246, 163, 0, 0.25);
}
.intern-page .sub-desc.with-bg {
  background-color: #fff;
  padding: 20px !important;
  border-radius: 15px;
  margin-top: 40px;
}
@media screen and (max-width: 1199px) {
  .intern-page .sub-desc.with-bg {
    margin-top: 80px;
  }
  .intern-page .sub-desc.with-bg .img-icon {
    margin-top: -60px;
  }
}
.intern-page .section-activite .list-activity {
  padding-top: 22px;
}
.intern-page .section-activite .list-activity .card {
  max-width: 505px;
  width: 100%;
  padding: 30px;
  border: 1px solid #ababab;
  border-radius: 15px;
  margin: auto;
}
@media screen and (max-width: 1320px) {
  .intern-page .section-activite .list-activity .card {
    padding: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .intern-page .section-activite .list-activity .card {
    padding: 10px;
  }
}
.intern-page .section-activite .list-activity .card img.card-img-top {
  border-radius: 15px;
}
.intern-page .section-activite .list-activity .card .card-body {
  padding-top: 30px;
}
.intern-page .section-activite .list-activity .card .card-body .card-title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--heading-font);
  padding-bottom: 10px;
}
.intern-page .section-activite .list-activity .card .card-body .card-text {
  font-size: 16px;
}
.intern-page .section-bg .container {
  border-radius: 14px;
  padding: 45px 27px;
}
@media screen and (min-width: 1200px) {
  .intern-page .section-bg .container {
    background: #0f403b !important;
    color: #fff;
  }
}
@media (min-width: 1620px) {
  .intern-page .section-bg .container {
    max-width: 1489px;
    width: 100%;
  }
}
.intern-page .section-bg h2 {
  padding-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .intern-page .section-bg h2 {
    color: #fff;
  }
}
.intern-page .section-bg .bloc-text {
  margin: 20px;
}
@media screen and (min-width: 1200px) {
  .intern-page .section-bg .bloc-text {
    padding-left: 20px;
    margin-top: 0;
  }
  .intern-page .section-bg .bloc-text .description {
    max-width: 558px;
    width: 100%;
    text-align: left !important;
  }
}
.intern-page .section-bg .bloc-text .description {
  text-align: center;
}
.intern-page .section-bg .bloc-text .description p {
  padding-block: 10px;
}
.intern-page .section-bg .notes {
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
}
.intern-page .section-bg .notes span {
  font-weight: 600;
  font-size: 16px;
  font-family: var(--heading-font);
}
.intern-page .section-bg .notes .text-notes {
  margin-top: 20px;
  background: #fff;
  color: #000;
  padding: 25px 28px;
  border-radius: 15px;
}
.intern-page .section-bg .bloc-media {
  background: #0f403b !important;
  padding: 20px;
  border-radius: 20px;
}
@media screen and (min-width: 1200px) {
  .intern-page .section-bg .bloc-media {
    max-width: 675px;
    width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
}
.intern-page .section-bg .bloc-media .list-img .item .icon img {
  border-radius: 20px;
}
@media screen and (min-width: 1200px) {
  .intern-page .list-blocs .simple-bloc:nth-child(odd) .bloc {
    flex-direction: row-reverse !important;
  }
  .intern-page .list-blocs .simple-bloc:nth-child(odd) .bloc .content-bloc-intern {
    padding-left: 30px;
  }
}
.intern-page .section-bloc.section.simple-bloc .bloc .content-bloc-intern {
  max-width: 805px;
}
@media screen and (min-width: 1200px) {
  .intern-page .section-bloc.section.simple-bloc .bloc .content-bloc-intern {
    padding-right: 30px;
  }
}
.intern-page .section-bloc.section.simple-bloc .bloc .content-bloc-intern p {
  font-size: 30px;
}
@media screen and (max-width: 1419px) {
  .intern-page .section-bloc.section.simple-bloc .bloc .content-bloc-intern p {
    font-size: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .intern-page .section-bloc.section.simple-bloc .bloc .content-bloc-intern p {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .intern-page .section-bloc.section.simple-bloc .bloc .content-bloc-intern p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .intern-page .section-bloc.section.simple-bloc .bloc .content-bloc-intern p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .intern-page .section-bloc.section.simple-bloc .bloc .content-bloc-intern .description-bloc {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }
}
.intern-page .section-bloc.section.simple-bloc .bloc .img-bloc-intern {
  max-width: 557px;
  width: 100%;
  clip-path: none;
  overflow: hidden;
  border-radius: 14px;
  border: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.intern-page .section-activite.news .list-activity .card .links-card {
  gap: 10px;
}
.intern-page .section-activite.news .list-activity .card .links-card .bttn-avis {
  padding: 17px 0;
  background: #ff7468;
  border-radius: 15px;
  border: 1px solid #ababab;
}
.intern-page .section-activite.news .list-activity .card .links-card .bttn-avis i {
  color: #fff;
  font-size: 24px;
}
.intern-page .section-activite.news .list-activity .card .links-card .bttn-more {
  border-radius: 15px;
  border: 1px solid #ababab;
  padding: 21px 0;
  color: #fff;
  background: var(--accent-color);
}
.intern-page.page-media .section .title-bloc {
  position: relative;
  padding-left: 35px;
  padding-bottom: 0;
}
.intern-page.page-media .section .title-bloc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 4px;
  border-radius: 8px;
  background: var(--accent-color);
  margin: auto;
  bottom: 0;
}
.intern-page.page-media .hero {
  background: #61003a !important;
}
@media screen and (min-width: 1200px) {
  .intern-page.page-media .informations {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.intern-page.page-media .section-bg.blanc h2 {
  color: #000;
}
.intern-page.page-media .section-bg.blanc .title-bloc {
  margin-bottom: 25px;
}
.intern-page.page-media .section-bg.blanc .container {
  background: transparent !important;
  border: 0;
  padding: 0;
}
.intern-page.page-media .section-bg.blanc .sub-container {
  flex-direction: column-reverse;
}
@media screen and (min-width: 1200px) {
  .intern-page.page-media .section-bg.blanc .sub-container {
    flex-direction: row;
    background: #fff !important;
    color: #000;
    border: 1px solid #d7d7d7;
    box-shadow: 0 8px 7px 0 rgba(0, 0, 0, 0.1);
    padding: 30px 27px;
    border-radius: 15px;
  }
}
.intern-page.page-media .section-bg.blanc .sub-container .bloc-media {
  background: #fff !important;
  border-radius: 15px;
}
.intern-page.page-media .section-bg.blanc .sub-container .bloc-media .bloc-video {
  border-radius: 15px;
}
.intern-page.page-media .section-bg.blanc .sub-container .bloc-media .bloc-video img {
  border-radius: 15px;
}
.intern-page.page-media .section-bg.blanc .sub-container .bloc-text .link-media {
  margin-block: 70px !important;
}
@media screen and (max-width: 1199px) {
  .intern-page.page-media .section-bg.blanc .sub-container .bloc-text .link-media {
    text-align: center;
  }
}
.intern-page.page-media .section-bg.blanc .sub-container .bloc-text .text-notes {
  background: #d7d7d7;
}
.intern-page.page-media .section.section-bg.section-video .title-bloc {
  margin-bottom: 25px;
}
.intern-page.page-media .section.section-bg.section-video .container {
  background: transparent !important;
  border: 0;
  padding: 0;
}
.intern-page.page-media .section.section-bg.section-video .sub-container {
  flex-direction: column-reverse;
}
@media screen and (min-width: 1200px) {
  .intern-page.page-media .section.section-bg.section-video .sub-container {
    flex-direction: row;
    border-radius: 15px;
    padding: 30px 27px;
    border: 1px solid #d7d7d7;
    box-shadow: 0 8px 7px 0 rgba(0, 0, 0, 0.1);
    background: #532930 !important;
    color: #fff;
  }
}
.intern-page.page-media .section.section-bg.section-video .sub-container .bloc-media {
  background: #532930 !important;
  border-radius: 15px;
}
.intern-page.page-media .section.section-bg.section-video .sub-container .bloc-media .bloc-video {
  border-radius: 15px;
}
.intern-page.page-media .section.section-bg.section-video .sub-container .bloc-media .bloc-video img {
  border-radius: 15px;
}
.intern-page.page-media .section.section-bg.section-video .sub-container .bloc-text .link-media {
  margin-block: 70px !important;
}
@media screen and (max-width: 1199px) {
  .intern-page.page-media .section.section-bg.section-video .sub-container .bloc-text .link-media {
    text-align: center;
  }
}
.intern-page.page-media .section.section-bg.section-video .sub-container .bloc-text .text-notes {
  background: #d7d7d7;
}
@media screen and (min-width: 1200px) {
  .intern-page.page-media .section-bloc-bg .sou-container {
    background: #532930;
  }
}
.intern-page.page-media .section-bloc-bg .sou-container .links .btn {
  background: #532930 !important;
}
.intern-page.page-media .section-bloc-bg .sou-container .links .btn:hover {
  opacity: 0.8;
  color: #fff;
  background: #532930 !important;
}
.intern-page.page-media .section-bloc-bg .sou-container .links .btn:hover svg path {
  fill: #fff;
}

@media screen and (max-width: 993px) {
  .title-bloc {
    margin-bottom: 10px;
  }
  .text-bloc {
    padding-inline: 20px;
    padding-top: 0;
  }
}
@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 95% !important;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1200px !important;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px !important;
  }
}
@media (min-width: 1620px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1500px !important;
  }
  .container-interne {
    max-width: 1400px !important;
  }
}
@media (min-width: 1920px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1650px !important;
  }
  .container-interne {
    max-width: 1550px !important;
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header, .scrolled.header {
  --background-color: var(--header-background-color);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--header-background-color);
  padding: 32px 0 23px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: inset 0 0 0 0 #000, 0 0px 6px rgb(0, 0, 0);
}
.header .logo-header, .scrolled.header .logo-header {
  max-width: 155px;
  height: 75px;
}
.header .logo-header .logo, .scrolled.header .logo-header .logo {
  line-height: 1;
}
.header .logo-header .logo img, .scrolled.header .logo-header .logo img {
  width: 100%;
  height: 100%;
  margin-right: 8px;
}
.header .logo-header h1, .scrolled.header .logo-header h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (min-width: 1420px) {
  .header .logo-header, .scrolled.header .logo-header {
    max-width: 181px;
  }
}
.header .btn-getstarted,
.header .btn-getstarted:focus, .scrolled.header .btn-getstarted,
.scrolled.header .btn-getstarted:focus {
  order: 3;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 15px;
  font-family: var(--btn-font);
  font-weight: 700;
  background: var(--bg-secondary-btn);
  color: var(--color-secondary-btn);
  margin: 0 0 0 30px;
  transition: 0.3s;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover, .scrolled.header .btn-getstarted:hover,
.scrolled.header .btn-getstarted:focus:hover {
  color: var(--color-secondary-btn-hover);
}
@media screen and (min-width: 1420px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus, .scrolled.header .btn-getstarted,
  .scrolled.header .btn-getstarted:focus {
    font-size: 18px;
    padding: 16.5px 52px;
  }
}
@media (max-width: 1200px) {
  .header, .scrolled.header {
    padding: 28px 0 20px 0;
  }
  .header .logo, .scrolled.header .logo {
    order: 1;
  }
  .header .navmenu, .scrolled.header .navmenu {
    order: 2;
  }
}
@media (max-width: 993px) {
  .header, .scrolled.header {
    padding: 30px 0 25px 0;
  }
  .header .logo-header, .scrolled.header .logo-header {
    max-width: 120px;
    height: 55px;
  }
}
@media (max-width: 767px) {
  .header .logo-header, .scrolled.header .logo-header {
    max-width: 101px;
    height: 43px;
  }
}

.scrolled .header {
  background-color: rgba(32, 32, 32, 0.98);
}

@media screen and (min-width: 1200px) {
  .mode-mobile {
    display: none;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/******************************************************* Desktop Navigation *******************************************************/
@media screen and (min-width: 1420px) {
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 25px;
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 15px;
    font-size: 17px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
    color: var(--accent-color);
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a,
  .navmenu .dropdown ul a.active {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .navmenu .megamenu {
    position: static;
  }
  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .navmenu .megamenu ul li {
    flex: 1;
  }
  .navmenu .megamenu ul li a, .navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }
  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }
}
/****************************************************** Mobile Navigation *******************************************************/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 25px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .mobile-nav-toggle img {
    display: none;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #000;
  font-size: 16px;
  position: relative;
}
.footer .footer-newsletter {
  padding: 50px 0;
}
.footer .footer-newsletter .container-form {
  max-width: 631px;
  width: 100%;
  margin: auto;
}
.footer .footer-newsletter h2 {
  font-size: 50px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #fff;
}
@media screen and (max-width: 1320px) {
  .footer .footer-newsletter h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer-newsletter h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 992px) {
  .footer .footer-newsletter h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 420px) {
  .footer .footer-newsletter h2 {
    font-size: 25px;
  }
}
.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  padding: 6px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
  border-radius: 8px;
}
@media screen and (max-width: 420px) {
  .footer .footer-newsletter .newsletter-form {
    flex-direction: column;
    gap: 25px;
  }
}
.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}
.footer .footer-newsletter .newsletter-form input[type=email],
.footer .footer-newsletter .newsletter-form textarea {
  border: 1px solid #fbfbfb;
  padding: 25px 38px;
  width: 100%;
  background-color: transparent;
  color: #fbfbfb;
  border-radius: 8px;
  margin-right: 18px;
  max-height: 120px;
  margin-block: 15px;
}
.footer .footer-newsletter .newsletter-form input[type=email]::placeholder,
.footer .footer-newsletter .newsletter-form textarea::placeholder {
  color: #fbfbfb;
  font-size: 16px;
  font-family: var(--heading-font);
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .footer .footer-newsletter .newsletter-form input[type=email],
  .footer .footer-newsletter .newsletter-form textarea {
    padding: 15px 19px;
    font-size: 14px;
  }
}
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}
.footer .footer-newsletter .newsletter-form input[type=submit] {
  max-width: 250px;
  width: 100%;
  margin: auto;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
  padding: 15px 55px;
  background: var(--accent-color);
  color: #f9f9fa;
  transition: 0.3s;
  border-radius: 8px;
  box-shadow: var(--shadow-btn);
}
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  color: var(--color-primary-btn-hover);
}
@media screen and (max-width: 992px) {
  .footer .footer-newsletter .newsletter-form input[type=submit] {
    padding: 13px 24px;
    font-size: 14px;
  }
}
.footer .footer-newsletter .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}
.footer .footer-newsletter .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}
.footer .footer-newsletter .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-top: 10px;
}
.footer .footer-newsletter .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: subscription-loading 1s linear infinite;
}
@keyframes subscription-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-top .footer-about .desc-footer {
  padding: 10px 0 50px 0;
}
@media screen and (max-width: 1199px) {
  .footer .footer-top .footer-about .desc-footer {
    max-width: 500px;
    margin: auto;
  }
}
.footer .footer-top .footer-about .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-right: 2px;
  transition: 0.3s;
  border-radius: 8px;
}
.footer .footer-top .footer-about .social-links a i {
  font-size: 17px;
  color: #72737c;
}
.footer .footer-top .footer-about .social-links a:hover {
  background-color: var(--accent-color);
}
.footer .footer-top .footer-about .social-links a:hover i {
  color: #fff;
}
.footer .footer-top .infos-footer {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 420px) {
  .footer .footer-top .infos-footer {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer-top .infos-footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-top .infos-footer .title-bloc {
  color: #fff !important;
}
@media screen and (max-width: 420px) {
  .footer .footer-top .infos-footer .title-bloc {
    text-align: center;
  }
}
.footer .footer-top .infos-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-top .infos-footer ul li {
  padding: 10px 0;
  gap: 10px;
  display: flex;
  align-items: center;
}
.footer .footer-top .infos-footer ul li:first-child {
  padding-top: 0;
}
@media screen and (max-width: 420px) {
  .footer .footer-top .infos-footer ul li {
    justify-content: center;
  }
}
.footer .footer-top .infos-footer ul li i {
  width: 24px;
  height: 24px;
}
.footer .footer-top .infos-footer ul li i:before {
  font-size: 20px;
}
.footer .footer-top .infos-footer ul a {
  display: inline-block;
  line-height: 1;
  color: #fff;
}
.footer .footer-top .infos-footer ul a:hover {
  color: var(--accent-color);
}
@media screen and (max-width: 767px) {
  .footer .footer-top .footer-contact {
    text-align: center;
  }
  .footer .footer-top .footer-contact ul li {
    justify-content: center;
  }
}
.footer .logo-footer {
  max-width: 170px;
  width: 100%;
}
.footer .logo-footer a img {
  width: 100%;
}

.copyright {
  padding-block: 25px;
  border-top: 1px solid #3D3F4E;
}

.credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  position: relative;
}
.page-title h1 {
  font-size: 70px;
  font-weight: 600 !important;
  margin: 0;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding-top: 10px;
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--default-font);
}
@media screen and (max-width: 993px) {
  .page-title .breadcrumbs ol {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .page-title .breadcrumbs ol {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-title .breadcrumbs ol {
    font-size: 17px;
  }
}
.page-title .breadcrumbs ol li a {
  color: #fff;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 5px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 5px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--contrast-color) !important;
  background: var(--contrast-color) !important;
  padding: 50px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 520px) {
  section,
  .section {
    padding: 30px 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 993px) {
  .section-title h2 {
    font-size: 35px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .section-title h2 {
    font-size: 25px;
  }
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: var(--hero-color);
  --heading-color: var(--hero-color);
  --contrast-color: var(--hero-color);
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0px;
  display: flex;
  align-items: center;
}
.hero img.img-bg-hero {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 560px) {
  .hero img.img-bg-hero {
    right: -80%;
    width: auto;
  }
}
.hero .content-top {
  margin-top: 22% !important;
}
.hero .content-top h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.hero .content-top h1 span {
  display: block;
}
.hero .content-top .text-hero {
  max-width: 770px;
  width: 100%;
  margin: auto;
}
.hero .content-top .text-hero p {
  color: #fff;
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
  text-align: center;
  padding-top: 15px;
  margin: 0;
  letter-spacing: 0;
}
.hero .content-top .link-hero {
  text-align: center;
  margin: 25px auto 0;
}
@media screen and (max-width: 1199px) {
  .hero .content-top .link-hero {
    text-align: center;
    margin: 50px auto 0;
  }
  .hero .content-top h1 {
    font-size: 60px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 993px) {
  .hero .content-top h1 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .hero .content-top h1 {
    font-size: 30px;
  }
  .hero .content-top p {
    font-size: 16px;
  }
  .hero .content-top .text-hero {
    padding-inline: 45px;
  }
  .hero .content-top .text-hero p {
    line-height: 1.8;
  }
}
@media (max-width: 400px) {
  .hero .content-top h1 {
    font-size: 26px;
  }
  .hero .content-top .text-hero {
    padding-inline: 20px;
  }
}
.hero .content-bottom {
  margin-top: 80px;
  margin-bottom: 100px;
}
.hero .content-bottom .picto {
  position: relative;
  max-width: 120px;
  width: 100%;
  height: 100%;
  padding-top: 10px !important;
}
.hero .content-bottom .picto img {
  height: auto;
  width: auto;
}
.hero .content-bottom .partenaire {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero .content-bottom .partenaire .titre-part {
  padding-top: 63px;
  position: relative;
  font-weight: 600;
  font-size: 29px;
  font-family: var(--heading-font);
  color: var(--accent-color);
}
.hero .content-bottom .partenaire .titre-part:before {
  position: absolute;
  top: 0;
  left: 0;
  content: url("../../assets/img/before-part.png");
}
.hero .content-bottom .list-part {
  max-width: 585px;
  width: 100%;
}
.hero .content-bottom .list-part .swiper {
  padding: 10px 0;
}
.hero .content-bottom .list-part .swiper-wrapper {
  height: auto;
}
.hero .content-bottom .list-part .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}
.hero .content-bottom .list-part .swiper-slide img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .hero .content-bottom {
    margin-top: 80px;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    gap: 100px;
  }
  .hero .content-bottom .partenaire {
    justify-content: center;
    align-items: center;
  }
  .hero .content-bottom .partenaire .titre-part:before {
    text-align: center;
    right: 0;
  }
}
@media screen and (max-width: 580px) {
  .hero .content-bottom .partenaire .titre-part {
    font-size: 24px;
    padding-top: 100px;
  }
  .hero .content-bottom .partenaire .list-part {
    max-width: 270px;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 100px 0;
}
.clients .section-title {
  padding-bottom: 0;
}
.clients .section-title h2 {
  padding-bottom: 0;
}
.clients .swiper {
  padding: 10px 0;
}
.clients .swiper-wrapper {
  height: auto;
}
.clients .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}
.clients .swiper-slide img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 991px) {
  .clients {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .clients {
    padding: 60px 0;
  }
}
@media screen and (max-width: 620px) {
  .clients {
    padding: 40px 0;
  }
}

.project .top-section {
  margin-bottom: 135px;
}
.project .top-section .section-title.bloc-left h2 {
  margin-bottom: 20px;
  padding-bottom: 0;
}
@media screen and (max-width: 1199) {
  .project .top-section {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 992px) {
  .project .top-section {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .project .top-section {
    margin-bottom: 60px;
  }
}
.project .bottom-section .bloc-right {
  width: 100%;
  padding-right: 25px;
}
.project .bottom-section .bloc-right .infos h3 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1620px) {
  .project .bottom-section .bloc-right .infos h3 {
    font-size: 29px;
  }
}
@media screen and (max-width: 1420px) {
  .project .bottom-section .bloc-right .infos h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .project .bottom-section .bloc-right .infos h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .project .bottom-section .bloc-right .infos h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .project .bottom-section .bloc-right {
    padding-right: 0px;
  }
}
.project .bottom-section .bloc-right .list-project {
  margin: 8vh 0 4.6vh 0;
  padding-right: 25px;
  position: relative;
}
.project .bottom-section .bloc-right .list-project::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 20px;
  background-color: #F6A300;
  top: 0;
  right: 0;
  border-radius: 8px;
}
@media screen and (max-width: 992px) {
  .project .bottom-section .bloc-right .list-project {
    padding-right: 0px;
  }
  .project .bottom-section .bloc-right .list-project::before {
    display: none;
  }
}
.project .bottom-section .bloc-right .list-project .team-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 233px;
  width: 100%;
}
.project .bottom-section .bloc-right .list-project .team-item .icon {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 15px;
}
.project .bottom-section .bloc-right .list-project .team-item .icon img {
  border-radius: 15px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.project .bottom-section .bloc-right .list-project .team-item .icon:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.57);
  border-radius: 15px;
}
.project .bottom-section .bloc-right .list-project .team-item .description-item {
  position: relative;
  margin: auto;
  padding-block: 51px;
}
.project .bottom-section .bloc-right .list-project .team-item .description-item .title-card {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  font-family: var(--heading-font);
}
@media screen and (max-width: 1420px) {
  .project .bottom-section .bloc-right .list-project .team-item .description-item .title-card {
    font-size: 28px;
  }
}
.project .bottom-section .bloc-left {
  max-width: 766px;
  width: 100%;
}
.project .bottom-section .bloc-left img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .project .bottom-section .bloc-left {
    padding-bottom: 25px;
    margin: auto;
  }
}
.project .arrow-btn {
  box-shadow: none !important;
}

.compteur .container {
  background-image: url("../img/counter.png");
  background-repeat: no-repeat;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .compteur .container {
    background-size: cover;
    width: 90%;
  }
}
.compteur .container .items-infos {
  max-width: 810px;
  width: 100%;
  margin: auto;
  padding-block: 82px;
  font-family: var(--heading-font);
}
.compteur .container .items-infos .item {
  text-align: center;
}
.compteur .container .items-infos .item .nb-item {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 10px;
}
.compteur .container .items-infos .item .titele-item {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .compteur .container .items-infos {
    gap: 25px;
    padding-block: 20px;
  }
  .compteur .container .items-infos .nb-item {
    font-size: 30px;
    padding-bottom: 0px;
  }
  .compteur .container .items-infos .titele-item {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .section-title {
  max-width: 795px;
  width: 100%;
  margin: auto;
}
.services .section-title .title-bloc {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 24px;
}
@media screen and (max-width: 993px) {
  .services .section-title .title-bloc {
    padding-bottom: 10px;
  }
  .services .section-title .text-bloc {
    padding-inline: 20px;
    padding-top: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .services .container-sm,
  .services .container {
    max-width: 100% !important;
  }
}
.services .container-sm .owl-carousel.service,
.services .container .owl-carousel.service {
  max-width: 1344px;
  width: 100%;
  margin: auto;
}
.services .container-sm .owl-carousel.service .item,
.services .container .owl-carousel.service .item {
  margin: 19px 13px;
}
@media screen and (max-width: 520px) {
  .services .container-sm .owl-carousel.service .item,
  .services .container .owl-carousel.service .item {
    margin: 17px 10px;
  }
}
@media screen and (max-width: 420px) {
  .services .container-sm .owl-carousel.service .item,
  .services .container .owl-carousel.service .item {
    margin: 15px 7px;
  }
}
.services .container-sm .owl-carousel.service .item .service-item,
.services .container .owl-carousel.service .item .service-item {
  background-color: var(--contrast-color);
  padding: 58px 0 35px 0;
  transition: all ease-in-out 0.4s;
  height: 100%;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 15px;
}
.services .container-sm .owl-carousel.service .item .service-item:hover,
.services .container .owl-carousel.service .item .service-item:hover {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1) !important;
}
.services .container-sm .owl-carousel.service .item .service-item .icon,
.services .container .owl-carousel.service .item .service-item .icon {
  max-width: 90px;
  width: 100%;
  position: relative;
  z-index: 9;
}
.services .container-sm .owl-carousel.service .item .service-item .icon:before,
.services .container .owl-carousel.service .item .service-item .icon:before {
  position: absolute;
  top: -25%;
  right: -40%;
  content: "";
  background: #f6fbfa;
  width: 93%;
  height: 93%;
  border-radius: 50%;
  z-index: -1;
}
.services .container-sm .owl-carousel.service .item .service-item .icon img,
.services .container .owl-carousel.service .item .service-item .icon img {
  width: 100%;
  height: auto;
}
.services .container-sm .owl-carousel.service .item .service-item .title-card,
.services .container .owl-carousel.service .item .service-item .title-card {
  font-weight: 600;
  color: #000;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .services .container-sm .owl-carousel.service .item .service-item,
  .services .container .owl-carousel.service .item .service-item {
    padding: 30px 0 30px 0;
  }
  .services .container-sm .owl-carousel.service .item .service-item .icon,
  .services .container .owl-carousel.service .item .service-item .icon {
    max-width: 70px;
  }
  .services .container-sm .owl-carousel.service .item .service-item .icon:before,
  .services .container .owl-carousel.service .item .service-item .icon:before {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .services .container-sm .owl-carousel.service .item .service-item,
  .services .container .owl-carousel.service .item .service-item {
    padding: 20px 0 20px 0;
  }
  .services .container-sm .owl-carousel.service .item .service-item .icon,
  .services .container .owl-carousel.service .item .service-item .icon {
    max-width: 55px;
  }
  .services .container-sm .owl-carousel.service .item .service-item .title-card,
  .services .container .owl-carousel.service .item .service-item .title-card {
    font-size: 16px;
  }
}
.services .container-sm .dots-container,
.services .container .dots-container {
  text-align: center;
  margin-top: 35px;
}
.services .container-sm .owl-dot,
.services .container .owl-dot {
  display: inline-block;
  width: 35px;
  height: 10px;
  background-color: #eeeeee;
  border-radius: 14px;
  margin-right: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-color: #eeeeee;
}
.services .container-sm .owl-dot.active,
.services .container .owl-dot.active {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  width: 76px;
}
.services .link-services {
  margin: 65px 0 30px;
  text-align: center;
}
@media screen and (max-width: 993px) {
  .services {
    padding-top: 20px;
  }
  .services .link-services {
    margin: 50px 0 30px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --background-color: #000000;
  --default-color: #ffffff;
  --contrast-color: #ffffff;
  padding: 220px 0;
  position: relative;
  clip-path: inset(0);
  margin-top: 125px;
}
.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.call-to-action .container {
  position: relative;
  z-index: 3;
}
.call-to-action h2 {
  color: #fff;
  font-size: 62px;
  font-weight: 600;
}
.call-to-action .text-parallaxe {
  max-width: 669px;
  width: 100%;
  margin: auto;
  text-align: center;
}
.call-to-action .text-parallaxe p {
  color: var(--default-color);
}
.call-to-action .link-parallax {
  margin-top: 50px;
}
@media screen and (max-width: 1320px) {
  .call-to-action {
    padding: 300px 0;
  }
}
@media screen and (max-width: 1199px) {
  .call-to-action {
    padding: 250px 0;
    margin-top: 100px;
  }
  .call-to-action h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 992px) {
  .call-to-action {
    padding: 200px 0;
    margin-top: 80px;
  }
  .call-to-action h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .call-to-action {
    margin-top: 40px;
    padding: 180px 0;
  }
  .call-to-action h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 520px) {
  .call-to-action {
    padding: 140px 0;
  }
  .call-to-action h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# team Section
--------------------------------------------------------------*/
.team .section-title {
  max-width: 795px;
  width: 100%;
  margin: auto;
}
.team .section-title h2 {
  padding-bottom: 15px;
}
.team .section-title .title-bloc {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 24px;
}
@media screen and (max-width: 993px) {
  .team .section-title .title-bloc {
    padding-bottom: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .team .container-sm,
  .team .container {
    max-width: 100% !important;
  }
}
.team .container-sm .team-item,
.team .container .team-item {
  padding-top: 10px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.team .container-sm .team-item .icon,
.team .container .team-item .icon {
  max-width: 381px;
  width: 100%;
}
.team .container-sm .team-item .icon img,
.team .container .team-item .icon img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.team .container-sm .team-item .description-item .title-card,
.team .container .team-item .description-item .title-card {
  font-weight: 800;
  font-size: 24px;
  font-family: var(--heading-font);
}
.team .container-sm .team-item .description-item .poste-item,
.team .container .team-item .description-item .poste-item {
  font-size: 16px;
  font-weight: 400;
  color: #b6b8b9;
}
@media screen and (max-width: 420px) {
  .team .container-sm .team-item .description-item .poste-item,
  .team .container .team-item .description-item .poste-item {
    font-size: 14px;
  }
}
.team .container-sm .team-item:hover,
.team .container .team-item:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 520px) {
  .team .container-sm .team-item,
  .team .container .team-item {
    gap: 15px;
  }
  .team .container-sm .team-item .description-item .title-card,
  .team .container .team-item .description-item .title-card {
    font-size: 20px;
  }
}
.team .dots-container {
  text-align: center;
  margin-top: 35px;
}
.team .owl-dot {
  display: inline-block;
  width: 35px;
  height: 10px;
  background-color: #eeeeee;
  border-radius: 14px;
  margin-right: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-color: #eeeeee;
}
.team .owl-dot.active {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  width: 76px;
}

.business .container {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .business .container .section-title {
    order: 1;
  }
  .business .container .link-business {
    order: 2;
    margin-bottom: 40px;
  }
  .business .container .list-bisness {
    order: 3;
  }
}
.business .container .section-title {
  max-width: 670px;
  width: 100%;
  margin: auto;
}
.business .container .section-title h2 {
  padding-bottom: 15px;
}
.business .container .section-title .title-bloc {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 24px;
}
@media screen and (max-width: 993px) {
  .business .container .section-title .title-bloc {
    padding-bottom: 10px;
  }
}
.business .container .business .item, .business .container .business-intern .item {
  padding: 10px 0px;
  border-radius: 17px;
}
.business .container .business .item .card, .business .container .business-intern .item .card {
  min-height: 470px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 17px !important;
}
.business .container .business .item .card .card-img-top, .business .container .business-intern .item .card .card-img-top {
  border-radius: 15px;
}
.business .container .business .item .card .card-body, .business .container .business-intern .item .card .card-body {
  padding: 30px 18px;
}
@media screen and (max-width: 1319px) {
  .business .container .business .item .card .card-body, .business .container .business-intern .item .card .card-body {
    padding: 20px 10px;
  }
}
.business .container .business .item .card .card-body .card-title, .business .container .business-intern .item .card .card-body .card-title {
  min-height: 77px;
  font-weight: 700;
  font-family: var(--heading-font);
  font-size: 20px;
  padding-bottom: 15px;
}
.business .container .business .item .card .card-body .card-text, .business .container .business-intern .item .card .card-body .card-text {
  padding-block: 30px;
}
.business .container .business .item .card .card-body .link-card, .business .container .business-intern .item .card .card-body .link-card {
  text-align: center;
}
.business .container .business .item .card .card-body .link-card a.btn.defult-btn.arrow-btn, .business .container .business-intern .item .card .card-body .link-card a.btn.defult-btn.arrow-btn {
  padding: 10px 26px;
  font-size: 15px;
  box-shadow: 0 15px 35px 0 rgba(255, 116, 104, 0.36);
}
.business .container .business .item .card .card-body .link-card a.btn.defult-btn.arrow-btn svg, .business .container .business-intern .item .card .card-body .link-card a.btn.defult-btn.arrow-btn svg {
  margin-left: 14px;
  width: 17px;
  height: 17px;
}

.contact .php-email-form {
  height: 100%;
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px color-mix(in srgb, var(--default-color), transparent 90%);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}
.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}
.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}
.service-details .services-list a:hover {
  border-color: var(--accent-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}
.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}
.service-details p {
  font-size: 15px;
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
