/***** top_page *****/
.top_page {
  padding: 20px 0 0 0;
  margin: 80px auto 0;
}
.top_page .titre_main {
  font-size: 4em;
  line-height: 60px;
  margin-bottom: 10px;
}
.top_page .chapo {
  font-size: 15px;
  color: var(--black);
}
.top_page .bloc_grid {
  align-items: flex-start;
  margin-top: 0;
}
.top_page .content .link {
  width: fit-content;
}

.top_page img {
  width: 100%;
  height: 300px;
/*   changer taille si chapo long */
  object-fit: cover;
}
@media (min-width: 700px) {
  .top_page {
    padding: 40px 0 0 0;
    margin: 80px auto 0;
  }
}
@media (min-width: 1000px) {
  .top_page {
    padding: 60px 0 0 0;
    margin: 80px auto 0;
  }
  .top_page img {
  width: 100%;
  height: 700px;
/*   changer taille si chapo long */
  object-fit: cover;
}
}
@media (min-width: 1200px) {
  .top_page .titre_main {
    font-size: 6em;
    line-height: 90px;
    margin-bottom: 40px;
  }
}

/***** breadcrumb *****/
.breadcrumb {
  line-height: 0;
  position: relative;
  padding: 0 0 80px;
}
@media (max-width:1000px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb a.active {
  color: var(--main-color);
  font-weight: 600;
}
.breadcrumb li {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  margin-right: 50px;
  position: relative;
}
.breadcrumb li:after {
  width: 1px;
  height: 9px;
  position: absolute;
  right: -26px;
  top: 10px;
  background: var(--black);
  content: "";
}
.breadcrumb li:last-child:after {
  display: none;
}
@media (min-width:1000px) {
  .breadcrumb li a.active:hover {
    color: var(--black);
  }
}
.breadcrumb li a:hover {
  color: var(--main-color);
}
/***** 
****** section-grid - border 
*****/
.section-grid .bloc_grid, .bloc_quote {
  margin: 50px 0;
}

@media (min-width: 1000px) {
  .section-grid .bloc_grid, .bloc_quote {
  margin: 200px 0;
}
}
.section-head {
  position: relative;
  text-align: right;
  color: var(--main-color);
}
.section-head:before {
content: "";
    position: relative;
    top: -20px;
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--black);
    opacity: 0.08;
}

.sections .p-large {
  font-size: 1.5rem;
  line-height: 40px;
}
.section-grid .bloc_grid .grid-img {
  justify-self: end;
  width: 100%;
  height: 500px;
}

@media (min-width: 1000px) {
  .section-grid .bloc_grid .grid-img {
  justify-self: end;
  width: 250px;
  height: 700px;
}
  
}


.section-grid .bloc_grid .grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sections .bloc_quote .p-large {
  text-align: center;
  color: var(--main-color);
}
@media (min-width: 700px) {
    .sections .p-large {
    font-size: 2rem;
    line-height: 45px;
  }
}