.content_container {
  position: relative;
  padding: 80px 0;
  width: 100%;
  /* margin: 19vw auto 120px; */
  margin: 0px auto;
  min-height: 100vh;
  height: auto;
	justify-content: center;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 0px;
	z-index: 1;
  /*min-height: 100vh;*/
}

.quotes_container {
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 64px;
  justify-content: space-between;
}

.quote {
  width: 100%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 480px;
  padding: 24px;
  margin: -24px 0 0 -24px;
  border-radius: 16px;
  background-color: rgba(255,255,255,0.6);
  /*filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.2)) drop-shadow(6px 7px 14px rgba(0,0,0,0.1));*/
}

.quote .text {
  font-family: Lato;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  color: #21252B;
  margin-bottom: 8px;
}

.quote .text div {
  display: inline;
}

.quote .text .openquote {
  display: inline;
  font-family: Lato;
  font-weight: 900;
  font-style: italic;
  font-size: 48px;
  color: #00B7BF;
  line-height: 24px;
  margin-left: -18px;
}

.quote .source {
  text-align: right;
  font-family: Lato;
  font-weight: 900;
  font-size: 20px;
  color: #21252B;
}

.quote .source_data {
  text-align: right;
  font-family: Lato;
  font-weight: 700;
  font-size: 14px;
  color: #21252B;
}

h1 {
  font-family: Lato;
  font-weight: 900;
  font-size: 80px !important;
  color: #00B7BF;
  display: block;
  max-width: 768px;
  margin-top: 32 !important;
  margin-bottom: 64 !important;
}

h4 {
  font-family: Lato;
  font-weight: 300;
  font-size: 54px;
  line-height: auto;
  color: #21252B;
  margin: 0;
}

.background_peacock {
    position: absolute;
    width: 100%;
    height: 100%;
    height: 12vh;
    /*z-index: 1;*/
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 30%, 0% 100%);
    background: #1374CF;
}

.background_fox_top {
    position: absolute;
    width: 100%;
    height: 18vh;
    /*z-index: -1;*/
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0%, 0% 100%);
    background: #FE5E00;
}

.background_fox_bottom {
    position: absolute;
    width: 8vh;
    height: 34vh;
    margin: -34vh 0 0 0;
    /*z-index: -1;*/
    right: 0;
    clip-path: polygon(100% 100%, 100% 0%, 0% 85%);
    background: #FE5E00;
}

@media only screen and (max-width: 1720px) {
  .content_container {
    /*margin: 240px auto 120px;*/
  }

@media only screen and (max-width: 1150px) {
  .background_peacock {
    top: 57px;
  }

  .background_fox_top {    
    top: 57px;
  }
  
@media only screen and (max-width: 1088px) {
  .content_container {
    padding: 80px 32px 0 !important;
  }

  .background_fox_bottom {
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  .content_container {
    /*margin-top: calc(100px + 17.5vw);*/
  }
  /*
  .background_peacock {
    height: 205px;
  }
  
  .background_fox_top {
    height: 256px;
  }
  */
  h1 {
    font-size: 60px !important;
    margin-top: 16px !important;
    margin-bottom: 48px !important;
  }

  h4 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 400px) {
  h1 {
    font-size: 48px !important;
    margin-top: 8px !important;
    margin-bottom: 48px !important;
  }

  h4 {
    font-size: 24px;
  }
  
  .quote .text {
    font-size: 18px;
  }

  .quote .text .openquote {
    font-size: 32px;
  }

  .quote .source {
    font-size: 14px;
  }

  .quote .source_data {
    font-size: 14px;
  }
}