@charset "utf-8";
/* CSS Document */

@import "fonts.css";
@import "fonts-sign.css";

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  /*ajout V1.1 */
  border: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: Avenir-Book, "sans-serif";
}

#rotate {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666666;
  opacity: 0.8;
  text-align: center;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

nav {
  /*width: 100%;
    margin: 0 auto;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  caret-color: transparent;
}

nav#page-header2 {
  flex: 1;
  caret-color: transparent;
}

nav#page-header1 {
  align-items: flex-start;
  caret-color: transparent;
}

nav#page-header3 {
  align-items: flex-end;
  caret-color: transparent;
}

header ul {
  list-style-type: none;
}

header ul li {
  /*float: right;
    width: 25%;*/
  text-align: center;
  position: relative;
}

header ul::after {
  content: "";
  display: table;
  clear: both;
}

header a {
  display: block;
  text-decoration: none;
  color: black;
  border-bottom: 2px solid transparent;
  /*padding: 10px 0px;*/
}

header a:hover {
  color: #3abff0;
  /*border-bottom: 2px solid gold;*/
}

.sous {
  box-shadow: 0px 0px 10px #000;
  background-color: #0b5087;
  position: absolute;
  left: -200%;
  /*top:115%;*/
  width: 300%;
  z-index: 999;
  border-radius: 10px;
}

#monsous {
  transform: scaleY(0);
  transform-origin: center top;
  transition: all 0.3s ease;
}

#monsous.open {
  transform: scaleY(1);
}
/*
nav > ul li:hover .sous{
    display: block;
}
*/
.sous li {
  float: none;
  width: 100%;
  text-align: left;
  font-size: 20px;
}
.sous a {
  padding: 10px;
  border-bottom: none;
  color: #fff;
}
/*
.sous a:hover{
    border-bottom: none;
    background-color: RGBa(200,200,200,0.1);
}
*/

.sous hr {
  border-top: 1px dashed #3abff0;
}

@media screen and (orientation: landscape) {
  #rotate {
    visibility: hidden;
    display: none;
  }
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #0b5086;
  -webkit-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
  z-index: 99999;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3abff0;
  -webkit-animation: spin 5s linear infinite;
  animation: spin 5s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #009ed9;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@-webkit -keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin2 {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

@-webkit-keyframes spin2 {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

@-webkit-keyframes spin3 {
  0% {
    -webkit-transform: rotate(-0deg);
    transform: rotate(-0deg);
  }
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
@keyframes spin3 {
  0% {
    -webkit-transform: rotate(-0deg);
    transform: rotate(-0deg);
  }
  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
}
.loaded #loader {
  opacity: 0;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container header,
.container footer {
  flex-grow: 1;
  flex-shrink: 7.5;
  flex-basis: 76px;
  display: flex;
  flex-direction: row;
}

.container section {
  flex-grow: 7.5;
  flex-shrink: 1;
  flex-basis: 568px;
  background-color: #fff;
  max-height: 1000px;
}

.container footer img,
.container header img {
  display: block;
  margin: auto;
  max-height: 100px;
}

.container footer nav img,
.container header nav img {
  max-height: 80px;
}

nav#page-header1,
nav#page-header3 {
  min-width: 200px;
}

#page,
#page-header,
#page-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

#page {
  background: rgb(29, 41, 63);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 9.5%,
    rgba(29, 41, 63, 1) 9.5%,
    rgba(29, 41, 63, 1) 90.5%,
    rgba(255, 255, 255, 1) 90.5%,
    rgba(255, 255, 255, 1) 100%
  );
}

#page-header,
#page-footer {
  background-color: #ffffff;
}

#app {
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#app,
#app-header,
#app-footer {
  /*width:100%;*/
  flex: 1;
  max-width: 1850px;
}

#app-header {
  display: flex;
  flex-direction: row;
}

#app-main {
  flex-grow: 9.55;
  flex-shrink: 1;
  flex-basis: 335px;
  display: flex;
  flex-direction: row;
  background-color: #f1f4ff;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

#app-bottom {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 35px;
  display: flex;
  flex-direction: row;
  background-color: #e8edf5;
  border-radius: 0 0 40px 40px;
  /*min-height:10%;*/
  overflow: hidden;
}

.app-col {
  width: 25%;
  padding: 1% 2% 1% 2%;
  text-align: center;
  font-family: Avenir-Book, "sans-serif";
}

.app-col-sign,
.app-col-diamond {
  width: 20%;
}

.app-col-diamond-modal {
  width: 50%;
}

.app-col h1 {
  font-family: Avenir-Heavy, "sans-serif";
  font-size: 22px;
  line-height: 22px;
  min-height: 66px;
  color: #333333;
  margin: 7% 0 3% 0;
}

#page-header2 h1 {
  font-family: Avenir-Heavy, "sans-serif";
  font-size: 30px;
  color: #0f5288;
}

.app-col p {
  font-family: Avenir-Roman, "sans-serif";
  font-size: 20px;
  line-height: 20px;
  padding: 5% 0 0 0;
  margin: 5% 0 0 0;
}

.app-col img,
.app-col-big-shape img,
.app-col-big-clip img,
.app-col-big-sign img,
.app-col-big-diamond img {
  max-width: 100%;
}

.app-col .logo {
  max-width: 80%;
  margin-top: 20%;
}

.app-col.fonce {
  padding: 15px 0 0 0;
}

a.link_home h1,
a.link_home p,
a.link_home {
  color: #333333;
  text-decoration: none;
}

.scroll1::-webkit-scrollbar {
  width: 5px;
}

.scroll1::-webkit-scrollbar-track {
  background: #2b2f3c;
}

.scroll1::-webkit-scrollbar-thumb {
  background: #666;
}

.scroll1 {
  scrollbar-width: thin;
  scrollbar-color: #666 #2b2f3c;
}

@media only screen and (max-height: 1100px) {
  .container footer img,
  .container header img {
    max-height: 95px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 76px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 190px;
  }
}

@media only screen and (max-height: 1025px) {
  .container footer img,
  .container header img {
    max-height: 90px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 72px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 180px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1800px;
  }
  .app-col p {
    font-size: 19px;
    line-height: 19px;
  }
  .sous li {
    font-size: 19px;
  }
}

@media only screen and (max-height: 950px) {
  .container footer img,
  .container header img {
    max-height: 85px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 68px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 170px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1700px;
  }
}

@media only screen and (max-height: 900px) {
  .container footer img,
  .container header img {
    max-height: 80px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 64px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 160px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1600px;
  }
  .app-col p {
    font-size: 18px;
    line-height: 18px;
  }
  .sous li {
    font-size: 18px;
  }
}

@media only screen and (max-height: 875px) {
  .container footer img,
  .container header img {
    max-height: 75px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 60px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 150px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1500px;
  }
  .app-col p {
    font-size: 17px;
    line-height: 17px;
  }
  .sous li {
    font-size: 17px;
  }
}

@media only screen and (max-height: 825px) {
  .container footer img,
  .container header img {
    max-height: 70px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 56px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 140px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1400px;
  }
  .app-col h1 {
    font-size: 19px;
    line-height: 19px;
    min-height: 57px;
  }
  #page-header2 h1 {
    font-size: 26px;
  }

  .app-col p {
    font-size: 16px;
    line-height: 16px;
  }
  .sous li {
    font-size: 16px;
  }
}

@media only screen and (max-height: 775px) {
  .container footer img,
  .container header img {
    max-height: 65px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 52px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 130px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1300px;
  }
  .app-col h1 {
    font-size: 18px;
    line-height: 18px;
    min-height: 54px;
  }
  #page-header2 h1 {
    font-size: 24px;
  }
  .app-col p {
    font-size: 15px;
    line-height: 15px;
  }
  .sous li {
    font-size: 15px;
  }
}

@media only screen and (max-height: 725px) {
  .container footer img,
  .container header img {
    max-height: 60px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 48px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 120px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1200px;
  }
  .app-col h1 {
    font-size: 17px;
    line-height: 17px;
    min-height: 51px;
  }
  #page-header2 h1 {
    font-size: 23px;
  }
}

@media only screen and (max-height: 650px) {
  .container footer img,
  .container header img {
    max-height: 55px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 44px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 110px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1100px;
  }
  .app-col h1 {
    font-size: 16px;
    line-height: 16px;
    min-height: 48px;
  }
  #page-header2 h1 {
    font-size: 21px;
  }
  .app-col p {
    font-size: 14px;
    line-height: 14px;
  }
  .sous li {
    font-size: 14px;
  }
}

@media only screen and (max-height: 600px) {
  .container footer img,
  .container header img {
    max-height: 50px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 40px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 100px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 1000px;
  }
  .app-col h1 {
    font-size: 15px;
    line-height: 15px;
    min-height: 45px;
  }
  #page-header2 h1 {
    font-size: 19px;
  }
  .app-col p {
    font-size: 13px;
    line-height: 13px;
  }
  .sous li {
    font-size: 13px;
  }
}

@media only screen and (max-height: 550px) {
  .container footer img,
  .container header img {
    max-height: 45px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 36px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 90px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 900px;
  }
  .app-col h1 {
    font-size: 14px;
    line-height: 14px;
    min-height: 42px;
  }
  #page-header2 h1 {
    font-size: 16px;
  }
  .app-col p {
    font-size: 12px;
    line-height: 12px;
  }
  .sous li {
    font-size: 12px;
  }
}

@media only screen and (max-height: 500px) {
  .container footer img,
  .container header img {
    max-height: 40px;
  }
  .container footer nav img,
  .container header nav img {
    max-height: 32px;
  }
  nav#page-header1,
  nav#page-header3 {
    min-width: 80px;
  }

  #app,
  #app-header,
  #app-footer {
    max-width: 800px;
  }
  .app-col h1 {
    font-size: 13px;
    line-height: 13px;
    min-height: 39px;
  }
  #page-header2 h1 {
    font-size: 15px;
  }
  .app-col p {
    font-size: 11px;
    line-height: 11px;
  }
  .sous li {
    font-size: 11px;
  }
}

/*






@media only screen and (max-height:1200px)  and (min-aspect-ratio:13/9) and (min-width:1000px) {

.app-col h1 {
	margin: 5% 0 2% 0;
}

.app-col p {
	margin:3% 0 0 0;
}


.app-col .logo {
	margin-top:15%;
}
	
}





@media only screen and (max-height:1100px)  and (min-aspect-ratio:13/9) and (min-width:1000px) {

.app-col h1 {
	margin: 2% 0 0 0;
}
.app-col p {
	margin: 0;
}

.app-col .logo {
	margin-top:10%;
}
}





@media only screen and (max-height:1050px)  and (min-aspect-ratio:13/9) and (min-width:1000px) {

.app-col h1 {
	margin: 0;
}
.app-col p {
	margin: 0;
	padding-top:2%;
}

.app-col .logo {
	margin-top:5%;
}
}


*/

@media only screen and (max-height: 1200px) and (min-aspect-ratio: 13/9) {
  .app-col h1 {
    margin: 5% 0 2% 0;
  }

  .app-col p {
    margin: 3% 0 0 0;
  }

  .app-col .logo {
    margin-top: 15%;
  }
}

@media only screen and (max-height: 1100px) and (min-aspect-ratio: 13/9) {
  .app-col h1 {
    margin: 2% 0 0 0;
  }
  .app-col p {
    margin: 0;
  }

  .app-col .logo {
    margin-top: 10%;
  }
}

@media only screen and (max-height: 1050px) and (min-aspect-ratio: 13/9) {
  .app-col h1 {
    margin: 0;
  }
  .app-col p {
    margin: 0;
    padding-top: 2%;
  }

  .app-col .logo {
    margin-top: 5%;
  }
}

@media only screen and (min-aspect-ratio: 12/9) and (max-width: 1500px) {
  .app-col h1 {
    margin: 10% 0 0 0;
  }

  .app-col .logo {
    margin-top: 10%;
  }
}

@media only screen and (min-aspect-ratio: 14/9) and (max-width: 1500px) {
  .app-col h1 {
    margin: 0;
  }

  .app-col .logo {
    margin-top: 5%;
  }
}

/*
@media only screen and (min-aspect-ratio: 13/9) and (max-width:1800px)  {


	.app-col p {
	margin: 0;
	padding-top:2%;
}

}
*/

@media only screen and (max-aspect-ratio: 13/9) and (max-width: 1800px) {
  .app-col h1 {
    margin: 8% 0 5% 0;
  }

  .app-col p {
    margin: 5% 0 0 0;
  }

  .app-col .logo {
    max-width: 80%;
    margin-top: 15%;
  }
}

@media only screen and (max-aspect-ratio: 12/9) and (max-width: 1800px) {
  .app-col h1 {
    margin: 10% 0 10% 0;
  }

  .app-col p {
    margin: 10% 0 0 0;
  }

  .app-col .logo {
    max-width: 80%;
    margin-top: 20%;
  }
}

@media only screen and (max-aspect-ratio: 11/9) and (max-width: 1800px) {
  .app-col h1 {
    margin: 12% 0 12% 0;
  }

  .app-col p {
    margin: 12% 0 0 0;
  }

  .app-col .logo {
    max-width: 80%;
    margin-top: 22%;
  }
}

@media only screen and (max-aspect-ratio: 10/9) and (max-width: 1800px) {
  .app-col h1 {
    margin: 15% 0 10% 0;
  }

  .app-col p {
    margin: 15% 0 0 0;
  }

  .app-col .logo {
    max-width: 80%;
    margin-top: 25%;
  }
}

@media only screen and (max-aspect-ratio: 9.5/9) and (max-width: 1800px) {
  .app-col h1 {
    margin: 20% 0 15% 0;
  }

  .app-col p {
    margin: 20% 0 0 0;
  }

  .app-col .logo {
    max-width: 90%;
    margin-top: 30%;
  }
}

/*-test modale vidéo---------------------------------*/

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#modal-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  /* width: 60vw;
  height: 45vh; */
  max-width: 800px;
  max-height: 500px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  padding: 0 2rem 2rem 2rem;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.modal-button {
  display: flex;
  justify-content: flex-end;
  /* margin-bottom: 1rem; */
}

.modal-button span {
  cursor: pointer;
  font-size: 18px;
  padding: 0.5rem 1rem 0.5rem 0;
  background-color: transparent;
  font-weight: bold;
  /* border: 1px solid green; */
  caret-color: transparent;
}

@media (max-width: 850px) {
  .video-container iframe {
    padding: 0 1rem 1rem 1rem;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }
  .modal-button span {
    cursor: pointer;
    font-size: 18px;
    padding: 0rem 0.5rem 0rem 0;
    background-color: transparent;
    /* border: 1px solid green; */
  }
  #modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
    height: 45vh; */
    max-width: 600px;
    max-height: 375px;
  }
}
@media (max-width: 650px) {
  #modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
    height: 45vh; */
    max-width: 500px;
    max-height: 310px;
  }
}

@media (max-height: 550px) {
  .video-container iframe {
    padding: 0 1rem 1rem 1rem;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }
  .modal-button span {
    cursor: pointer;
    font-size: 18px;
    padding: 0rem 0.5rem 0rem 0;
    background-color: transparent;
    /* border: 1px solid green; */
  }
  #modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
    height: 45vh; */
    max-width: 500px;
    max-height: 310px;
  }
}

@media (max-height: 400px) {
  #modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
    height: 45vh; */
    max-width: 500px;
    max-height: 310px;
  }
}
@media (max-height: 300px) {
  #modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
    height: 45vh; */
    max-width: 400px;
    max-height: 250px;
  }
}
@media (max-height: 300px) {
  #modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
    height: 45vh; */
    max-width: 300px;
    max-height: 200px;
  }
}

.modalpdf {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#modal-content-pdf {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  /* width: 60vw;
	height: 45vh; */
  max-width: 300px;
  height: 300px;
  font-size: 22px;
}

@media (max-width: 850px) {
  #modal-content-pdf {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
	  height: 45vh; */
    max-width: 250px;
    max-height: 250px;
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  #modal-content-pdf {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
	  height: 45vh; */
    max-width: 230px;
    max-height: 230px;
    font-size: 18px;
  }
}

@media (max-height: 550px) {
  #modal-content-pdf {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
	  height: 45vh; */
    max-width: 220px;
    max-height: 220px;
    font-size: 17px;
  }
}

@media (max-height: 400px) {
  #modal-content-pdf {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
	  height: 45vh; */
    max-width: 200px;
    max-height: 200px;
    font-size: 16px;
  }
}
@media (max-height: 300px) {
  #modal-content-pdf {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
	  height: 45vh; */
    max-width: 190px;
    max-height: 190px;
    font-size: 15px;
  }
}
@media (max-height: 300px) {
  #modal-content-pdf {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 5px;
    /* width: 60vw;
	  height: 45vh; */
    max-width: 180px;
    max-height: 180px;
    font-size: 14px;
  }
}
