.purple {
  background-color: #9F5497;
  color: white !important;
}

.purple-text {
  color: #9F5497;
}

.fb-blue-text {
  color: #3b5998;
}

.orange-text {
  color: #F89375;
}

.orange {
  background-color: #F89375;
  color: black;
}

.orange-border {
  border: solid #F89375 3px;
}

.orange-box {
  border: 2px solid #F89375;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.5);
}

.blue-text {
  color: #46C0ED;
}

.blue {
  background-color: #46C0ED;
  color: black;
}

.blue-border {
  border: solid #46C0ED 3px;
}

.blue-box {
  border: 2px solid #46C0ED;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.5);
}

.green {
  background-color: #93CB74;
  color: black;
}

.green-text {
  color: #93CB74 !important;
}

.green-border {
  border: solid #93CB74 3px;
}

.green-box {
  border: 2px solid #93CB74;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.5);
}

.red {
  background-color: #EE5C5D;
  color: white !important;
}

.red-text {
  color: #EE5C5D;
}

.red-border {
  border: solid #EE5C5D 3px;
}

.red-box {
  border: 2px solid #EE5C5D;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.5);
}

.violet {
  background-color: #9F5497;
}

body {
  font-family: 'Muli', sans-serif;
  background-image: url(../img/egg_shell.png);
  width: 100%;
  margin: 0;
  font-size: 14px;
}

.vh10 {
  height: 10vh;
}

.vh25 {
  height: 25vh;
}

.vh30 {
  height: 30vh;
}

.vh20 {
  height: 20vh;
}

.wrap960px {
  max-width: 960px;
  margin: 0 auto;
}

.wholePageContainer {
  background-image: url(../img/logoEmboss.svg);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 30%;
}

.wholePageContainer H1 {
  font-size: 3em;
}

.box {
  border: 10px solid #93CB74;
  background-color: rgba(255, 255, 255, 0.5);
}

.box h4 {
  color: black;
}

.box p {
  text-align: center;
}

nav {
  width: 100%;
  top: 0;
  max-width: 100vw;
  position: fixed;
  padding: 0 50px;
  z-index: 80;
  display: flex;
  vertical-align: middle;
  justify-content: space-between;
  height: 70px;
}

nav .logo {
  margin-top: 5px;
  height: 60px;
}

nav .logo img {
  height: 60px;
}

h1 {
  margin-top: 100px;
}

#phoneNav {
  padding: 50px 0;
  height: 0;
  width: 0;
  background: white;
  position: fixed;
  top: 0px;
  right: 30px;
  z-index: 99;
  overflow: hidden;
  border-radius: 25px;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  transition: width 1s, height 1s;
}

#phoneNav li {
  padding: 10px;
  z-index: 101;
  overflow-y: hidden;
  overflow-x: hidden;
  display: block;
}

#phoneNav li a {
  padding: 20px;
  text-decoration: none;
  overflow: hidden;
  font-size: 1.5rem;
}

#phoneNav li a:hover {
  cursor: pointer;
  color: #FFF;
  background: rgba(255, 255, 255, 0.02);
}

#phoneNav.active {
  height: 300px;
  width: 300px;
  border: 5px solid black;
}

#desktopNav {
  margin: 0;
  list-style-type: none;
  height: 70px;
  display: flex;
  vertical-align: middle;
  align-items: center;
  justify-content: space-between;
}

#desktopNav li a {
  font-size: 1em;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 5px 20px;
  border-radius: 5px;
  color: black;
}

#desktopNav li a:hover {
  border: 1px solid white;
  color: white;
}

.burger {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 20px;
  right: 0;
  z-index: 100;
  cursor: pointer;
}

.burger span {
  position: absolute;
  background-color: black;
  height: 5px;
  width: 100%;
  right: 0;
  transition: 0.5s ease-in-out;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 13px;
  transition: 1s ease-in-out;
}

.burger span:nth-child(3) {
  top: 26px;
}

.burger.active span:nth-child(1) {
  transform: rotate(135deg);
  top: 14px;
  width: 50%;
}

.burger.active span:nth-child(2) {
  top: 14px;
  transform: rotate(315deg);
  width: 50%;
}

.burger.active span:nth-child(3) {
  top: 14px;
  transform: rotate(-135deg);
  width: 50%;
}

.burgerContainer {
  display: none;
  position: relative;
  height: 70px;
}

@media screen and (max-width: 850px) {
  .burgerContainer {
    display: block;
  }
  #desktopNav {
    display: none;
  }
  #phoneNav li a:hover {
    color: #93CB74;
  }
}

.red-box {
  padding: 20px 40px;
  margin-bottom: 30px;
}

.film_embed {
  margin-top: 15px;
  overflow: hidden;
}

.film_link {
  margin-top: 40px;
}

.film_link img {
  width: 80%;
  border: 2px solid #EE5C5D;
  border-radius: 30px;
}

.film_link:hover svg {
  stroke: #EE5C5D;
}

@media screen and (max-width: 850px) {
  footer {
    font-size: 1rem;
  }
  h2 {
    margin: 0;
    font-size: 1.5rem;
  }
  .wholePageContainer H1 {
    font-size: 2.3rem;
  }
  .intro, .cat_desc {
    padding: 0 15px;
    font-size: 1rem;
  }
  .film-titre {
    font-size: 1.3rem;
  }
  .film {
    padding: 15px;
  }
  .film_link {
    margin-top: 20px;
  }
  .red-box {
    margin-bottom: 20px;
  }
}

.collapsible {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  padding: 10px 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.collapse_open, .collapsible:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.collapse_open:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #e1e1e1;
}

.content-txt {
  padding: 18px;
}

footer {
  padding: 50px;
  background-color: #93CB74;
  color: black;
}

footer table {
  height: 100%;
}

footer tr {
  margin-top: 10px;
}

footer .footerAddress {
  height: 100%;
}

footer .footerAddress H5 {
  font-size: 1.5em;
  padding: 20px;
}

footer .footerAddress p {
  margin: 0;
  padding: 0 0 0 20px;
}

footer .footerAddress tr {
  margin: 10px 0;
}

footer .footerML {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
}

footer .footerML p {
  margin-top: 60px;
  padding-left: 0;
}

footer .ML {
  transition: all .7s ease-in-out;
}

footer .ML a {
  border: 2px solid white;
  border-radius: 20px;
  text-decoration: none;
  padding: 10px;
}

footer .footerRS {
  transition: 0.5s ease-in-out;
}

footer .footerRS a {
  float: right;
}
