html, body {
  min-height: 100vh;
}

body {
  --bg-1: #FFE5D9;
  --bg-2: red;
  --bg-3: #F582AE;
  --bg-4: #F4ACB7;
  --bg-5: #9D8189;
  --bg-6: #FFCAB7;
  --text-blue: #001858;
  --text-blue-p: #172C66;
  --text-blue-d: #8BD3DD;
  --text-pink: #FEF6E4;
  font-family: 'Proxima Nova Alt Rg';
  display: flex;
  flex-direction: column;
}

.navbar {
  background-color: var(--bg-1);
}

.bg-1 {
  background-color: var(--bg-1);
}

.bg-4 {
  background-color: var(--bg-4);
}

.bg-5 {
  background-color: var(--bg-5);
}

.bg-6 {
  background-color: var(--bg-6);
}

.bg-pink {
  background-color: var(--text-pink);
}

.bg-linear-gradient {
  background-image: linear-gradient(to bottom,var(--bg-1) 10%,white);
}

.text-3 {
  color: var(--bg-3);
}

.text-blue {
  color: var(--text-blue);
}

.text-blue-p {
  color: var(--text-blue-p);
}

.text-blue-d {
  color: var(--text-blue-d);
}

.text-pink {
  color: var(--text-pink);
}

.text-3 {
  color: var(--bg-3);
}

.text-grey {
  color: grey;
}

.navbar-nav {
  flex-grow: initial;
  margin-left: auto;
  margin-right: auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-link {
  font-weight: 900;
  font-size: 18px;
  color: var(--text-blue)!important;
}

.nav-link.active, .nav-link:hover {
  position: relative;
  color: var(--bg-3)!important;
}

.nav-link.active:after {
  position: absolute;
  content: '';
  bottom: 25%;
  left: 0;
  right: 0;
  height: 1px;
  width: 90%;
  background-color: var(--bg-3);
  margin-left: auto;
  margin-right: auto;
}

.btn-search {
  padding: 15px;
  background-color: #F582AE;
  border-radius: 50%;
}




.parent-search {
  position: relative;
  margin-right: 40px;
}
.input-search {
  font-size: 14px;
  outline: none;
  border: none;
  border-radius: 100px;
  padding: 12px 18px;
  width: 40px;
  transition: width 0.3s ease;

}

.input-search::placeholder {
  color: #ccc;
}

.parent-search.active .input-search {
  width: 200px;
}
.btn-search {
  width: 48px;
  height: 48px !important;
  padding: 11px;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  background: #F582AE;
  display: inline;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}
.btn-search img {
  width: 20px !important;
  height: auto !important;
}
.parent-search.active .btn-search {
  transform: translateX(210px);
}
.fa-solid {
  color: #ffffff;
}




main {
  flex: 1;
}

.div-social-network {
  position: fixed;
  right: 0;
  top: 175px;
  display: flex;
  flex-direction: column;
}

.div-social-network > a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.a-mail {
  background-color: #383838;
}

.a-fb {
  background-color: #2176E7;
}

.a-call {
  background-color: #27B973;
}

.a-insta {
  background-image: linear-gradient(250deg,#AD01FF,#EC126A,#F3AC2A);
}

.section-intro {
  padding-top: 25px;
  padding-bottom: 100px;
}

.section-px {
  padding-left: 7.5vw;
  padding-right: 7.5vw;
}

@media (max-width: 767px) {
  .section-px {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-s1 {
  color: var(--text-blue-p);
  font-size: 22px;
  font-weight: 500;
}

.d-img-s1 {
}

.d-img-s1 > img {
  border-radius: 50px;
}

.btn-link {
  color: var(--text-blue);
  font-size: 22px;
  text-decoration: none;
  font-weight: 900;
  background-color: var(--bg-4);
  padding: 25px 35px;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .btn-link {
    font-size: 18px;
    padding: 20px;
  }
}

.btn-link:hover {
  color: var(--text-blue);
}

/* section-event */

.section-event {
  padding-top: 50px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .section-event {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .d-event {
    padding-right: 125px;
    padding-left: 125px;
  }
}

.d-event > div {
  border-radius: 25px;
  color: var(--text-pink);
}

@media (max-width: 767px) {
  .d-event h1 {
    font-size: 20px;
  }
}

.d-event .month {
  font-size: 33px;
}

@media (max-width: 767px) {
  .d-event .month {
    font-size: 25px;
  }
}

.d-event .details {
  font-size: 27px;
}

@media (max-width: 767px) {
  .d-event .details {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .d-event .details img {
    width: 10px;
  }
}

.d-event > div > :first-child {
  width: 125px;
  margin-right: 45px;
}

@media (max-width: 767px) {
  .d-event > div > :first-child {
    margin-right: 15px;
  }
}

/* section-articles */

.section-articles {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .section-articles {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.d-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

@media (max-width: 767px) {
  .d-articles {
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
  }
}

.d-articles > div {
  border-radius: 25px;
  display: flex;
  flex-direction: column;
}

.d-articles > div > :last-child {
  flex: 1;
}

.d-img-article {
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .d-img-article {
    height: 125px;
  }
}

.url-1 {
  background-image: url("../../assets/img/EmbeddedImage.jpg");
}

.url-2 {
  background-image: url("../../assets/img/image-header.png");
}

.url-3 {
  background-image: url("../../assets/img/vache-3.png");
}

.url-4 {
  background-image: url("../../assets/img/vache-1.png");
}

.url-5 {
  background: url("../../assets/img/image-1.png");
}

.url-6 {
  background: url("../../assets/img/image-2.png");
}

.url-7 {
  background: url("../../assets/img/image-3.png");
}

.d-articles a {
  color: var(--bg-3);
  text-decoration: none;
}

.d-event-comes {
  border-radius: 35px;
  box-shadow: 0px 3px 5px rgba(164,104,74,0.29);
}

.d-img-article-2 {
  min-width: 125px;
  height: 125px;
  border: solid 5px var(--text-blue);
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hr-article {
  border-top: solid 2px #F3D2C1;
}

.min-height-section {
  min-height: 400px;
}

.section-image {
  position: relative;
  min-height: 600px; 
  /* background: url("../../assets/img/vache-1.png") center / cover no-repeat; */
}

@media (max-width: 767px) {
  .section-image {
    min-height: 250px;
  }
}

.section-image > div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.titre-shadow {
  text-shadow: 0px 2px 4px rgb(27,27,27);
}

.section-contact, .section-event {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  .section-contact, .section-event {
    padding-top: 30px;
    padding-bottom: 70px;
    background-image: linear-gradient(to bottom,var(--bg-1) 10%,white);
  }
}

.section-contact img {
  width: 50px;
}

.border-box {
  border: 1px solid #b1b1b1;
  cursor: pointer;
  transition-duration: 300ms;
}

.border-box:hover {
  box-shadow: 0px 16px 14px 5px rgba(194,194,194,0.39);
}

.title-mb {
  margin-bottom: 125px;
}

@media (max-width: 767px) {
  .title-mb {
    margin-bottom: 70px;
  }
}

/* footer */

footer {
  padding-top: 25px;
  padding-bottom: 100px;
  color: var(--text-blue);
}

@media (max-width: 767px) {
  footer {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}

footer a {
  color: var(--text-blue);
  text-decoration: none;
  transition-duration: 300ms;
}

footer a:hover {
  color: var(--text-blue);
  opacity: 0.7;
}

.copyright {
  font-size: 20px;
}

@media (max-width: 767px) {
  .copyright {
    font-size: 15px;
  }
}

footer .description {
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 767px) {
  footer .description {
    font-size: 15px;
    text-align: left;
  }
}

.d-input-email {
  display: flex;
  align-items: stretch;
  width: 100%;
  --border-radius-input: 15px;
}

@media (max-width: 767px) {
  .d-input-email {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.d-input-email > input {
  flex: 1;
  border-radius: 0;
  border: none;
  border-top-left-radius: var(--border-radius-input);
  border-bottom-left-radius: var(--border-radius-input);
  padding: 15px;
}

.d-input-email > input::placeholder {
  color: #C5C5C5;
}

.d-input-email > button {
  border-radius: 0;
  border-top-right-radius: var(--border-radius-input);
  border-bottom-right-radius: var(--border-radius-input);
  background-color: var(--bg-4);
  padding-right: 30px;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .d-input-email > button {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.footer-txt {
  font-size: 19px;
}

/* Page event */

.event-detail {
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-detail i:not(.i-separator) {
  font-size: 18px;
  color: var(--bg-3);
}

.i-separator {
  font-size: 10px!important;
}

.d-img-event-2 {
  min-height: 400px;
  background: url("../../assets/img/vache-3.png") center / cover no-repeat;
}

@media (max-width: 767px) {
  .d-img-event-2 {
    min-height: 200px;
  }
}

.d-img-event {
  margin-top: 100px;
  min-height: 600px;
  background: url("../../assets/img/vache-3.png") center / cover no-repeat;
}

@media (max-width: 767px) {
  .d-img-event {
    margin-top: 50px;
    min-height: 250px;
  }
}

.d-event-container {
  margin-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .d-event-container {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
  }
}

.d-event-container p {
}

.event-mt {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .event-mt {
    margin-top: 35px;
  }
}

.d-tag {
  cursor: pointer;
  padding: 7px 35px;
  background-color: lightgrey;
  border-radius: 5px;
  background-color: var(--bg-4);
}

.row-navig a {
  color: initial;
  text-decoration: none;
}

.row-navig .d-block {
  border-radius: 5px;
}

.row-navig i {
  font-size: 16px;
}

/* Page Adulte */

.section-adulte {
  padding-bottom: 150px!important;
}

.d-nav-link, .d-nav-link a {
  color: var(--bg-3);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 22px;
}

.d-link-title {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.d-link-title i {
  font-size: 30px;
}

.d-link-title h1 {
  margin-bottom: 0;
}

.grid-adulte {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-top: 70px;
}

@media (max-width: 767px) {
  .grid-adulte {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    margin-top: 40px;
  }
}

.grid-adulte a {
  text-decoration: none;
}

.grid-adulte .d-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  font-weight: bolder;
  text-align: center;
  padding: 20px;
}

@media (max-width: 767px) {
  .grid-adulte .d-img {
    font-size: 20px;
    min-height: 200px;
    word-break: break-word;
  }
}

.grid-adulte .d-img.url-1 {
  background-image: url("../../assets/img/vache-1.png");
}

.grid-adulte .d-img.url-2 {
  background-image: url("../../assets/img/vache-1.png");
}

.grid-adulte .d-img.url-3 {
  background-image: url("../../assets/img/vache-1.png");
}

.grid-adulte .d-img.url-4 {
  background-image: url("../../assets/img/vache-1.png");
}

.grid-adulte .d-img.url-5 {
  background-image: url("../../assets/img/vache-1.png");
}

.grid-adulte .d-img.url-6 {
  background-image: url("../../assets/img/vache-1.png");
}

.d-button-page-control {
  display: flex;
  background-color: white;
  -webkit-box-shadow: 0px 3px 6px #00000029;
  -moz-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;
}
.d-button-page-control button:first-child {
  border-right: solid 1px #707070;
}
.d-button-page-control button:last-child {
  border-left: solid 1px #707070;
}
.d-button-page-control button {
  cursor: pointer;
  background-color: white;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
}
.d-articles-all a {
  color: var(--bg-3);
  text-decoration: none;
}

.btn-theme {
  background-color: #F582AE !important;
  border-color: #F582AE !important;
  color: #000;
}
.btn-theme-group {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}