/* --------------------- CLEAR --------------------- */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0px;
  font-family: "Helvetica", sans-serif;
}

:focus {
  outline: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}

/* --------------------- GLOBAL --------------------- */
.wrapper {
  background: white;
  width: 90%;
  max-width: 1080px;
  position: relative;
  margin: 0 auto;
}

.fira-regular {
  font-family: "Fira Sans Extra Condensed", sans-serif;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: "Fira Sans Extra Condensed", sans-serif;
}

p {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.3;
}

section {
  margin-bottom: 60px;
}

img {
  width: 100%;
}

header {
  position: relative;
}
header img {
  height: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background: pink;
}

.hr-yellow {
  height: 5px;
  background: #f9d000;
  border: none;
}

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

.display-none {
  display: none;
}

.logo {
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 8%;
  background: #ffffff;
  padding: 100px 15px 100px;
  box-shadow: 10px 6px 25px -7px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo.smaller {
  padding: 5px 15px 0;
}
.logo .cest {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.logo #logo {
  background: #ffffff;
  max-width: 300px;
  height: auto;
  transition: all 0.3s;
}
.logo #logo.smaller--logo {
  max-width: 150px;
  padding: 20px 10px 10px;
}
.logo .icon-expand-more {
  position: absolute;
  bottom: 10px;
  font-size: 70px;
  color: #fbd400;
}

.video {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0px;
}
.video > * {
  flex: 0 1 48%;
}
.video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

h1 {
  color: #1f5997;
  font-size: 32px;
  text-align: center;
  margin: 40px 0 50px;
}

.desc {
  position: relative;
  width: 100%;
  background: #e8c200;
  margin: 0 0 45px;
}
.desc__txt {
  padding: 25px;
  text-align: justify;
  text-align-last: center;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.arrow {
  position: absolute;
  left: calc(50% - 35px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 35px 0 35px;
  border-color: #e8c200 transparent transparent transparent;
}

.accroche {
  margin: 60px 0;
}
.accroche h2 {
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  color: #1f5997;
  margin: 30px 0;
}
.accroche hr {
  width: 150px;
}

.content {
  padding: 0 50px;
}

.action {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  padding: 0 50px;
}
.action__block {
  position: relative;
  width: 48%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.action__block img {
  max-height: 300px;
  object-fit: cover;
}
.action__block img:not(.icon) {
  border-radius: 10px 10px 0 0;
}
.action__block--cagnotte {
  background: rgb(247, 192, 185);
}
.action__block--mcc {
  background: #ffca70;
}
.action__block--mcc img {
  object-fit: contain;
  padding: 18px 0;
}
.action__block--don {
  background: #D0103A;
}
.action__block__desc {
  padding: 0 30px 40px;
  color: #3a3a3a;
}
.action__block__footer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.action__block__footer a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border: 1.5px solid #3a3a3a;
  border-radius: 10px;
  color: #3a3a3a;
  font-weight: 600;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #1f5997;
  color: #fff;
  padding: 20px 40px;
  border-radius: 20px;
  border: 1px solid #1f5997;
  font-size: 18px;
}
.button:hover {
  background: #ffffff;
  color: #1f5997;
}
.button:hover .icon {
  fill: rgb(247, 192, 185);
}

.action__btn {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}
.action__block--cagnotte .action__block__footer a:hover {
  background: #3a3a3a;
  color: rgb(247, 192, 185);
}
.action__block--cagnotte .action__block__footer a:hover .icon {
  fill: rgb(247, 192, 185);
}
.action__block--mcc .action__block__footer a:hover {
  background: #3a3a3a;
  color: #ffca70;
}
.action__block--mcc .action__block__footer a:hover .icon {
  fill: #ffca70;
}
.action__block--don .action__block__footer a:hover {
  background: #3a3a3a;
  color: #D0103A;
}
.action__block--don .action__block__footer a:hover .icon {
  fill: #D0103A;
}

h3 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 20px 0 10px;
}

.icon {
  height: 25px;
  margin: 0 0 4px 20px;
  fill: #3a3a3a;
}

.don {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #D0103A;
  border-radius: 20px;
  border: solid 5px #D0103A;
}
.don > * {
  width: 33%;
}
.don__logo {
  display: flex;
  justify-content: center;
  height: 100%;
  max-height: 170px;
  padding: 10px 20px;
}
.don__logo img {
  object-fit: contain;
}
.don__desc {
  padding: 10px 20px;
}
.don__desc h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
}
.don__desc h3 img {
  max-width: 95px;
}

.press {
  text-align: center;
  color: #1f5997;
  margin: 40px 0 60px;
}
.press hr {
  width: 10%;
  margin: auto 0;
}
.press h2 {
  padding: 0 15px;
  font-size: 30px;
}
.press__logo-container {
  flex-wrap: wrap;
}
.press__logo {
  width: 150px;
  padding: 10px 20px;
}

footer {
  background: #e8c200;
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
footer h4 {
  font-size: 20px;
}
footer .footer__nav li {
  display: inline-block;
  margin: 0 10px;
}
footer .logo-footer {
  max-width: 85px;
}
footer hr {
  width: 60%;
  border: none;
  background: #ffffff;
  height: 1px;
  margin: 20px auto;
}
/* --------------------- BTN --------------------- */
.header-menu {
  position: absolute;
  bottom: 7%;
  left: 5%;
}
.header-menu a:not(:last-child) {
  display: block;
  margin: 0 0 15px;
}
.header-menu [class^=header-menu--] {
  background-size: contain;
  width: 270px;
  transform: rotate(-10deg);
}
.header-menu [class^=header-menu--]:hover {
  background-size: contain;
  transition: all 0.3s;
}
.header-menu--cagnotte {
  background: url("../assets/img/btn/btn-cagnotte.png") no-repeat;
  height: 70px;
}
.header-menu--cagnotte:hover {
  background: url("../assets/img/btn/btn-cagnotte-hover.png") no-repeat;
}
.header-menu--offrir {
  background: url("../assets/img/btn/btn-offrir.png") no-repeat;
  height: 70px;
}
.header-menu--offrir:hover {
  background: url("../assets/img/btn/btn-offrir-hover.png") no-repeat;
}
.header-menu--don {
  background: url("../assets/img/btn/btn-unicef.png") no-repeat;
  height: 104px;
}
.header-menu--don:hover {
  background: url("../assets/img/btn/btn-unicef-hover.png") no-repeat;
}

/* --------------------- MEDIA QUERIES --------------------- */
@media only screen and (min-width: 1200px) {
  .logo {
    left: 15%;
    padding: 140px 15px 130px;
  }
}
@media only screen and (min-width: 1400px) {
  .logo {
    left: 19%;
    padding: 170px 15px 140px;
  }
}
@media only screen and (max-width: 1000px) {
  .header-menu a:not(:last-child) {
    margin: 0;
    transition: all 0.3s;
  }
  .logo {
    padding: 70px 15px 50px;
    transition: all 0.3s;
  }
  .logo #logo {
    max-width: 200px;
  }
  .logo .cest {
    max-width: 100px;
  }
  .logo .icon-expand-more {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .logo {
    padding: 20px 10px 15px;
  }
  .logo #logo {
    max-width: 150px;
  }
  .logo .cest {
    max-width: 70px;
    margin-bottom: 10px;
  }
  .video {
    flex-wrap: wrap;
    justify-content: center;
  }
  .video > * {
    flex: 1 0 100%;
  }
  .video iframe {
    max-width: 520px;
    margin: 15px 0 0;
  }
  .content {
    padding: 0;
  }
  .action {
    flex-direction: column;
    padding: 0;
  }
  .action__block {
    display: flex;
    width: 100%;
    margin: 0 0 15px;
  }
  .action__block--mcc img {
    max-height: 250px;
    padding: 15px 8px 0;
  }
  .action__block__desc {
    padding: 0 25px 25px;
  }
  .don {
    flex-direction: column;
  }
  .don > * {
    width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .show-desktop {
    display: none;
  }
  .show-mobile {
    display: block;
  }
  .header-menu {
    display: none;
  }
  h1 {
    font-size: 20px;
    transition: all 0.3s;
  }
  .video iframe {
    max-width: 100%;
  }
  .press h2 {
    font-size: 25px;
  }
  footer .footer__nav ul {
    flex-direction: column;
  }
}
@media only screen and (max-width: 450px) {
  .logo {
    padding: 10px 10px 15px;
  }
  .logo #logo {
    max-width: 130px;
  }
  .logo #logo.smaller--logo {
    max-width: 130px;
    padding: 10px 5px 10px;
  }
  .logo .cest {
    max-width: 55px;
    margin-bottom: 5px;
  }
}

/*# sourceMappingURL=index.css.map */
